--- description: Universal entry point - delegates to…
Community ralph loop for planning, sourced from github. Verified exit condition, evaluator-gated.
--- description: Universal entry point - delegates to appropriate workflow argument-hint: <requirement> allowed-tools: Read, Glob, Grep, Task, AskUserQuestion --- # /do - Universal Workflow Entry Point Single command interface for all workflows. Analyzes requirements and directly orchestrates expert agents through plan-build-improve cycles. ## CRITICAL: Orchestration-First Approach ### ABSOLUTE RULE: DELEGATE EVERYTHING IMPORTANT: First and foremost, remember that you should delegate as much as possible to subagents. Even reading and writing single files MUST be delegated to subagents. This command exists to orchestrate workflows—NOT to do work directly. You are a dispatcher, not a worker. Your ONLY responsibilities: 1. Parse and classify requirements 2. Select the appropriate pattern (A, B, or C) 3. Spawn expert agents via Task tool 4. Wait for results 5. Synthesize and report outcomes You MUST NOT: - Read files directly (delegate to agents) - Write files directly (delegate to agents) - Make code changes (delegate to agents) - Make implementation decisions (delegate to plan-agent) - Answer domain questions directly (delegate to question-agent) Why This Mat
claude-code
More planning loops
Execute roadmap phases to completion
Work through each phase in your roadmap, verify each one, run the final audit, and stop when all phases pass.
/goal "Execute all phases of <run-root /ROADMAP.md sequentially. Read <run-root /phases/phase-N.md for each phase; do the work; run mandatory commands; print SUPERGOAL PHASE VERIFY then SUPERGOAL PHASE DONE for each phase; follow the failure-recovery protocol in <run-root /PROTOCOL.md if any criterion fails. After the last phase, run the FINAL AUDIT in <run-root /PROTOCOL.md (re-verify against <run-root /ROADMAP.md; re-run aggregated mandatory commands; spot-check criteria; on gaps, write <run-root /phases/audit-fix-<round .md and execute inline). Only after AUDIT COMPLETE, print SUPERGOAL RUN COMPLETE. Done when SUPERGOAL RUN COMPLETE appears in the transcript with one SUPERGOAL PHASE DONE per phase, AUDIT COMPLETE printed before SUPERGOAL RUN COMPLETE, and no FAILURE HANDOFF or AUDIT HANDOFF this run
planninghigh risk
Draft a sprint plan from the backlog
Turn the open issue backlog into a proposed two-week sprint plan with estimates, a dependency ordering, and an explicit cut line, written as a document for the team to edit.
/goal SPRINT-PLAN.md contains a proposed 2-week plan — read all open issues labeled `ready`, estimate each as S/M/L based on the code it touches, order them by dependency and value, draw a cut line at a realistic capacity, and list what falls below it with reasons; make no changes to the issues themselves; stop after 6 turns
planninglow risk
⧉ 1
Run flow until gate or timeout
Execute a flow step repeatedly until it signals DONE or GATE, or halt after 40 turns to proceed.
/goal FLOW says DONE or GATE, or stop after 40 turns then /flow-next
planninglow risk