Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
開発ワークフロー向けのマルチエージェント構成(役割定義と導線)を追加し、調査・計画・実装・レビュー・検証・ロードマップ管理の分担ルールを明文化するPR
Changes:
.agent/agents/に orchestrator / explorer / planner / worker / reviewer / tester / roadmap-curator のエージェント定義を追加.codex/skills/agent-orchestratorを追加し、エージェント選定・書き込み範囲分離・進行宣言の手順を定義.codex/skills/review-agentを追加し、差分レビュー手順と出力フォーマットを定義
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .codex/skills/agent-orchestrator/SKILL.md | オーケストレーション手順・開始宣言・コマンドを定義 |
| .codex/skills/agent-orchestrator/agents/openai.yaml | agent-orchestrator のインターフェース定義と default_prompt を追加 |
| .codex/skills/review-agent/SKILL.md | reviewer 方針に沿ったレビュー手順・出力形式を定義 |
| .codex/skills/review-agent/agents/openai.yaml | review-agent のインターフェース定義と default_prompt を追加 |
| .agent/agents/README.md | エージェント定義ディレクトリの運用方針と呼び出し方を追加 |
| .agent/agents/orchestrator.md | タスク分解・担当割り当て・統合の責務を定義 |
| .agent/agents/explorer.md | 調査専任の責務・入力・禁止事項を定義 |
| .agent/agents/planner.md | ExecPlan 作成・更新の責務とルールを定義 |
| .agent/agents/worker.md | 実装担当の規約(SSOT/DB/キャッシュ等)を定義 |
| .agent/agents/reviewer.md | レビュー観点・成果物・禁止事項を定義 |
| .agent/agents/tester.md | 検証・再現・テスト失敗切り分けの責務を定義 |
| .agent/agents/roadmap-curator.md | ロードマップと ExecPlan 整合性管理の責務を定義 |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a comprehensive multi-agent architecture for development workflows, defining clear roles, responsibilities, and processes for each agent involved in tasks such as investigation, planning, implementation, review, testing, and roadmap management. It also adds corresponding skills and interface definitions to support these agents, ensuring structured collaboration and robust quality control.
Agent Definitions and Processes
.agent/agents/*.md. This establishes a clear separation of concerns and standardized procedures for multi-agent collaboration. [1] [2] [3] [4] [5] [6] [7] [8]Skill and Interface Definitions
agent-orchestratorskill, providing a structured approach to task orchestration, agent selection, and workflow management, including command definitions and execution rules in.codex/skills/agent-orchestrator/SKILL.mdand its interface in.codex/skills/agent-orchestrator/agents/openai.yaml. [1] [2]review-agentskill, focusing on Japanese-language code review with severity ordering, file/line references, and clear output formats, supported by its interface in.codex/skills/review-agent/SKILL.mdand.codex/skills/review-agent/agents/openai.yaml. [1] [2]Workflow and Collaboration Policies
Quality and Safety Guidelines
Documentation and Traceability
These changes lay the foundation for a scalable, auditable, and high-quality multi-agent development process.