Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ make deploy
- `codex/skills/internal/<name>/agents/openai.yaml` がある場合は、UI 表示用メタデータも内容に合わせます。
- skill の設計・命名時は [`docs/design-skill.md`](docs/design-skill.md) の方針も確認します。
- skill の追加・更新時は [`docs/skill-library.md`](docs/skill-library.md) の一覧も更新します。
- `codex/agents/*.toml` の `nickname_candidates` は覚えやすい英語の人名を 3 件ずつ設定します。
- `codex/config.toml` の `[agents.<role>]` にある `nickname_candidates` は、覚えやすい英語の人名を 3 件ずつ設定します。
- `deploy.json` は内部ファイルの配布先、`external-skills.json` は外部 skill の取得先を管理します。
- `claude/agents/implemnter.md` と `codex/agents/scount.toml` は現状のファイル名です。リネームする場合は配布設定や参照も合わせて確認します。
- `claude/agents/implemnter.md` は現状のファイル名です。リネームする場合は配布設定や参照も合わせて確認します。

## テスト実行時の補足

Expand Down
2 changes: 1 addition & 1 deletion codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ agents
├── implementer.toml 実装を担当するエージェント
├── planner.toml 計画・設計を担当するエージェント
├── reviewer.toml レビューを担当するエージェント
└── scount.toml 調査を担当するエージェント
└── scouter.toml 調査を担当するエージェント
```

### commands
Expand Down
1 change: 0 additions & 1 deletion codex/agents/advisor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-sol"
developer_instructions = """
`role-advisor-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["James", "Henry", "Arthur"]
1 change: 0 additions & 1 deletion codex/agents/documenter.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-terra"
developer_instructions = """
`role-doc` skill を利用してください。
"""
nickname_candidates = ["Emma", "Olivia", "Grace"]
1 change: 0 additions & 1 deletion codex/agents/gardener.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-luna"
developer_instructions = """
`role-gardener-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Ivy", "Rowan", "Hazel"]
1 change: 0 additions & 1 deletion codex/agents/implementer.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-terra"
developer_instructions = """
`role-implementer-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Jack", "Oliver", "Lucas"]
1 change: 0 additions & 1 deletion codex/agents/planner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-sol"
developer_instructions = """
`role-planner-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Amelia", "Mia", "Harper"]
1 change: 0 additions & 1 deletion codex/agents/refactor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-sol"
developer_instructions = """
`role-refactor-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Leo", "Miles", "Owen"]
1 change: 0 additions & 1 deletion codex/agents/reviewer.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-sol"
developer_instructions = """
`role-reviewer-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Charlotte", "Sophia", "Evelyn"]
1 change: 0 additions & 1 deletion codex/agents/scount.toml → codex/agents/scouter.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-sol"
developer_instructions = """
`role-scouter-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Liam", "Noah", "Ethan"]
1 change: 0 additions & 1 deletion codex/agents/worker.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ model = "gpt-5.6-terra"
developer_instructions = """
`role-worker-playbook` をもとに作業を進めてください。
"""
nickname_candidates = ["Alex", "Sam", "Ryan"]
46 changes: 45 additions & 1 deletion codex/config.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,53 @@
model = "gpt-5.6-sol"
personality = "pragmatic"
web_search = "live"

default_permissions = "project-edit"

[agents.advisor]
description = "技術的な助言を担当するエージェントです。"
config_file = "./agents/advisor.toml"
nickname_candidates = ["James", "Henry", "Arthur"]

[agents.documenter]
description = "設計・構成・仕様・進捗に関する情報を整理し、読者に応じてわかりやすく伝えるドキュメント作成担当エージェントです。"
config_file = "./agents/documenter.toml"
nickname_candidates = ["Emma", "Olivia", "Grace"]

[agents.gardener]
description = "Git と GitHub の操作を専門に担当するエージェントです。"
config_file = "./agents/gardener.toml"
nickname_candidates = ["Ivy", "Rowan", "Hazel"]

[agents.implementer]
description = "計画に沿ったコード実装を担当するエージェントです。"
config_file = "./agents/implementer.toml"
nickname_candidates = ["Jack", "Oliver", "Lucas"]

[agents.planner]
description = "実装前の計画作成を担当するエージェントです。"
config_file = "./agents/planner.toml"
nickname_candidates = ["Amelia", "Mia", "Harper"]

[agents.refactor]
description = "挙動を維持したコードのリファクタリングを担当するエージェントです。"
config_file = "./agents/refactor.toml"
nickname_candidates = ["Leo", "Miles", "Owen"]

[agents.reviewer]
description = "実装済み変更のレビューを担当するエージェントです。"
config_file = "./agents/reviewer.toml"
nickname_candidates = ["Charlotte", "Sophia", "Evelyn"]

[agents.scouter]
description = "コード、設定、ドキュメントの調査を担当するエージェントです。"
config_file = "./agents/scouter.toml"
nickname_candidates = ["Liam", "Noah", "Ethan"]

[agents.worker]
description = "機械的なコマンド作業を担当するエージェントです。"
config_file = "./agents/worker.toml"
nickname_candidates = ["Alex", "Sam", "Ryan"]

[permissions.project-edit]
extends = ":workspace"

Expand Down
Loading