| name | ring:running-dev-cycle |
| description | Running the backend dev cycle: implements every task in a rolling-wave plan.md (ring:writing-plans format) for a Go/TS service, driving specialist agents through Gate 0 implementation/TDD, Gate 8 parallel review, and Gate 9 validation per epic, elaborating later phases at each phase boundary. Use when starting or resuming a gated backend dev cycle with a plan.md (legacy tasks.md only for cycles already in flight; new cycles need the canonical plan format). Skip for frontend (use ring:running-dev-cycle-frontend) or docs-only work. |
Development Cycle Orchestrator
When to use
- Starting a new development cycle with a phased plan (plan.md from pre-dev or standalone ring:writing-plans)
- Resuming an interrupted development cycle
- Need structured, gate-based epic execution with quality checkpoints and phase cadence
Skip when
- No plan file exists
- Task is documentation-only or planning-only
- Frontend project (use ring:running-dev-cycle-frontend instead)
You orchestrate. Agents execute. You NEVER read, write, or edit source code directly.
How This Works
Load the phased plan (plan.md, ring:writing-plans canonical format) and execute the lean backend cycle. The plan is rolling-wave phased: a ## Phase Overview table (phases + milestone + status), phase sections containing ### Epic N.M: headings (each epic carries a **Status:** line: Pending/Doing/Done/Failed), and inline dispatch-ready #### Task N.M.T: blocks written under each epic of the currently-detailed wave. Only the active wave is task-detailed; later phases are epic-level and get elaborated at each phase boundary. Backend implementation owns local runtime and quality so the flow does not dispatch separate QA, SRE, or DevOps gates.
Vocabulary: Phase = independently verifiable checkpoint (internal rolling-wave structure). Epic (Epic N.M) = value-driven increment, the UNIT this cycle iterates. Task (Task N.M.T) = dispatch-ready unit, the Gate 0 execution unit.
Announce at start: "Using ring:running-dev-cycle lean backend flow (rolling-wave phased plan)."
Gate Map
| Gate | Skill to Load | Agent to Dispatch | Cadence | Mode |
|---|
| 0 | ring:implementing-tasks | ring:backend-go / ring:backend-ts | Per task (Task N.M.T) | Write + Run |
| 8 | ring:reviewing-code | 9 default reviewers + triggered specialists in parallel | Per epic (Epic N.M) | Run |
| 9 | ring:validating-acceptance-criteria | N/A (verification) | Per epic | Run |
| 11.5 | (orchestrator + 1 planning agent) | ring:backend-go / ring:backend-ts / ring:frontend / ring:codebase-explorer (ANALYSIS mode) | Per phase boundary | Plan only |
Gate 0 includes TDD RED/GREEN, coverage threshold enforcement, docker-compose/local runtime updates, basic health/observability verification, and delivery verification. Do not dispatch separate QA, SRE, or DevOps gates as part of this cycle. Step 11.5 (phase cadence) closes the just-finished phase and rolling-wave elaborates the next phase's epics into dispatch-ready tasks โ read gates/phase-boundary.md.
Execution Order
for each phase (current wave; starts at Phase 1, the only detailed phase at init):
for each epic in this phase (plan order):
for each task:
Gate 0
[checkpoint if manual_per_task mode]
Gate 8
Gate 9
Gate Execution Workflow
For EVERY gate, follow this exact sequence:
1. Read gate-specific instructions โ Gate 0: Read("gates/gate-0-implementation.md"); Gate 8: Read("gates/gate-8-review.md"); Gate 9: Read("gates/gate-9-validation.md"); Phase boundary (Step 11.5): Read("gates/phase-boundary.md")
2. Load sub-skill โ Skill("ring:{sub-skill-name}")
3. Follow sub-skill dispatch rules โ Sub-skill tells you HOW to dispatch
4. Dispatch agent โ Task(subagent_type="ring:{agent}", ...)
5. Validate agent output โ Per sub-skill validation rules
6. Update state โ Write to current-cycle.json
7. Next gate or checkpoint
Never dispatch an agent without loading the sub-skill first.
Never skip from standards โ agent directly. Always: standards โ sub-skill โ agent.
Standards Loading
At cycle start (Step 1.5), pre-cache Ring standards:
- WebFetch the standards index for the project language (e.g.,
golang/index.md)
- Store cached standards in
state.cached_standards
- Pass relevant modules to agents at dispatch time โ do NOT re-fetch per gate
Orchestrator Boundaries
You CAN: Read task/state files, write state files, track progress, dispatch agents, ask user questions, WebFetch standards.
You CANNOT: Read/write/edit source code (*.go, *.ts, *.tsx), run tests, analyze code directly, make architectural decisions.
If a task involves source code โ dispatch specialist agent. No exceptions regardless of file count or simplicity.
State Management
State lives in docs/ring:running-dev-cycle/current-cycle.json (or docs/ring:planning-backend-refactor/current-cycle.json).
For state schema, persistence rules, and initialization logic, read gates/state-schema.md from this skill directory.
Critical rule: Write state after EVERY gate completion. If state write fails โ STOP. Never proceed without persisted state.
PROJECT_RULES.md Check
Before starting any gate execution, verify docs/PROJECT_RULES.md exists.
For the full verification process and template creation flow, read gates/project-rules-check.md from this skill directory.
If PROJECT_RULES.md doesn't exist โ create it using the Ring template before proceeding.
Cycle Completion
When the epic loop finishes the LAST phase (last epic of the last phase passed all its gates AND that phase's boundary at Step 11.5 found no next phase to elaborate), the cycle is NOT done โ a completion phase runs once.
Read gates/cycle-completion.md from this skill directory and execute Steps 12.0โ12.1 in order:
- Step 12.0 โ Cycle Exit Verification (HARD GATE: every Gate 0 handoff has passing tests, coverage โฅ threshold, local runtime; plus multi-tenant dual-mode verified for all units)
- Step 12.0.5b โ Gate 0.5D Migration Safety (conditional: runs only when SQL migration files appear in the cycle diff vs
origin/main)
- Step 12.1 โ the one-and-only
ring:writing-dev-reports dispatch, then Final Commit (which captures the feedback it generates)
โ The cycle is incomplete until Step 12.1 finishes. Do NOT declare the cycle done from the Execution Order summary alone โ the detailed, mandatory steps live in gates/cycle-completion.md.
Execution Modes
Ask user at cycle start (independent questions, in the order given at the end of this section):
1. Execution mode (epic/task checkpoint cadence):
| Mode | Behavior |
|---|
automatic | All gates execute, pause only on failure |
manual_per_epic | Checkpoint after each epic completes all gates |
manual_per_task | Checkpoint after each task completes task-level gates |
2. Phase checkpoint (state.phase_checkpoint):
| Value | Behavior |
|---|
manual (default) | At each phase boundary (Step 11.5), AskUserQuestion: Continue / Pause / Adjust plan first |
auto | At each phase boundary, log a phase summary and continue (still elaborates the next phase) |
Mode and phase_checkpoint affect CHECKPOINTS (user approval pauses), not GATES. All listed gates execute regardless of mode. The phase boundary's elaboration step runs in BOTH phase_checkpoint values โ only the pause differs.
3. Commit timing (state.commit_timing โ {per_task, per_epic, at_end}): when commits happen during the cycle โ see ## Commit Timing for what each value commits at which gate.
Resulting cycle-init question order: execution mode โ phase checkpoint โ commit timing.
Custom Instructions
If user provides custom context at cycle start, store in state.custom_prompt and inject at the top of every agent dispatch:
**CUSTOM CONTEXT (from user):**
{state.custom_prompt}
---
**Standard Instructions:**
[... agent prompt ...]
Commit Timing
- Gate 0 (implementation): Commit after GREEN phase, coverage, docker-compose/local runtime, and delivery verification pass (
commit_timing == "per_task") via ring:committing-changes
- Gate 8 (review): Commit fixes after all reviewers pass via
ring:committing-changes
- Gate 9 (validation): No commit (verification only); epic-level commit at Step 11.1 when
commit_timing == "per_epic" via ring:committing-changes
- Phase boundary (Step 11.5): ALWAYS call
Skill("ring:committing-changes") to commit all phase work before closing the phase, regardless of commit_timing. After the commit, ask the user: "Open a PR for this phase?" โ if yes, call Skill("ring:opening-pull-requests") (optional, never automatic).
- Cycle-end: Final commit with cycle metadata via
ring:committing-changes
commit_timing โ {per_task, per_epic, at_end}. Convention: feat|fix|test|chore(scope): description โ keep commits atomic per gate.
Blocker Handling
| Blocker | Action |
|---|
| Gate failure (tests not passing, review failed) | STOP. Cannot proceed to next gate. |
| Missing PROJECT_RULES.md | STOP. Create using template. |
| Agent error | STOP. Diagnose and report. |
| Architectural decision needed | STOP. Present options to user. |
Gate Completion Rules
A gate is complete ONLY when ALL components succeed:
- Gate 0 (per task): TDD RED + GREEN + coverage โฅ 85% + all acceptance criteria tested + docker-compose/local runtime verified + delivery verification (all requirements delivered, 0 dead code)
- Gate 8 (per epic): all 9 default reviewers pass, and any triggered conditional specialist also passes.
- Gate 9 (per epic): every task's acceptance criteria aggregated and marked PASS + explicit "APPROVED" from user
- Phase boundary (Step 11.5): phase closed (Phase Overview โ Complete, deviations recorded) + next phase elaborated and validated (or no next phase) + checkpoint honored per
phase_checkpoint
Severity of Issues
- CRITICAL/HIGH/MEDIUM found in review โ Fix NOW, re-run the selected review pool
- LOW โ Keep in the review report if actionable; do not add source comments during review
- Cosmetic โ Add
FIXME(nitpick): comment
Error Recovery
| Scenario | Recovery |
|---|
| Agent returns error | Retry with clearer instructions (max 3 attempts) |
| State file corrupted | Rebuild from git log + last known state |
| Gate stuck in loop | After 3 iterations, escalate to user |
| Context limit reached | Use /ring:creating-handoffs โ resume in new session |
Input Sources
| Source | Path |
|---|
| Plan (pre-dev flow) | docs/pre-dev/{feature}/plan.md |
| Plan (standalone ring:writing-plans) | docs/plans/*.md |
| Legacy tasks (in-flight cycles ONLY) | docs/pre-dev/{feature}/tasks.md (old ## Summary table + E-/T- ids) โ accepted only when current-cycle.json already exists (init is not re-run); new cycles MUST start from the canonical plan format |
| Phase tasks | inside the plan, under each epic (#### Task N.M.T: blocks) |
| Refactor tasks | docs/ring:planning-backend-refactor/*/tasks.md |
Frontend Handoff
If frontend tasks are detected in a backend cycle โ create a handoff file listing frontend requirements, API contracts, and test expectations. Frontend uses ring:running-dev-cycle-frontend separately.