Coding Orchestration
Orchestrate repo-aware coding agents from issue intake to tests and pull request drafts.
Key takeaways
- Coding orchestration turns a vague issue into scoped work, a patch, verification evidence, and a reviewable pull request draft.
- The workflow runs through intake, context, plan, implement, verify, and review stages, each with a defined output.
- Run code in an isolated Sandbox and keep each agent's write scope narrow.
- Require a final file list and command results, and never bypass human review for production changes.
- Capture recurring workflows as reusable skills or templates.
Coding orchestration should turn a vague issue into scoped work, a patch, verification evidence, and a reviewable pull request draft.
Workflow
| Stage | Output |
|---|---|
| Intake | Issue, acceptance criteria, affected area |
| Context | Repo map, commands, ownership, constraints |
| Plan | Files to inspect or change |
| Implement | Scoped patch |
| Verify | Tests, build, lint, manual checks |
| Review | Diff summary, risks, PR body |
Runtime Rules
- Use Sandbox for isolated code execution.
- Keep write scope narrow for each agent.
- Require final file list and command results.
- Never bypass human review for production changes.
- Feed recurring workflows into skills or templates.