Ring:Managing Dev Cycle logo

Ring:Managing Dev Cycle

Organization
LerianStudio
ring: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 cancelling, a running dev cycle. Skip when no cycle is active or the question is general project status, not cycle-specific.

Overview

PublisherLerianStudio
Repositoryring
Skill namering:managing-dev-cycle
Stars
215
Forks
28
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by LerianStudio on GitHub. Read the source before you install it.

Installation

Install the Ring:Managing Dev Cycle AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/LerianStudio/ring.git /tmp/ring
mkdir -p .claude/skills
cp -r /tmp/ring/dev-team/skills/managing-dev-cycle .claude/skills/lerianstudio-ring-managing-dev-cycle
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ring:Managing Dev Cycle in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ring:Managing Dev Cycle on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ring:Managing Dev Cycle is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

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:

ModePurpose
statusRead-only — display cycle metrics
cancelMutating — 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 --resume

Execution 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

OptionDescription
--forceCancel 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

SkillDescription
ring:running-dev-cycleStart or resume cycle
ring:managing-dev-cycle (mode=cancel)Cancel running cycle
ring:managing-dev-cycle (mode=status)Check current status
ring:writing-dev-reportsView feedback report

Now executing the requested mode...

Read state from: docs/ring:running-dev-cycle/current-cycle.json or docs/ring:planning-backend-refactor/current-cycle.json

Frequently asked questions

What does the Ring:Managing Dev Cycle AI skill do?

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.

Why use Ring:Managing Dev Cycle on TypingMind?

Because you install it once and use it with any model. Ring:Managing Dev Cycle is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ring:Managing Dev Cycle in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/LerianStudio/ring/tree/main/dev-team/skills/managing-dev-cycle. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Ring:Managing Dev Cycle?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ring:Managing Dev Cycle?

As many as you like. As long as a model supports skills, you can use Ring:Managing Dev Cycle with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ring:Managing Dev Cycle AI skill free?

Yes. It is published on GitHub by LerianStudio under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇