Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计未展示

ring%3asubagent-driven-developmentRing%3a 子 Agent 驱动的开发

Agent Skill

ring%3asubagent-driven-development 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

26

GitHub Stars

180

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ring%3asubagent-driven-development(Ring%3a 子 Agent 驱动的开发)
来源仓库:https://github.com/lerianstudio/ring
仓库路径:skills/ring%3Asubagent-driven-development
安装命令:
npx skills add https://github.com/lerianstudio/ring --skill ring:subagent-driven-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:subagent-driven-development

简介

ring%3asubagent-driven-development 用于查找、检索和筛选相关信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中基于关键词或场景快速定位结果。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,具体用法需查阅原始 README。
  • 安装前建议确认权限、维护状态及是否涉及网络或系统调用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Subagent-Driven Development

Execute plan by dispatching fresh subagent per task, with code review after each.

Core principle: Fresh subagent per task + review between tasks = high quality, fast iteration

Overview

vs. Executing Plans (parallel session):

  • Same session (no context switch)
  • Fresh subagent per task (no context pollution)
  • Code review after each task (catch issues early)
  • Faster iteration (no human-in-loop between tasks)

When to use:

  • Staying in this session
  • Tasks are mostly independent
  • Want continuous progress with quality gates

When NOT to use:

  • Need to review plan first (use ring:executing-plans)
  • Tasks are tightly coupled (manual execution better)
  • Plan needs revision (brainstorm first)

The Process

1. Load Plan

Read plan file, create TodoWrite with all tasks.

1.5 Handle Multi-Module Tasks (if applicable)

If plan has tasks with target: and working_directory: fields:

  1. Track current module context: current_module = None current_directory = "."
  2. Before dispatching task subagent, check for context switch: IF task.target!= current_module AND current_module!= None: # Prompt user for confirmation AskUserQuestion: question: "Switching to {task.target} module at {task.working_directory}. Continue?" header: "Context" options: - label: "Continue" description: "Switch and execute task" - label: "Skip task" description: "Skip this task" - label: "Stop" description: "Stop execution" Handle response accordingly
  3. Include working directory in subagent prompt: Task(subagent_type=task.agent, model="opus", prompt="Working directory: {task.working_directory} FIRST: cd {task.working_directory} THEN: Check for PROJECT_RULES.md and follow if exists {original task prompt}")

Optimization: Reorder tasks to minimize context switches (if no dependencies between modules).


2. Execute Task with Subagent

Dispatch: Task tool with: Task N from [plan-file], working directory (if multi-module), instructions (implement, test with TDD, verify, commit, report back). Subagent reports summary.

3. Review Subagent's Work (Parallel Execution)

CRITICAL: Single message with 5 Task tool calls - all reviewers execute simultaneously.

ReviewerContext
ring:code-reviewerWHAT_WAS_IMPLEMENTED, PLAN, BASE_SHA, HEAD_SHA
ring:business-logic-reviewerSame context
ring:security-reviewerSame context
ring:test-reviewerSame context
ring:nil-safety-reviewerSame context

Each returns: Strengths, Issues (Critical/High/Medium/Low/Cosmetic), Assessment (PASS/FAIL)

4. Aggregate and Handle Review Feedback

Aggregate all issues by severity across all 5 reviewers.

SeverityAction
Critical/High/MediumDispatch fix subagent → Re-run all 5 reviewers → Repeat until clear
LowAdd # TODO(review): [issue] - reviewer, date, Severity: Low
CosmeticAdd # FIXME(nitpick): [issue] - reviewer, date, Severity: Cosmetic

Commit TODO/FIXME comments with fixes.

5. Mark Complete, Next Task

After all Critical/High/Medium issues resolved for current task:

  • Mark task as completed in TodoWrite
  • Commit all changes (including TODO/FIXME comments)
  • Move to next task
  • Repeat steps 2-5

6. Final Review (After All Tasks)

Same pattern as Step 3 but reviewing entire implementation (all tasks, full BASE_SHA→HEAD_SHA range). Aggregate, fix, re-run until all 5 PASS.

7. Complete Development

After final review passes:

  • Announce: "I'm using the finishing-a-development-branch skill to complete this work."
  • REQUIRED SUB-SKILL: Use finishing-a-development-branch
  • Follow that skill to verify tests, present options, execute choice

Example Workflow

Task 1: Implement → All 5 reviewers PASS → Mark complete.

Task 2: Implement → Review finds: Critical (hardcoded secret), High (missing password reset, missing input validation), Low (extract token logic) → Dispatch fix subagent → Re-run reviewers → All PASS → Add TODO for Low → Mark complete.

Final: All 5 reviewers PASS entire implementation → Done.

Why parallel: 5x faster, all feedback at once, TODO/FIXME tracks tech debt.

Advantages

vs.Benefits
Manual executionFresh context per task, TDD enforced, parallel-safe
Executing PlansSame session (no handoff), continuous progress, automatic review

Cost: More invocations, but catches issues early (cheaper than debugging later).

Red Flags

Never:

  • Skip code review between tasks
  • Proceed with unfixed Critical/High/Medium issues
  • Dispatch reviewers sequentially (use parallel - 5x faster!)
  • Dispatch multiple implementation subagents in parallel (conflicts)
  • Implement without reading plan task
  • Forget to add TODO/FIXME comments for Low/Cosmetic issues

Always:

  • Launch all 5 reviewers in single message with 5 Task calls
  • Wait for all reviewers before aggregating findings
  • Fix Critical/High/Medium immediately
  • Add TODO for Low, FIXME for Cosmetic
  • Re-run all 5 reviewers after fixes

If subagent fails task:

  • Dispatch fix subagent with specific instructions
  • Don't try to fix manually (context pollution)

Integration

Required workflow skills:

  • ring:writing-plans - REQUIRED: Creates the plan that this skill executes
  • ring:requesting-code-review - REQUIRED: Review after each task (see Step 3)
  • ring:finishing-a-development-branch - REQUIRED: Complete development after all tasks (see Step 7)

Subagents must use:

  • ring:test-driven-development - Subagents follow TDD for each task

Alternative workflow:

  • ring:executing-plans - Use for parallel session instead of same-session execution

See reviewer agent definitions: ring:code-reviewer (agents/code-reviewer.md), ring:security-reviewer (agents/security-reviewer.md), ring:business-logic-reviewer (agents/business-logic-reviewer.md)


Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Plan missingNo plan file available to executeSTOP and use ring:writing-plans first
Critical issue unfixedCode review found Critical/High/Medium issue that cannot be resolvedSTOP and report blocker to human partner
Task dependencyCurrent task depends on incomplete previous taskSTOP and resolve dependency before proceeding
Subagent failureSubagent cannot complete task after retrySTOP and report for manual intervention

Cannot Be Overridden

The following requirements CANNOT be waived:

  • MUST dispatch all 5 reviewers in parallel (single message with 5 Task calls)
  • MUST NOT proceed with unfixed Critical/High/Medium issues
  • MUST NOT dispatch multiple implementation subagents in parallel
  • MUST add TODO/FIXME comments for Low/Cosmetic issues
  • MUST use ring:finishing-a-development-branch at completion

Severity Calibration

SeverityConditionRequired Action
CRITICALReview finds security vulnerability or data loss riskMUST fix immediately, re-run all 5 reviewers
HIGHReview finds logic error or missing functionalityMUST fix before marking task complete
MEDIUMReview finds code quality issue affecting maintainabilityMUST fix before proceeding to next task
LOWReview finds minor improvement opportunityAdd TODO comment, continue to next task

Pressure Resistance

User SaysYour Response
"Skip the code review, we're behind schedule""CANNOT skip review between tasks. Review catches issues early, which is cheaper than debugging later."
"Run reviewers one at a time to see results faster""MUST dispatch all 5 reviewers in parallel. Sequential execution is 5x slower with no benefit."
"That Medium issue can wait""MUST fix Medium and above before proceeding. Technical debt compounds and blocks later tasks."
"Just implement multiple tasks at once""CANNOT dispatch parallel implementation subagents. Conflicts and context pollution will corrupt the codebase."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"One quick review is enough"Single reviewer misses issues. 5 reviewers catch different problem types.MUST run all 5 reviewers
"This task is simple, skip review"Simple tasks have simple bugs that compound. Review is cheap insurance.MUST review after every task
"Low severity issues don't need tracking"Low issues become Medium over time. TODO comments ensure they're not forgotten.MUST add TODO/FIXME for Low/Cosmetic
"I'll fix the Medium issue in the next task"Issues from task N don't belong in task N+1. Fix in context, not later.MUST fix Medium+ before proceeding
"Parallel implementation would be faster"Parallel implementation causes merge conflicts and context pollution.MUST execute tasks sequentially

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.9%
按下载量换算70

Claude

30.41%
按下载量换算65

Cursor

18.71%
按下载量换算40

Gemini CLI

8.34%
按下载量换算18

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills