Pydantic、検証・AI・Logfireに公式スキルを追加しClaude Marketplaceへ展開
本文の状態
日本語全文を表示中
詳細モードで約3分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Pydantic Blog
Pydantic チームが Pydantic Validation、Pydantic AI、Logfire の公式スキルを構築・維持し、コミュニティ版の遅延問題を解消した。
AI深層分析を開く2026年8月4日 00:18
AI深層分析
キーポイント
公式スキルの提供開始
Pydantic チームが Pydantic Validation、Pydantic AI、Logfire の公式スキルを構築・維持し、コミュニティ版の遅延問題を解消した。
Claude プラグイン市場での利用
Pydantic AI と Logfire が Claude のプラグインマーケットプレイスに公開され、Claude Code を通じて直接インストール可能になった。
多言語・多環境対応のサポート
Logfire スキルは Python、JavaScript/TypeScript、Rust に対応し、各言語の依存関係ファイル(pyproject.toml や Cargo.toml など)を解析して適切な SDK ガイダンスを提供する。
多様なエージェントでの実装
Cursor、Codex、Gemini CLI などの任意のコーディングエージェントで agentskills.io 仕様に従い、pydantic/skills リポジトリからスキルを追加して利用可能になった。
重要な引用
A stale skill is worse than no skill: the agent confidently calls APIs that don't exist anymore.
Skills for Pydantic Validation, Pydantic AI, and Logfire already exist, thanks to the OSS community, and we're glad they do.
編集コメントを表示
編集コメント
AI エージェントがライブラリの API を誤って呼び出すという深刻な課題に対し、開発元が公式にメンテナンスするスキルの提供を開始した点は実務的な意義が大きい。Claude や Cursor など主要なツールとの連携強化により、開発フローの安定性が一段階向上すると考えられる。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
Pydantic Validation、Pydantic AI、Logfireに、Pydantic チームが構築・保守する公式スキルが追加されました。Pydantic AI と Logfire はすでに Claude のプラグインマーケットプレイスで利用可能(Pydantic AI、Logfire)です。また、agentskills.io 仕様に従うすべてのコーディングエージェントにおいて、pydantic/skills リポジトリを通じて動作します。Python プロジェクトでは、Pydantic AI と Logfire のスキルはパッケージ自体に同梱されており、library-skills.io からインストールできます。
#公式スキルの理由
Pydantic Validation、Pydantic AI、Logfire 向けのスキルはすでに OSS コミュニティによって提供されています。その存在を歓迎します。ただし、これらのライブラリは開発スピードが非常に速く、外部のリポジトリで維持されているスキルはすぐに陳腐化してしまいます。古いスキルは、ないよりも悪いです。エージェントが存在しない API を自信を持って呼び出してしまうからです。
#含まれる内容
Pydantic Validation スキルでは、Pydantic によるデータモデリングをカバーします。制約とフィールドメタデータ、バリデーター、型変換、ユニオン、前方参照アノテーション、モデル階層などです。
Pydantic AI スキルでは、エージェント構築の基礎を扱います。依存関係と出力タイプ、ツールと実行コンテキスト、構造化された出力、ストリーミング、そしてエージェントグラフのステップ処理です。
Logfire スキルでは、Python、JavaScript/TypeScript、Rust 全体でのインストゥルメンテーションをカバーします。スパンと構造化ログ、フレームワークおよびライブラリの統合、メトリクス、テレメトリーのクエリなどです。
#インストール
Claude Code では、公式マーケットプレイスからインストールできます:Pydantic AI と Logfire。
Pydantic Validation を利用するには、Pydantic マーケットプレイスを追加し、プラグインをインストールします。
claude plugin marketplace add pydantic/skills
claude plugin install pydantic@pydantic-skills
Cursor、Codex、Gemini CLI、またはその他のエージェントでは、pydantic/skills リポジトリから必要なスキルを個別にインストールできます。
npx skills add pydantic/skills --skill pydantic
npx skills add pydantic/skills --skill building-pydantic-ai-agents
npx skills add pydantic/skills --skill logfire-instrumentation
logfire-instrumentation スキルは、Python、JavaScript/TypeScript、Rust に対応しています。このスキルを使用すると、エージェントが pyproject.toml や requirements.txt、package.json、Cargo.toml を確認し、対応する SDK のガイダンスに従うようになります。
Python
Python プロジェクトの場合、library-skills.io を経由してインストール済みの依存関係から直接スキルを取得することもできます。
uvx library-skills --all
--all フラグは、Pydantic AI が必要とするようなトランジティブ依存関係もスキャンします。これは、スキルが pydantic-ai-slim パッケージに含まれているためです。Logfire のみを使用する場合は、このフラグを省略して uvx library-skills と実行すれば十分です。
library-skills を利用する方法は、Python パッケージに特化したものです。
JavaScript/TypeScript
Logfire については、上記の logfire-instrumentation スキル CLI コマンドを使用してください。
Rust
Logfire には、同じく logfire-instrumentation コマンドを使用します。このスキルには、Cargo.toml プロジェクト向けの Rust 固有のガイダンスも含まれています。
何か問題がある場合や不足している場合は、pydantic、pydantic-ai、または logfire のリポジトリでイシューを開いてください。推測するよりも、実際に使っている方からの報告を歓迎します。
原文を表示
Pydantic Validation, Pydantic AI, and Logfire now have official skills, built and maintained by the Pydantic team. Pydantic AI and Logfire are live on Claude's plugin marketplace (Pydantic AI, Logfire), and all three work across every coding agent that follows the agentskills.io spec through the pydantic/skills repository. In Python projects, the Pydantic AI and Logfire skills also ship with the packages themselves and can be installed via library-skills.io.
#Why official skills
Skills for Pydantic Validation, Pydantic AI, and Logfire already exist, thanks to the OSS community, and we're glad they do. The catch is that all three libraries move fast, and skills maintained outside the repo tend to fall behind. A stale skill is worse than no skill: the agent confidently calls APIs that don't exist anymore.
#What's in them
The Pydantic Validation skill covers data modeling with Pydantic: constraints and field metadata, validators, type coercion, unions, forward annotations, and model hierarchies.
The Pydantic AI skill covers the basics of building an agent: dependencies and output types, tools and run context, structured output, streaming, and stepping through the agent graph.
The Logfire skill covers instrumentation across Python, JavaScript/TypeScript, and Rust: spans and structured logging, framework and library integrations, metrics, and querying telemetry.
#Install
In Claude Code, install from the official marketplace: Pydantic AI and Logfire.
For Pydantic Validation, add the Pydantic marketplace and install the plugin:
claude plugin marketplace add pydantic/skills
claude plugin install pydantic@pydantic-skills
In Cursor, Codex, Gemini CLI, or any other agent, install the specific skill you need from the pydantic/skills repository:
npx skills add pydantic/skills --skill pydantic
npx skills add pydantic/skills --skill building-pydantic-ai-agents
npx skills add pydantic/skills --skill logfire-instrumentation
The logfire-instrumentation skill supports Python, JavaScript/TypeScript, and Rust. It tells the agent to inspect pyproject.toml or requirements.txt, package.json, or Cargo.toml, then follow the matching SDK guidance.
#Python
For Python projects, you can instead pull the skills straight from your installed dependencies via library-skills.io:
uvx library-skills --all
The --all flag scans transitive dependencies, which Pydantic AI needs because the skill ships in pydantic-ai-slim. For Logfire alone you can drop it (uvx library-skills).
The library-skills route here is specific to the Python packages.
#JavaScript/TypeScript
For Logfire, use the logfire-instrumentation skills CLI command above.
#Rust
For Logfire, use the same logfire-instrumentation command. The skill includes Rust-specific guidance for Cargo.toml projects.
If something's wrong or missing, open an issue on pydantic, pydantic-ai, or logfire. We'd rather hear it from you than guess.
関連記事
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み