From ai-agents
为每个计划任务派遣独立子代理执行,两阶段审查(规格合规 + 代码质量)确保质量。触发短语:"子代理开发"、"并行实现"、"subagent"。
npx claudepluginhub stringke/ai-agents --plugin ai-agentsThis skill is limited to using the following tools:
为 plan.md 中的每个任务派遣一个独立的子代理执行。每个子代理拥有完整的任务上下文,执行完成后经过两阶段审查确保质量。
Executes multi-task implementation plans in current session via isolated subagents per task: implement, spec review, code quality review. For independent tasks without context switching.
Executes development plans using parallel subagents, per-task implementers, spec compliance reviews, and code quality gates. For large multi-task projects.
Executes implementation plans with independent tasks in-session by dispatching fresh subagents per task and code reviews between tasks for fast iteration with quality gates.
Share bugs, ideas, or general feedback.
为 plan.md 中的每个任务派遣一个独立的子代理执行。每个子代理拥有完整的任务上下文,执行完成后经过两阶段审查确保质量。
每个子代理:
任务完成后,依次派遣两个审查子代理:
两阶段都通过后,任务才标记为完成。
读取 plan.md,提取所有待完成任务(- [ ])。
对每个任务:
使用 Agent 工具派遣实现子代理,prompt 结构:
references/implementer-prompt.md 的内容解析子代理返回状态:
对每个完成的任务:
派遣规格审查子代理(使用 references/spec-reviewer-prompt.md)
派遣代码质量审查子代理(使用 references/code-quality-reviewer-prompt.md)
如果审查发现问题:
每个任务审查通过后,在 plan.md 中标记为 [x]。
所有任务完成后:
子代理驱动适用于:
小型、强依赖的改动使用 /executing-plans 更高效。