Atomic Agents エージェントまたはツール用の `BaseIOSchema`(入出力スキーマ)を設計・作成します。ドキュメント文字列、フィールド説明、バリデーター(入力値の妥当性確認)、エラーパターンを含みます。 次のような場合に使用: - ユーザーが「スキーマを作成する」「入出力スキーマを設計する」「IOSchema を定義する」「BaseIOSchema を書く」「エージェントの出力をモデル化する」と依頼した場合 - `/atomic-agents:create-atomic-schema` コマンドが実行された場合
Design and write a `BaseIOSchema` input/output pair for an Atomic Agents agent or tool — docstrings, field descriptions, validators, error variants. Use when the user asks to "create a schema", "design the input/output schema", "define an `IOSchema`", "write a `BaseIOSchema`", "model the agent's output", or runs `/atomic-agents:create-atomic-schema`.
BaseIOSchema のペア(入力および/または出力)を作成し、agent またはツールと、それを呼び出す側との間のコントラクト(契約)を定義します。フレームワークはすべてのサブクラスに対してdocstringを強制し、Instructor はフィールドの説明を LLM プロンプトに流し込みます。つまり、スキーマはプロンプトの 一部 であり、単なる型定義ではありません。
バリデータ、識別共用体(discriminated unions)、エラーエンベロープなどの詳細については、../framework/references/schemas.md を参照してください。このスキルは実践的なアプローチを提供します: 明確化 → 記述 → 検証。
framework スキルの使い分けWeatherInput にフィールドを追加したい」、「結果を成功バリアントと失敗バリアントに分割したい」framework スキル: Atomic Agents 全般について質問する場合、またはスキーマの作成以外の作業を行う場合コンテキストから明らかでない点のみを確認します。質問は一度にまとめて行い、一問一答形式にはしないでください。
AtomicAgent 用か、BaseTool 用か、両方(ツール入力スキーマを出力する agent)か、それともネストされたサブスキーマか?../framework/references/schemas.md の「Error-schema パターン」を参照。既存スキーマについての会話が続いている場合は、コンテキストで回答済みの質問はスキップしてください。
スキーマは、インポート元となる適切な場所に配置します。慣例的な配置場所:
<project>/agents/<agent_name>/schemas.py — agent 固有のスキーマ<project>/tools/<tool_name>_tool.py — ツールの I/O はツール本体と同じファイルに配置<project>/schemas/<topic>.py — 複数のコンポーネントで共有するスキーマBaseModel ではなく BaseIOSchema をサブクラス化する。description として使用するため、LLM に向けて書いてください。Field(...) に description= を付与し、LLM に向けた説明を書く。Enum よりも先に Literal[...] を使用する — JSON Schema がフラットになり、Instructor にとって扱いやすくなります。from typing import Optional, Literal
from pydantic import Field
from atomic_agents import BaseIOSchema
class WeatherInput(BaseIOSchema):
"""現在の天気情報のリクエスト。"""
city: str = Field(..., description="都市名。例: 'Brussels' または 'New York'。")
units: Literal["metric", "imperial"] = Field(
default="metric",
description="気温の単位系。",
)
class WeatherOutput(BaseIOSchema):
"""都市の現在の天気情報。"""
status: Literal["ok", "error"] = Field(..., description="処理結果コード。")
temperature_c: Optional[float] = Field(
default=None, description="status='ok' のときの気温(摂氏)。"
)
summary: Optional[str] = Field(
default=None, description="status='ok' のときの人間が読みやすい概要。"
)
error: Optional[str] = Field(
default=None, description="status='error' のときの失敗メッセージ。"
)
@model_validator(mode="after")): フィールド間のルール(start ≤ end、相互排他フラグなど)バリデーションエラーは Instructor のリトライを引き起こし、parse:error フックを発火させます — これはバグではなく、意図された機能です。エラーを握り潰してはいけません。
呼び出し元が複数の結果の形状をもれなく処理しなければならない場合は、膨らんだ単一スキーマよりも共用体を優先してください:
class SearchSuccess(BaseIOSchema):
"""検索の成功結果。"""
kind: Literal["ok"] = "ok"
results: list[str] = Field(..., description="一致したアイテム。")
class SearchFailure(BaseIOSchema):
"""検索が完了できなかった場合。"""
kind: Literal["error"] = "error"
code: Literal["rate_limited", "no_results", "upstream_error"] = Field(
..., description="機械が読み取り可能な失敗コード。"
)
message: str = Field(..., description="人間が読みやすい失敗理由。")
class SearchOutput(BaseIOSchema):
"""検索結果 — 成功または型付き失敗。"""
result: SearchSuccess | SearchFailure = Field(..., description="処理結果。")
各バリアントの kind ディスクリミネータにより、Pydantic は曖昧さなく共用体を解決できます。
スキーマのインポートと model_json_schema() によるラウンドトリップを簡易チェックします:
uv run python -c "from <project>.<module> import WeatherInput, WeatherOutput; print(WeatherInput.model_json_schema()['title'])"
インポート時に ValueError("… must have a non-empty docstring …") が発生した場合は、docstring を追加してください。フィールドの JSON Schema に description が含まれていない場合は、該当する Field(...) に description= を追加してください。
以下をユーザーに伝えてください:
create-atomic-agent スキルcreate-atomic-tool スキルcreate-atomic-context-provider スキルBaseIOSchema の代わりに素の BaseModel を使用する — docstring の強制チェックと、Instructor が依存する JSON Schema オーバーライドが失われます。description= のない Field(...) — Instructor がそのフィールドについて LLM に何も伝えられません。Optional[str] — 必須かつnullable という設定は、ほとんどの場合意図した動作ではありません。dict、Any、または object を使用する — LLM が何でも生成でき、Pydantic が検証できません。ValidationError をキャッチする — そうするのではなく、フィールドの制約や説明を修正してください。より詳細な内容 — スキーマの合成、ネストされたスキーマ、本番環境での識別共用体、バリデータの注意点 — については、../framework/references/schemas.md を参照してください。
Author a BaseIOSchema pair (input and/or output) that becomes the contract between an agent or tool and its caller. The framework enforces docstrings on every subclass, and Instructor flows field descriptions into the LLM prompt — so the schema is part of the prompt, not just typing.
For deep material (validators, discriminated unions, error envelopes), the authority is ../framework/references/schemas.md. This skill is the action-oriented path: clarify → write → validate.
framework skillWeatherInput", "split the result into success and failure variants".framework skill: the user is asking about Atomic Agents in general or doing something other than authoring schemas.Ask only what is not already obvious from context. Bundle into one message; do not interrogate one-at-a-time.
AtomicAgent, a BaseTool, both (an agent that emits a tool-input schema), or a nested sub-schema?../framework/references/schemas.md → "Error-schema pattern".If the user is mid-conversation about an existing schema, skip questions answered in context.
Place schema(s) where they will be imported from. Conventional locations:
<project>/agents/<agent_name>/schemas.py — agent-owned schemas<project>/tools/<tool_name>_tool.py — tool I/O lives next to the tool<project>/schemas/<topic>.py — schemas shared across multiple componentsBaseIOSchema (not BaseModel).description.Field(...) carries a description= written for the LLM.Literal[...] for closed sets before reaching for Enum — flatter JSON Schema, easier for Instructor.from typing import Optional, Literal
from pydantic import Field
from atomic_agents import BaseIOSchema
class WeatherInput(BaseIOSchema):
"""A request for current weather conditions."""
city: str = Field(..., description="City name, e.g. 'Brussels' or 'New York'.")
units: Literal["metric", "imperial"] = Field(
default="metric",
description="Unit system for the temperature.",
)
class WeatherOutput(BaseIOSchema):
"""Current weather conditions for a city."""
status: Literal["ok", "error"] = Field(..., description="Outcome code.")
temperature_c: Optional[float] = Field(
default=None, description="Temperature in Celsius when status='ok'."
)
summary: Optional[str] = Field(
default=None, description="Human-readable summary when status='ok'."
)
error: Optional[str] = Field(
default=None, description="Failure message when status='error'."
)
@model_validator(mode="after")) for cross-field rules (start ≤ end, mutually exclusive flags).Validation errors trigger Instructor retries and fire the parse:error hook — they're a feature, not a failure path. Do not swallow them.
If the caller must exhaustively handle multiple result shapes, prefer a union over an inflated single schema:
class SearchSuccess(BaseIOSchema):
"""Successful search result."""
kind: Literal["ok"] = "ok"
results: list[str] = Field(..., description="Matching items.")
class SearchFailure(BaseIOSchema):
"""Search could not complete."""
kind: Literal["error"] = "error"
code: Literal["rate_limited", "no_results", "upstream_error"] = Field(
..., description="Machine-readable failure code."
)
message: str = Field(..., description="Human-readable failure reason.")
class SearchOutput(BaseIOSchema):
"""Search outcome — success or typed failure."""
result: SearchSuccess | SearchFailure = Field(..., description="Outcome.")
The kind discriminator on each variant lets Pydantic resolve the union without ambiguity.
Smoke-check the schema imports cleanly and round-trips through model_json_schema():
uv run python -c "from <project>.<module> import WeatherInput, WeatherOutput; print(WeatherInput.model_json_schema()['title'])"
If the import raises ValueError("… must have a non-empty docstring …"), add the docstring. If a field's JSON schema is missing a description, add description= to its Field(...).
Tell the user:
create-atomic-agent skill.create-atomic-tool skill.create-atomic-context-provider skill.BaseModel instead of BaseIOSchema — loses docstring enforcement and the JSON-schema overrides Instructor depends on.Field(...) without description= — Instructor has nothing to tell the model about the field.Optional[str] with no default — required-but-nullable, which is rarely the intent.dict, Any, or object as a field type — the LLM produces anything and Pydantic cannot validate.ValidationError to "make the agent more robust" — fix the field constraints or descriptions instead.For deeper material — composition, nested schemas, discriminated unions in production, validator gotchas — load ../framework/references/schemas.md.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。