Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

subagent-driven子 Agent 驱动

Agent Skill

subagent-driven 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

451

周安装

19

GitHub Stars

8

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vamseeachanta/workspace-hub --skill subagent-driven

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行协作整理。
  • 通过 npx skills add 命令从指定仓库安装使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • subagent-driven 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Subagent-Driven Development Skill

Overview

This skill implements structured plan execution by dispatching independent subagents for each task, followed by mandatory two-stage reviews: specification compliance first, then code quality. Ensures systematic progress with quality gates.

Quick Start

  1. Prepare plan - Extract tasks to TodoWrite tracker
  2. For each task:

- Dispatch implementer subagent - Answer clarification questions - Run spec compliance review - Run code quality review

  1. Final review - Comprehensive code review
  2. Complete - Use finishing-a-development-branch

When to Use

  • Executing implementation plans with mostly independent tasks
  • Need to remain in current session
  • Quality gates required between tasks
  • Context preservation across multiple steps

Don't use when:

  • Tasks are tightly coupled
  • Parallel execution preferred
  • Simple, single-file changes

Process Flow

Plan → [Task 1] → Implement → Spec Review → Quality Review → ✓
                                  ↓              ↓
                               Fix & Re-review if needed
       [Task 2] → Implement → Spec Review → Quality Review → ✓
       ...
       Final Review → Complete

Detailed Process

Step 1: Plan Preparation

Extract all tasks with full context:

## Task Extraction

From plan, create TodoWrite entries:
- [ ] Task 1: [Description with full context]
- [ ] Task 2: [Description with full context]
- [ ] Task 3: [Description with full context]

Important: Provide extracted text to subagents, don't make them read plan files.

Step 2: Per-Task Execution

For each task:

2a. Dispatch Implementer

**Implementer Subagent Prompt:**

Implement the following task:

[Complete task text from plan]

Requirements:
- Follow TDD: write test first, verify failure, implement, verify pass
- Make atomic commits
- Self-review before signaling completion
- Ask clarifying questions if needed

Signal completion with summary of:
- Files changed
- Tests added/modified
- Any deviations from plan

2b. Handle Clarifications

If implementer asks questions:

  • Answer before implementation begins
  • Don't let implementer proceed with assumptions
  • Document answers for future reference

2c. Spec Compliance Review

**Spec Reviewer Subagent Prompt:**

Review the implementation for specification compliance:

**Original task spec:**
[Task text from plan]

**Changes made:**
[Summary from implementer]

Verify:
- [ ] All requirements from spec implemented
- [ ] No requirements missed
- [ ] No extra features added (YAGNI)
- [ ] Implementation matches described approach

Report: PASS or FAIL with specific issues

If FAIL: Fix issues, re-run spec review.

2d. Code Quality Review

Only after spec review passes:

**Quality Reviewer Subagent Prompt:**

Review the implementation for code quality:

**Files changed:**
[List of files]

Review for:
- [ ] Code clarity and readability
- [ ] Error handling
- [ ] Test coverage and quality
- [ ] Performance considerations
- [ ] Security implications
- [ ] Adherence to project conventions

Report: PASS or FAIL with specific issues

If FAIL: Fix issues, re-run quality review.

2e. Mark Complete

After both reviews pass:

  • Mark task as complete in TodoWrite
  • Move to next task

Step 3: Final Review

After all tasks complete:

**Final Reviewer Subagent Prompt:**

Conduct comprehensive code review of all changes:

**Tasks completed:**
[List of all tasks]

**Files modified:**
[Complete file list]

Review for:
- [ ] Overall architectural coherence
- [ ] Cross-task consistency
- [ ] Integration correctness
- [ ] Complete test coverage
- [ ] Documentation completeness

Report: PASS or specific issues to address

Step 4: Completion

Use finishing-a-development-branch skill:

  • Decide: merge to main or create PR
  • Handle cleanup
  • Update tracking

Critical Rules

Never

  • Skip reviews (spec compliance OR code quality)
  • Start code quality review before spec compliance passes
  • Dispatch multiple implementation subagents in parallel
  • Make subagents read plan files directly
  • Accept reviews with unresolved issues
  • Continue to next task before current passes both reviews

Always

  • Provide extracted text to subagents
  • Answer clarifications before implementation
  • Fix issues before re-review
  • Document deviations from plan
  • Run both review stages in order

Review Order Rationale

1. Spec Compliance (Does it do the right thing?)
   ↓
2. Code Quality (Does it do it well?)

Spec first because:

  • No point polishing wrong code
  • Requirements drive design decisions
  • Quality review assumes correct functionality

Best Practices

Do

  1. Extract complete task context
  2. Include expected outcomes in implementer prompt
  3. Be specific in review criteria
  4. Fix issues immediately when found
  5. Keep TodoWrite updated
  6. Document any plan deviations

Don't

  1. Rush through reviews
  2. Batch multiple tasks before review
  3. Skip re-review after fixes
  4. Let implementer guess at requirements
  5. Accept "mostly passing" reviews
  6. Proceed with unresolved questions

Error Handling

SituationAction
Implementer asks questionAnswer fully, then proceed
Spec review failsFix specific issues, re-review
Quality review failsFix specific issues, re-review
Task blocked by dependencyComplete dependency first
Plan needs revisionUpdate plan, re-extract tasks

Metrics

MetricTargetDescription
First-pass spec compliance>80%Tasks passing spec review first time
First-pass quality>70%Tasks passing quality review first time
Re-review cycles<2Average re-reviews per task
Task completion rate100%Tasks completed as planned

Related Skills


Version History

  • 1.0.0 (2026-01-19): Initial release adapted from obra/superpowers

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

Claude Code

30.3%
按下载量换算48

windsurf

23.55%
按下载量换算37

trae

17.6%
按下载量换算28

OpenCode

12.15%
按下载量换算19

Cursor

8.91%
按下载量换算14

Codex

3.79%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills