/managing-dev-cycle
Managing an in-progress development cycle without driving it: status reports phase, epic/gate progress, assertiveness, and elapsed time from current-cycle.json; cancel confirms, marks the cycle cancelled, and writes a partial feedback report. Use when checking the status of, or
$ npx -y skills add LerianStudio/ring --skill managing-dev-cycle --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/managing-dev-cycle
Context preview
The summary Claude sees to decide when to auto-load this skill.
Managing an in-progress development cycle without driving it: status reports phase, epic/gate progress, assertiveness, and elapsed time from current-cycle.json; cancel confirms, marks the cycle cancelled, and writes a partial feedback report. Use when checking the status of, or
SKILL.md
managing-dev-cycle.SKILL.mdname: ring:managing-dev-cycle
description: "Managing an in-progress development cycle without driving it: status reports phase, epic/gate progress, assertiveness, and elapsed time from current-cycle.json; cancel confirms, marks the cycle cancelled, and writes a partial feedback report. Use when checking the status of, or cancelling, a running dev cycle. Skip when no cycle is active or the question is general project status, not cycle-specific."
Cycle Management
When to use
- User wants to check the status of a running development cycle
- User wants to cancel an active development cycle
- Invoked with mode=status or mode=cancel
Skip when
- No development cycle is active or was recently started
- User is asking about general project status (not cycle-specific)
Unified skill for managing development cycle state. Provides two modes: **status** (read-only inspection) and **cancel** (state mutation with confirmation).
Mode Selection
This skill provides two modes selected by the `mode` parameter:
| Mode | Purpose | |------|---------| | `status` | Read-only — display cycle metrics | | `cancel` | Mutating — cancel the active cycle |
If no mode is provided, default to `status`.
---
Shared: State File Discovery
Both modes read from the same state files. Check for an active cycle in this order:
1. `docs/ring:running-dev-cycle/current-cycle.json` 2. `docs/ring:planning-backend-refactor/current-cycle.json`
If neither file exists or both contain a terminal status (`completed`, `cancelled`), report that no cycle is active and exit with the appropriate "no cycle" message for the current mode.
---
Mode: Status
Display the current development cycle status.
Output
Displays:
- Current cycle ID and start time
- Current phase (if `phases[]` is present in state)
- Epics: total, completed, in progress, pending
- Current epic and gate being executed
- Assertiveness score (if epics completed)
- Elapsed time
Example Output
Development Cycle Status
Cycle ID: 2024-01-15-143000
Started: 2024-01-15 14:30:00
Status: in_progress
Phase: Phase 2 - Core flows
Epics:
Completed: 2/5
In Progress: 1/5 (Epic 2.3)
Pending: 2/5
Current:
Epic: Epic 2.3 - Implementar refresh token
Gate 0→8→9 lean flow (ring:implementing-tasks)
Iterations: 1
Metrics (completed epics):
Average Assertiveness: 89%
Total Duration: 1h 45m
State file: docs/ring:running-dev-cycle/current-cycle.json (or docs/ring:planning-backend-refactor/current-cycle.json)
When No Cycle is Running (Status Mode)
No development cycle in progress.
Start a new cycle with:
/ring:running-dev-cycle docs/pre-dev/{feature}/plan.md
Or resume an interrupted cycle:
/ring:running-dev-cycle --resumeExecution Steps (Status)
1. **Discover state file** — check both paths per "Shared: State File Discovery" above 2. **Read JSON** — parse `current-cycle.json` 3. **Extract fields** — cycle ID, start time, status (incl. `paused_for_epic_approval`, `paused_for_phase_review`), `current_phase` and `phases[]` (if present), `epics[]` list, `current_epic_index`/gate, iterations 4. **Compute metrics** — count completed/in-progress/pending epics from `epics[]`, calculate elapsed time, average assertiveness score across completed epics 5. **Display** — format and present the output as shown above
---
Mode: Cancel
Cancel the current development cycle with state preservation.
Options
| Option | Description | |--------|-------------| | `--force` | Cancel without confirmation |
Behavior
1. **Confirmation**: Asks for confirmation before canceling (unless `--force`) 2. **State preservation**: Saves current state for potential resume 3. **Cleanup**: Marks cycle as `cancelled` in state file 4. **Report**: Generates partial feedback report with completed tasks
Confirmation Prompt
Unless `--force` is specified, display:
Cancel Development Cycle?
Cycle ID: 2024-01-15-143000
Progress: 3/5 epics completed
This will:
- Stop the current cycle
- Save state for potential resume
- Generate partial feedback report
[Confirm Cancel] [Keep Running]
After Confirmation (or --force)
Cycle Cancelled
Cycle ID: 2024-01-15-143000
Status: cancelled
Completed: 3/5 epics
State saved to: docs/ring:running-dev-cycle/current-cycle.json (or docs/ring:planning-backend-refactor/current-cycle.json)
Partial report: docs/dev-team/feedback/cycle-2024-01-15-partial.md
To resume later:
/ring:running-dev-cycle --resume
When No Cycle is Running (Cancel Mode)
No development cycle to cancel.
Check status with:
ring:managing-dev-cycle (mode=status)
Execution Steps (Cancel)
1. **Discover state file** — check both paths per "Shared: State File Discovery" above 2. **Read JSON** — parse `current-cycle.json` 3. **Validate** — confirm the cycle is in a non-terminal status (`in_progress`, `paused_for_epic_approval`, `paused_for_phase_review`, or similar) 4. **Confirm** — unless `--force`, use AskUserQuestion to get explicit user confirmation; if declined, abort 5. **Preserve state** — the existing JSON already contains the full state for potential resume 6. **Mark cancelled** — update the `status` field in `current-cycle.json` to `cancelled` and write back 7. **Generate partial report** — create a feedback file at `docs/dev-team/feedback/cycle-{id}-partial.md` summarizing completed epics, current progress, and reason (user-cancelled) 8. **Display** — format and present the cancellation confirmation as shown above
---
Related Skills
| Skill | Description | |-------|-------------| | `ring:running-dev-cycle` | Start or resume cycle | | `ring:managing-dev-cycle` (mode=cancel) | Cancel running cycle | | `ring:managing-dev-cycle` (mode=status) | Check current status | | `ring:writing-dev-reports` | View feedback report |
---
Now executing the requested mode...
Read state from: `docs/ring:running-dev-cycle/current-cycle.json` or `docs/ring:planning-backend-refactor/curren
Read more
name: ring:managing-dev-cycle description: "Managing an in-progress development cycle without driving it: status reports phase, epic/gate progress, assertiveness, and elapsed time from current-cycle.json; cancel confirms, marks the cycle cancelled, and writes a partial feedback report. Use when checking the status of, or cancelling, a running dev cycle. Skip when no cycle is active or the question is general project status, not cycle-specific."
Cycle Management
When to use
- User wants to check the status of a running development cycle
- User wants to cancel an active development cycle
- Invoked with mode=status or mode=cancel
Skip when
- No development cycle is active or was recently started
- User is asking about general project status (not cycle-specific)
Unified skill for managing development cycle state. Provides two modes: **status** (read-only inspection) and **cancel** (state mutation with confirmation).
Mode Selection
This skill provides two modes selected by the `mode` parameter:
| Mode | Purpose | |------|---------| | `status` | Read-only — display cycle metrics | | `cancel` | Mutating — cancel the active cycle |
If no mode is provided, default to `status`.
---
Shared: State File Discovery
Both modes read from the same state files. Check for an active cycle in this order:
1. `docs/ring:running-dev-cycle/current-cycle.json` 2. `docs/ring:planning-backend-refactor/current-cycle.json`
If neither file exists or both contain a terminal status (`completed`, `cancelled`), report that no cycle is active and exit with the appropriate "no cycle" message for the current mode.
---
Mode: Status
Display the current development cycle status.
Output
Displays:
- Current cycle ID and start time
- Current phase (if `phases[]` is present in state)
- Epics: total, completed, in progress, pending
- Current epic and gate being executed
- Assertiveness score (if epics completed)
- Elapsed time
Example Output
Development Cycle Status Cycle ID: 2024-01-15-143000 Started: 2024-01-15 14:30:00 Status: in_progress Phase: Phase 2 - Core flows Epics: Completed: 2/5 In Progress: 1/5 (Epic 2.3) Pending: 2/5 Current: Epic: Epic 2.3 - Implementar refresh token Gate 0→8→9 lean flow (ring:implementing-tasks) Iterations: 1 Metrics (completed epics): Average Assertiveness: 89% Total Duration: 1h 45m State file: docs/ring:running-dev-cycle/current-cycle.json (or docs/ring:planning-backend-refactor/current-cycle.json)
When No Cycle is Running (Status Mode)
No development cycle in progress.
Start a new cycle with:
/ring:running-dev-cycle docs/pre-dev/{feature}/plan.md
Or resume an interrupted cycle:
/ring:running-dev-cycle --resumeExecution Steps (Status)
1. **Discover state file** — check both paths per "Shared: State File Discovery" above 2. **Read JSON** — parse `current-cycle.json` 3. **Extract fields** — cycle ID, start time, status (incl. `paused_for_epic_approval`, `paused_for_phase_review`), `current_phase` and `phases[]` (if present), `epics[]` list, `current_epic_index`/gate, iterations 4. **Compute metrics** — count completed/in-progress/pending epics from `epics[]`, calculate elapsed time, average assertiveness score across completed epics 5. **Display** — format and present the output as shown above
---
Mode: Cancel
Cancel the current development cycle with state preservation.
Options
| Option | Description | |--------|-------------| | `--force` | Cancel without confirmation |
Behavior
1. **Confirmation**: Asks for confirmation before canceling (unless `--force`) 2. **State preservation**: Saves current state for potential resume 3. **Cleanup**: Marks cycle as `cancelled` in state file 4. **Report**: Generates partial feedback report with completed tasks
Confirmation Prompt
Unless `--force` is specified, display:
Cancel Development Cycle? Cycle ID: 2024-01-15-143000 Progress: 3/5 epics completed This will: - Stop the current cycle - Save state for potential resume - Generate partial feedback report [Confirm Cancel] [Keep Running]
After Confirmation (or --force)
Cycle Cancelled Cycle ID: 2024-01-15-143000 Status: cancelled Completed: 3/5 epics State saved to: docs/ring:running-dev-cycle/current-cycle.json (or docs/ring:planning-backend-refactor/current-cycle.json) Partial report: docs/dev-team/feedback/cycle-2024-01-15-partial.md To resume later: /ring:running-dev-cycle --resume
When No Cycle is Running (Cancel Mode)
No development cycle to cancel. Check status with: ring:managing-dev-cycle (mode=status)
Execution Steps (Cancel)
1. **Discover state file** — check both paths per "Shared: State File Discovery" above 2. **Read JSON** — parse `current-cycle.json` 3. **Validate** — confirm the cycle is in a non-terminal status (`in_progress`, `paused_for_epic_approval`, `paused_for_phase_review`, or similar) 4. **Confirm** — unless `--force`, use AskUserQuestion to get explicit user confirmation; if declined, abort 5. **Preserve state** — the existing JSON already contains the full state for potential resume 6. **Mark cancelled** — update the `status` field in `current-cycle.json` to `cancelled` and write back 7. **Generate partial report** — create a feedback file at `docs/dev-team/feedback/cycle-{id}-partial.md` summarizing completed epics, current progress, and reason (user-cancelled) 8. **Display** — format and present the cancellation confirmation as shown above
---
Related Skills
| Skill | Description | |-------|-------------| | `ring:running-dev-cycle` | Start or resume cycle | | `ring:managing-dev-cycle` (mode=cancel) | Cancel running cycle | | `ring:managing-dev-cycle` (mode=status) | Check current status | | `ring:writing-dev-reports` | View feedback report |
---
Now executing the requested mode...
Read state from: `docs/ring:running-dev-cycle/current-cycle.json` or `docs/ring:planning-backend-refactor/curren
Proven engineering practices, enforced through skills. Ring is a comprehensive skills library and workflow system for AI agents that transforms how AI assistants approach software development.
Repo: LerianStudio/ring
Other skills on ring.
- /analyzing-options
Analyzing different approaches for a task or problem with structured comparisons, effort estimates, and recommendations. Use when facing strategic decisions, architecture choices, or multiple viable approaches. Skip when there's an obvious single approach or the decision is
Open skill - /auditing-production-readiness
Auditing a service's production readiness against Ring engineering standards across base dimensions plus a conditional multi-tenant dimension, then emitting a scored report and an HTML dashboard. Use before production deploy, periodic review, onboarding, or a major release. Skip
Open skill - /cleaning-comments
Cleaning redundant and obvious comments following clean code principles while preserving meaningful documentation. Supports git scope filtering (staged, unstaged, branch, commit-range). Use when code has excessive comments, during code review, or post-refactor cleanup. Skip when
Open skill - /committing-changes
Commit changes with scope allowlist enforcement, atomic grouping, GPG-signed conventional commits, and trailer management. Detects the repo's PR-validation scope policy before proposing any message. Use when the user asks to commit or has changes ready to record. Skip when the
Open skill - /creating-handoffs
Creating a handoff document that captures session state (completed work, decisions, open items, next steps) and delivering it via Plan Mode so the user gets the native 'clear context and continue implementing' resume option. Use when ending a session, when context grows large,
Open skill - /creating-worktrees
Creating an isolated git worktree for parallel branch work: selects the directory by priority order, verifies/adds .gitignore safety, auto-installs the detected toolchain's dependencies, runs a baseline test, and reports readiness. Use before a feature that needs isolation from
Open skill

