Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

subagent-driven-development子 Agent 驱动开发

Agent Skill

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

总安装

247

周安装

10

GitHub Stars

公开资料未说明

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mylesmcook/mcook-skills --skill subagent-driven-development

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Subagent-Driven Development

Use this skill after the plan is written and approved. Keep the controller session as the manager: detect the harness, extract tasks, route models, decide what to delegate, keep context narrow, review the work, verify outcomes, and close agents that are no longer needed.

Use When

  • The plan already exists and is approved.
  • Most tasks are bounded and can be owned by one worker at a time.
  • The controller can keep integration, review, and final verification centralized.

Workflow

  1. Confirm the plan is approved and the workspace is safe to edit.
  2. Capture a routing profile before dispatching work:

- harness name or family - whether fresh workers can be spawned - how fresh workers are spawned, such as host subagents, task tools, external CLIs, or inline fallback - whether model or reasoning can be set per worker - whether browser sessions can be isolated - whether parallel execution is safe

  1. Load routing references only when they matter:

- read references/harness-routing.md when the harness is unclear or model and reasoning choices materially affect cost, latency, or correctness - read references/preferred-openai-codex-preset.md when the harness is codex or openai-chatgpt and no stronger user, repo, or org policy overrides it

  1. Extract the task list up front: acceptance criteria, dependencies, risks, shared contracts, and likely write surfaces.
  2. Stay in manager posture. Delegate bounded work aggressively. Keep blocking, tightly coupled, or controller-only work local.
  3. Route by role and task risk:

- controller = strongest available reasoning and coding setup - implementer = fastest setup that should still pass review for the task class - reviewer = smallest setup that can read the diff precisely enough for the risk level - explorer = cheapest fast read-only worker

  1. In Codex or OpenAI harnesses, use the host's fresh subagent mechanism for workers when it is available; do not shell out to Codex CLI from inside Codex to emulate workers. Default to gpt-5.4 for the controller, gpt-5.4-mini for most implementers, gpt-5.4-mini for targeted low-risk review, gpt-5.4 for risky or full review, and gpt-5.3-codex-spark only as an optional shallow read-only explorer when available.
  2. Bootstrap worker context narrowly. If the repo has a canonical entrypoint such as AGENTS.md, CLAUDE.md, WORKFLOW.md, README.md, or a memory index, point the worker there first and add only the extra context it still needs.
  3. Check coupling before dispatching. Merge or serialize tasks that touch the same files, APIs, migrations, selectors, browser state, schemas, or shared contracts.
  4. Give each implementation task one fresh worker with the exact task text, acceptance criteria, owned write scope, working directory, canonical entrypoint, necessary repo context, and model or reasoning hint when the harness supports it.
  5. If browser work is needed, give that worker its own isolated browser session. Never share live browser state across workers.
  6. Run review gates proportionally:

- controller verification is always required - use both spec review and code-quality review for risky, user-visible, cross-cutting, shared-contract, or ambiguous changes - use targeted review only for tiny doc-only or tightly scoped mechanical edits when the risk is truly low

  1. Verify each task in the controller session with the relevant tests, checks, or manual validation. Do not rely on the worker report alone.
  2. Record reusable learnings, then close finished agents once their output is fully reviewed and no longer needed.
  3. After all tasks finish, run fresh whole-branch verification and a whole-diff review when the overall change is large or cross-cutting.

Review Depth

Use the full two-stage review loop when the change affects external behavior, APIs, schemas, migrations, auth, permissions, billing, security-sensitive paths, browser flows, shared UI components, shared contracts, concurrency, caching, or performance-critical code.

Targeted review is acceptable only for clearly low-risk work such as docs, non-semantic renames, isolated fixture updates, mechanical import moves, or formatting refreshes with no behavior change.

When unsure, use the full loop.

References

  • references/harness-routing.md
  • references/preferred-openai-codex-preset.md
  • references/implementer-prompt.md
  • references/spec-reviewer-prompt.md
  • references/code-quality-reviewer-prompt.md

Guardrails

  • Use this only when the plan is already approved and the tasks are mostly independent.
  • Do not make workers read the plan file directly. Paste only the relevant task text and context.
  • Do not flood workers with broad context when a canonical repo entrypoint exists.
  • Do not dispatch conflicting tasks in parallel or give two workers the same write surface.
  • Do not share browser sessions, refs, or mutable browser state across workers.
  • Do not skip controller verification, and do not relax review depth for risky or shared-behavior changes.
  • Do not trust an implementation success report without fresh verification evidence.
  • Do not let workers invent acceptance criteria or silently make broad architectural decisions.
  • Do not route every task to the strongest model by reflex.
  • Do not claim a vendor-specific model is available unless the harness actually exposes it.
  • Do not let a local preset override an explicit user choice, repo policy, org policy, or clear task-risk signal.
  • Do not pretend model pinning or reasoning controls exist when the harness does not support them.
  • Do not invoke Codex CLI from inside a Codex host to fake subagent dispatch. Use host subagents when available; otherwise run the same loop inline.
  • If your environment cannot dispatch fresh subagents, run the same loop inline instead of pretending delegation exists.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.38%
按下载量换算26

Claude

32.01%
按下载量换算25

Cursor

17.16%
按下载量换算13

Gemini CLI

9.27%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills