feat(ce-review): add base: and plan: arguments, extract scope detection (#405)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trevin Chow
2026-03-27 07:59:54 -07:00
committed by GitHub
parent b5dc9b04ca
commit 914f9b0d98
7 changed files with 179 additions and 94 deletions

View File

@@ -10,21 +10,21 @@ Swarm-enabled LFG. Run these steps in order, parallelizing where indicated. Do n
## Sequential Phase
1. **Optional:** If the `ralph-loop` skill is available, run `/ralph-loop:ralph-loop "finish all slash commands" --completion-promise "DONE"`. If not available or it fails, skip and continue to step 2 immediately.
2. `/ce:plan $ARGUMENTS`
2. `/ce:plan $ARGUMENTS`**Record the plan file path** from `docs/plans/` for steps 4 and 6.
3. `/ce:work`**Use swarm mode**: Make a Task list and launch an army of agent swarm subagents to build the plan
## Parallel Phase
After work completes, launch steps 4 and 5 as **parallel swarm agents** (both only need code to be written):
4. `/ce:review mode:report-only` — spawn as background Task agent
4. `/ce:review mode:report-only plan:<plan-path-from-step-2>` — spawn as background Task agent
5. `/compound-engineering:test-browser` — spawn as background Task agent
Wait for both to complete before continuing.
## Autofix Phase
6. `/ce:review mode:autofix` — run sequentially after the parallel phase so it can safely mutate the checkout, apply `safe_auto` fixes, and emit residual todos for step 7
6. `/ce:review mode:autofix plan:<plan-path-from-step-2>` — run sequentially after the parallel phase so it can safely mutate the checkout, apply `safe_auto` fixes, and emit residual todos for step 7
## Finalize Phase