ring:using-ring

A conversation-wide coordination rule for coding agents. It requires checking for relevant skills, sending larger tasks to specialist agents, and limiting direct work to three files or fewer.

In plain words
What is it for?
Use it to route coding tasks to the right agent, enforce the three-file limit, discover applicable skills, and apply the required workflow at the start of each task.
Why use it?
It helps keep complex work organized and prevents one agent from handling too many files or skipping required specialist review. It also makes certain requests, such as refactoring or searching, follow a defined process.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/lerianstudio/ring/using-ring
Any agent
npx skills add LerianStudio/ring --skill using-ring
Clone the repo
git clone --depth 1 https://github.com/LerianStudio/ring

Made for: Claude Code, Codex.

Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 868 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00084 $0.00868
Opus 5 $0.00042 $0.00434
Sonnet 5 $0.00017 $0.00174
Haiku 4.5 $0.00008 $0.00087

Measured 2d ago against content hash 38fc0ea9c04f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ring:using-ring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

default/skills/using-ring/SKILL.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Using Ring (Orchestrator Protocol)

When to use

  • Every conversation start (automatic via SessionStart hook)
  • Before ANY task (check for applicable skills)
  • When tempted to operate tools directly instead of delegating

Skip when

  • Never skip - this skill is always mandatory

⛔ 3-FILE RULE: HARD GATE

DO NOT read/edit >3 files directly. PROHIBITION, not guidance.

≤3 files → Direct OK (if user requested)
>3 files → STOP. Launch agent. VIOLATION = 15x context waste.

Already at 3 files? STOP. Dispatch agent NOW.

Auto-Trigger Phrases: Mandatory Agent Dispatch

User Phrase Mandatory Action
"fix issues", "fix remaining", "fix findings" Launch specialist agent
"apply fixes", "fix errors", "fix warnings", "fix linting" Launch specialist agent
"update across", "change all", "refactor" Launch specialist agent
"find where", "search for", "understand how" Launch Explore agent
"draw diagram", "visualize", "comparison table" Load ring:visualizing skill

Mandatory First Response Protocol

  1. ☐ Check for <MANDATORY-USER-MESSAGE> in additionalContext — display verbatim if present
  2. ☐ Orchestration decision: which agent handles this? (TodoWrite)
  3. ☐ Skill check: does any skill match this request?
  4. ☐ If yes → read and run the skill
  5. ☐ Announce skill/agent being used
  6. ☐ Execute

ORCHESTRATOR Principle

You dispatch agents. You do not operate tools directly.

Instead of... Do this
Reading files Dispatch Explore agent
Grep/Glob chains Dispatch Explore agent
Manual multi-file edits Dispatch specialist agent
"Quick look" at codebase Dispatch Explore agent

Exceptions (rare): User explicitly provides a file path AND explicitly requests you read it.

Read the full file on GitHub · 97 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 97 lines · 84 tokens per session scan A 38fc0ea9c04f

Subscribe to this mod's changes

ring:using-ring is a skill published in the GitHub repository LerianStudio/ring (210 stars, last pushed 13d ago), licensed Apache-2.0. It adds 84 tokens to every session and 868 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

brainstorm

Explores a codebase, researches the problem space, and produces an approved design specification before any code is written. Use when the user wants to create a new feature, add significant functionality, redesign a subsystem, or build something that touches multiple parts of the project.

greglas75/zuvo · 56 tokens

pentest

Hybrid white-box + black-box penetration testing across 7 dimensions (PT1-PT7). Stack-aware source-to-sink tracing, exploit verification, CMS overlay, and deterministic finding aggregation. Uses explicit candidate schemas, canonical-key deduplication, score caps, and MUST-GATE enforcement. Flags: zuvo:pentest [path] |…

greglas75/zuvo · 124 tokens

debt-ops-init

Write or refresh a "Tech debt operations" section in the project's AGENTS.md so the team shares one source of truth for debt-ops disciplines. Run ONLY when the user explicitly asks to set up, install, or initialize debt-ops disciplines — never auto-invoke. Idempotent; only the managed section changes, other sections…

bcanfield/agentic-tech-debt · 76 tokens

a11y-audit

Dedicated WCAG 2.2 AA/AAA accessibility audit across 10 dimensions (A1-A10) covering semantic HTML, keyboard navigation, ARIA patterns, color contrast, forms, images/media, responsive/zoom, motion/animation, reading/content, and legal compliance. Goes far beyond surface-level design-review checks with deep…

greglas75/zuvo · 147 tokens

api-audit

API and endpoint integrity audit across 10 dimensions (D1-D10) plus optional contract stability (D11) and optional OWASP API Security Top 10 (D12: BOLA/BOPLA/BFLA, mass assignment, JWT alg-confusion, GraphQL introspection). Covers validation, payloads, pagination, errors, caching, HTTP semantics, waterfalls, rate…

greglas75/zuvo · 135 tokens

debug

Systematic bug investigation with a five-phase framework: reproduce, narrow, diagnose, fix, verify. Supports automated regression bisect via --regression flag. Produces a structured debug report with root cause analysis, regression test, and CQ/Q self-evaluations.

greglas75/zuvo · 55 tokens