一键导入
implement
Analyzes ROADMAP and implements tasks in parallel with automatic orchestration. Use when starting implementation work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyzes ROADMAP and implements tasks in parallel with automatic orchestration. Use when starting implementation work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reviews a GitHub PR by checking CI status, running tests, and posting review. Always reports findings to user. Use when reviewing PRs or when the user says "review PR".
Monitors all worker agents and automatically transitions them through the workflow. Use after spawning workers with /implement, or to check orchestration status.
Detects PRs with changes requested and spawns fixer agents. Use when addressing review feedback.
Detects all open PRs and spawns reviewer agents for each. Use when starting batch review.
Creates a new task file from template. Use when adding a new task to the project.
Merges a PR with automatic cleanup of worktree and branch. Handles all edge cases. Use when merging approved PRs.
| name | implement |
| description | Analyzes ROADMAP and implements tasks in parallel with automatic orchestration. Use when starting implementation work. |
spec/tasks/ROADMAP.md を確認し、並列実装可能なタスクを分析して実装を進めます。
メインエージェントは管理・指揮のみを行い、直接作業は一切行いません。
以下は全てサブエージェント(ワーカー)に委譲すること:
メインエージェントが行うのは:
!grep "Planned" spec/tasks/ROADMAP.md
!git worktree list
Pane limit: max 4 workers (main + 4 workers = 5 panes). Before spawning, check current pane count:
tmux list-panes | wc -l # Must be < 5
If 5+ tasks exist, spawn sequentially — wait for one to complete before spawning the next.
# Spawn worker for each task
./scripts/spawn-worker.sh <branch-name> <task-keyword>
spawn-worker.sh automatically:
search-hub--worktrees/<branch-name>After spawning all workers:
# Background orchestration (recommended)
./scripts/orchestrate.sh --background
Orchestrator automatically:
./scripts/apply-layout.sh
# Check orchestrator status
./scripts/orchestrate.sh --status
# View logs
tail -f /tmp/claude-orchestrator/orchestrator.log
# View notifications
cat /tmp/claude-orchestrator/notifications
レビュー完了の通知を受けたら:
gh api repos/<owner>/<repo>/pulls/<PR>/reviews)ユーザーの明示的な承認なしにマージしないこと。
ユーザーからマージの承認を得たら:
gh pr merge <pr-number> --squash --delete-branch
git worktree remove <path> --force
git branch -D <branch>
spec/tasks/completed/git worktree list to see all worktrees./scripts/monitor-agents.sh to see agent states