新しいAtomic Agentsプロジェクトを最初から構築します。ディレクトリ、`pyproject.toml`、環境設定ファイル、最初のエージェント、実行可能なエントリーポイントを作成します。 **次のような場合に使用:** - ユーザーがAtomic Agentsプロジェクトを最初から始めたいと要望するとき - 「スキャフォルド(ひな形の自動生成)」「新規プロジェクト」「ゼロから開始」といった表現が使われたとき - `/atomic-agents:new-app` コマンドが実行されたとき
Scaffold a new Atomic Agents project from scratch — create the directory, `pyproject.toml`, env file, first agent, and a runnable entry point. Use when the user asks to start a new atomic-agents project from scratch, says "scaffold" / "new project" / "start from zero", or runs `/atomic-agents:new-app`.
新しい Atomic Agents プロジェクトの骨組みを自動で作成します。1つの動作するエージェント、1組のスキーマ(データ形式)、プロバイダー(LLM提供元)対応クライアント、実行可能な main.py を備えた、完全な Python パッケージが完成します。
このスキルは意見を持った設計になっており、すぐに実行できる完全でテスト済みの骨組みを作ります。
以下の質問を1度に全て尋ねます。ユーザーが既に答えている項目($ARGUMENTS での指定も含む)はスキップします。
$ARGUMENTS があればそこからデフォルト値を取得。ディレクトリはケバブケース(単語をハイフンつなぎ)、パッケージはスネークケース(単語をアンダースコアつなぎ)に正規化します。SystemPromptGenerator の内容と初期スキーマペアの形状を決めます。デフォルト: 汎用チャットエージェント。uv(デフォルト。リポジトリが uv を使用)または pip + venv。プロジェクトのディレクトリ構成、Python バージョン、依存ライブラリの詳細については聞きません。こちらで決めます。
計画を短い1ブロックで示し、ユーザーの確認を待ちます。以下を含めます:
<プロジェクト名>/<project_name>/>=3.12(Atomic Agents は PEP 695 ジェネリクスを使用)atomic-agents>=2.7、instructor[<プロバイダー拡張>]>=1.14、python-dotenv、richpytest、pytest-asyncio、ruff<エージェント種類> — カスタムスキーマが不要なら BasicChatInputSchema/BasicChatOutputSchema を使用framework/references/providers.md を参照)main.py以下の順番でファイルを作成します。各ステップを進める前に動作確認します。
<プロジェクト名>/
├── pyproject.toml
├── .env.example
├── .gitignore
├── README.md
├── AGENTS.md
├── CLAUDE.md
└── <project_name>/
├── __init__.py
└── main.py
pyproject.tomlframework/references/project-structure.md のテンプレートを使い、選択したプロバイダー拡張とプロジェクト名を置き換えます。
.env.exampleプロバイダーの API キー変数をプレースホルダー付きで含めます。実際のキーは絶対に含めません。
.gitignoreframework/references/project-structure.md のテンプレートを使用します。
<project_name>/main.py実行可能な対話型シェルを作成します。.env を読み込み、framework/references/providers.md に従ってプロバイダークライアントをインスタンス化、エージェントを構築、ChatHistory(会話履歴)をアシスタントメッセージで初期化し、console.input(...) でループします。
エージェント自体は atomic-agents:create-atomic-agent スキルのワークフローに従います — 標準的なインポート、プロバイダー別の mode 設定、同じ形の SystemPromptGenerator を使用。
カスタムエージェント種類が指定された場合、atomic-agents:create-atomic-schema スキルに従い、フィールドに description= を付けたカスタム InputSchema / OutputSchema サブクラスを作成。そうでなければ BasicChatInputSchema / BasicChatOutputSchema を使用。
常に以下の標準インポートを使用:
from atomic_agents import (
AtomicAgent, AgentConfig,
BasicChatInputSchema, BasicChatOutputSchema,
)
from atomic_agents.context import ChatHistory, SystemPromptGenerator
from instructor import Mode
プロバイダー別の AgentConfig 設定 — Instructor ファクトリーの mode を AgentConfig.mode と一致させます:
mode は省略(または Mode.TOOLS を指定)。mode=Mode.TOOLS; model_api_parameters に max_tokens を含める。mode=Mode.JSON(Instructor ファクトリーも Mode.JSON を使用)。assistant_role="model" と mode=Mode.GENAI_TOOLS(Instructor ファクトリーは Mode.GENAI_TOOLS を使用)。mode=Mode.TOOLS。README.md短く簡潔に。プロジェクト説明、インストール方法(uv sync または pip install -e .[dev])、API キーの設定方法(.env.example をコピーして編集)、実行方法(uv run python -m <project_name>.main など)を含めます。
AGENTS.md と CLAUDE.mdスキャフォルディングされたプロジェクトにはエージェント向け指示が含まれるので、どのコーディングアシスタント(Cursor、Copilot、Gemini CLI など)でも最初のコミットからフレームワークの慣例を理解できます。CLAUDE.md には正確に1行 @AGENTS.md だけを記載し、Claude Code が重複なしで同じファイルを読めるようにします。
AGENTS.md テンプレート(プロジェクト固有の内容を置き換え):
# <プロジェクト名>
<エージェント種類の回答から得た1行説明。>
[Atomic Agents](https://github.com/eigenwise/atomic-agents) で構築 — スキーマ駆動型フレームワーク
(Instructor + Pydantic ベース)。LLM 向けドキュメント:
https://eigenwise.github.io/atomic-agents/llms.txt
## フレームワーク慣例
- トップレベルパッケージからインポート: `from atomic_agents import AtomicAgent, AgentConfig, BaseIOSchema, BaseTool`; コンテキスト関連は `atomic_agents.context` から。
- エージェントは `AtomicAgent[InputSchema, OutputSchema](config=AgentConfig(...))`; 型パラメータは実行時情報を持つので、常に正確に保つ。
- LLM クライアントは Instructor でラップしてから `AgentConfig.client` に渡す。
- すべての `BaseIOSchema` サブクラスは空でないドキュメント文字列と各フィールドの `Field(..., description=...)` が必須 — 両方共 LLM プロンプトに含まれる。
- プロバイダー設定(`temperature`、`max_tokens` など)は `AgentConfig.model_api_parameters` に記述。
- プロバイダー: <選択プロバイダー>。<該当する場合、下表から対応する1行説明。>
## コマンド
- インストール: `uv sync`(スキャフォルディング時に選択した pip 相当)
- 実行: `uv run python -m <project_name>.main`
- テスト: `uv run pytest`
プロバイダー別の説明文:
model_api_parameters に max_tokens が必須; mode=Mode.TOOLS。"assistant_role='model' と mode=Mode.GENAI_TOOLS を指定。"AgentConfig 両方に mode=Mode.JSON を指定。"インストールステップを実行:
uv syncpython -m venv .venv && .venv/bin/pip install -e ".[dev]"(Windows: .venv\Scripts\pip)実際の API キーがなくてもインポートできるか確認:
uv run python -c "from <project_name>.main import agent; print('ok')"
成功すれば骨組みは問題ありません。ユーザーに .env にキーを入れて REPL を実行するよう案内します。
スキャフォルディング後、ユーザーに以下を伝えます:
cp .env.example .env)。uv run python -m <project_name>.main)。atomic-agents:create-atomic-schema スキルを使用。atomic-agents:create-atomic-agent スキルを使用。atomic-agents:create-atomic-tool スキルを使用。atomic-agents:create-atomic-context-provider スキルを使用。framework/references/orchestration.md を参照。framework(自動実行)と review(コミット前に自動実行)へのポインタ。.env をコミットしない。.env.example のみ。gpt-5-mini、Anthropic claude-haiku-4-5、Groq llama-3.3-70b-versatile、Ollama llama3.1、Gemini gemini-2.5-flash。framework/references/project-structure.md が既にテンプレート化しているものは手作りしない。Scaffold a fresh Atomic Agents project. The result is a single-package Python project with one working agent, one schema pair, a provider-wrapped client, and a runnable main.py.
This skill is opinionated. Produce a complete, tested skeleton the user can run immediately.
Ask these questions in one message, not one-at-a-time. Skip any the user already answered (including via $ARGUMENTS).
$ARGUMENTS if provided. Normalize to kebab-case for the directory and snake_case for the package.SystemPromptGenerator content and the starter schema pair. Defaults to a generic chat agent.uv (default, because the repo uses uv) or pip + venv.Do not ask about project layout, Python version, or dependency list. Pick them.
State the plan in one short block and wait for a yes. Include:
<project-name>/<project_name>/>=3.12 (Atomic Agents uses PEP 695 generics)atomic-agents>=2.7, instructor[<provider-extra>]>=1.14, python-dotenv, richpytest, pytest-asyncio, ruff<agent-type> — uses BasicChatInputSchema/BasicChatOutputSchema unless the agent type calls for custom schemasframework/references/providers.md)main.py with a REPLCreate files in this order. Verify each step before proceeding.
<project-name>/
├── pyproject.toml
├── .env.example
├── .gitignore
├── README.md
├── AGENTS.md
├── CLAUDE.md
└── <project_name>/
├── __init__.py
└── main.py
pyproject.tomlUse the template from framework/references/project-structure.md, substituting the chosen provider extra and project name.
.env.exampleInclude the provider's API-key variable with a placeholder. Never the real key.
.gitignoreUse the template from framework/references/project-structure.md.
<project_name>/main.pyProduce a runnable REPL. Load .env, instantiate the provider client per framework/references/providers.md, build an agent, wire a ChatHistory with a seed assistant message, loop on console.input(...).
For the agent itself, follow the workflow from the atomic-agents:create-atomic-agent skill — same canonical imports, same per-provider mode matrix, same SystemPromptGenerator shape.
When a custom agent type was requested, build custom InputSchema / OutputSchema subclasses with field description= populated, following the atomic-agents:create-atomic-schema skill. Otherwise use BasicChatInputSchema / BasicChatOutputSchema.
Always use the canonical imports:
from atomic_agents import (
AtomicAgent, AgentConfig,
BasicChatInputSchema, BasicChatOutputSchema,
)
from atomic_agents.context import ChatHistory, SystemPromptGenerator
from instructor import Mode
Per-provider AgentConfig knobs — match the Instructor factory mode on AgentConfig.mode:
mode (or set Mode.TOOLS).mode=Mode.TOOLS; include max_tokens in model_api_parameters.mode=Mode.JSON (Instructor factory also uses Mode.JSON).assistant_role="model" and mode=Mode.GENAI_TOOLS (Instructor factory uses Mode.GENAI_TOOLS).mode=Mode.TOOLS.README.mdShort. Include: what the project is, how to install (uv sync or pip install -e .[dev]), how to set the API key (cp .env.example .env and edit), how to run (uv run python -m <project_name>.main or equivalent).
AGENTS.md and CLAUDE.mdEvery scaffolded project ships agent instructions so any coding assistant (Cursor, Codex, Copilot, Gemini CLI, ...) knows the framework conventions from the first commit. CLAUDE.md contains exactly one line — @AGENTS.md — so Claude Code reads the same file without duplication.
AGENTS.md template (substitute project specifics):
# <Project Name>
<One-line description from the agent-type answer.>
Built with [Atomic Agents](https://github.com/eigenwise/atomic-agents) — a schema-driven
framework on Instructor + Pydantic. Docs for LLMs:
https://eigenwise.github.io/atomic-agents/llms.txt
## Framework conventions
- Import from the top-level package: `from atomic_agents import AtomicAgent, AgentConfig,
BaseIOSchema, BaseTool`; context pieces from `atomic_agents.context`.
- Agents are `AtomicAgent[InputSchema, OutputSchema](config=AgentConfig(...))` — the type
parameters carry runtime information, keep them accurate.
- The LLM client must be wrapped with Instructor before it goes into `AgentConfig.client`.
- Every `BaseIOSchema` subclass needs a non-empty docstring and `Field(..., description=...)`
on each field — both flow into the LLM prompt.
- Provider knobs (`temperature`, `max_tokens`, ...) go in `AgentConfig.model_api_parameters`.
- Provider: <chosen provider>. <Provider-specific line from the matrix below, if any.>
## Commands
- Install: `uv sync` (or the pip equivalent chosen at scaffold time)
- Run: `uv run python -m <project_name>.main`
- Test: `uv run pytest`
Provider-specific lines for the template: Anthropic → "Requires max_tokens in model_api_parameters; mode=Mode.TOOLS." Gemini → "assistant_role='model' and mode=Mode.GENAI_TOOLS." Groq/Ollama/MiniMax → "mode=Mode.JSON on both the Instructor factory and AgentConfig." OpenAI/OpenRouter → omit.
Execute the install step:
uv syncpython -m venv .venv && .venv/bin/pip install -e ".[dev]" (Windows: .venv\Scripts\pip)Verify imports without a live API key:
uv run python -c "from <project_name>.main import agent; print('ok')"
If that works, the scaffold is sound. Tell the user to drop their key into .env and run the REPL.
After scaffolding, tell the user:
cp .env.example .env).uv run python -m <project_name>.main).atomic-agents:create-atomic-schema skill.atomic-agents:create-atomic-agent skill.atomic-agents:create-atomic-tool skill.atomic-agents:create-atomic-context-provider skill.framework/references/orchestration.md.framework (auto-triggered) and review (auto-triggered before commit)..env. Only .env.example.gpt-5-mini, Anthropic claude-haiku-4-5, Groq llama-3.3-70b-versatile, Ollama llama3.1, Gemini gemini-2.5-flash.framework/references/project-structure.md already templates.原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。