원클릭으로
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