Execute bulk modifications across codebase with parallel agents and safety guarantees
Executes bulk codebase modifications using parallel agents with safety guarantees and validation.
/plugin marketplace add bengous/claude-code-plugins/plugin install claude-orchestration@bengous-plugins<task-description>package.json scripts (test, lint, typecheck, type-check)Spawn N explore agents analyzing different areas.
Spawn ALL explore agents in a SINGLE message using parallel Task tool calls:
Task 1: subagent_type="Explore", model="sonnet", prompt="Analyze [scope1] for [task]. Report: files to change, patterns to follow, risks."
Task 2: subagent_type="Explore", model="sonnet", prompt="Analyze [scope2] for [task]. Report: files to change, patterns to follow, risks."
...
Use model="haiku" for gates or external exploration (web searches, MCP tools).
Collect reports, identify what to change vs preserve, estimate impact.
git checkout -b backup/parallel-task-$(date +%s)Spawn N worker agents with strict scope isolation.
Spawn ALL worker agents in a SINGLE message using parallel Task tool calls:
Task 1: subagent_type="general-purpose", model="opus", prompt="[Detailed instructions for scope1]"
Task 2: subagent_type="general-purpose", model="opus", prompt="[Detailed instructions for scope2]"
...
Each agent prompt includes:
Wait for ALL agents to complete. If any fail, stop and report to user.
Run project's verification commands detected in Phase 0.
Also verify:
git diff --statgit hook run pre-commit or stage + unstage to triggerPresent:
git log --oneline -N, git diff HEAD~N<context_management> For long orchestrations approaching context limits:
.claude/orchestration-state.yaml)