Execute an optimized plan with sub-agents
Executes planned features sequentially using sub-agents with verification and PR creation.
/plugin marketplace add NotMyself/planning-system/plugin install planning-system@notmyself-marketplace<plan-directory>Execute features sequentially using sub-agents with verification.
Read ${CLAUDE_PLUGIN_ROOT}/skills/planning/SKILL.md for system overview.
dev/plans/my-feature/)Create/switch to plan branch: git checkout -b plan/<plan-name> or switch if exists
State reconciliation: Run recovery script
bun run ${CLAUDE_PLUGIN_ROOT}/verification/reconcile-state.ts $ARGUMENTS
Load context files: Read manifest.jsonl, context.md, constraints.md from plan directory
Execute features sequentially:
For each pending feature:
a. Update status to in_progress in manifest and Beads
b. Spawn sub-agent with:
${CLAUDE_PLUGIN_ROOT}/skills/planning/reference/quality-gates.mdc. Wait for sub-agent completion
d. Verification sub-agent: Spawn verification agent to audit the work
e. Mechanical verification: Run verify-feature.ts script
f. If verified: Mark completed in manifest, close Beads task
g. If failed: Mark failed, report to user, ask how to proceed
h. Sync DevOps status (if configured)
Final validation: Run full test suite, sync DevOps
Create PR: Uses dual-repo support (GitHub or Azure DevOps)
bun run ${CLAUDE_PLUGIN_ROOT}/verification/create-pr.ts $ARGUMENTS plan/<plan-name>
Output current state at the end of EVERY response:
---
## 🎯 Orchestration State
| Metric | Value |
|--------|-------|
| Current Feature | <current-id> - <status> |
| Progress | <completed> / <total> |
| Branch | plan/<name> |
| Last Verification | <PASS/FAIL> |
### Pending Features
- <next-id>: <title>