用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pynbj1001/alpha-sense --skill subagent-driven-development命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | subagent-driven-development |
| description | Use when executing implementation plans with independent tasks in the current session |
Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance review first, then code quality review.
Core principle: Fresh subagent per task + two-stage review (spec then quality) = high quality, fast iteration
subagent-driven-developmentexecuting-plans1. Read plan, extract ALL tasks with full text + context
2. Create TodoWrite with all tasks
Per task:
a. Dispatch implementer subagent (provide full task text + context)
b. Answer any questions from subagent before proceeding
c. Subagent implements, tests, commits, self-reviews
d. Dispatch SPEC COMPLIANCE reviewer subagent
→ If fails: implementer fixes → re-review until ✅
e. Dispatch CODE QUALITY reviewer subagent
→ If fails: implementer fixes → re-review until ✅
f. Mark task complete
3. After all tasks: Dispatch final code reviewer for entire implementation
4. Use superpowers:finishing-a-development-branch
1st: Spec Compliance — Does code match the spec? Nothing missing? Nothing extra?
2nd: Code Quality — Is the implementation well-built?
⚠️ Never start code quality review before spec compliance is ✅
superpowers:using-git-worktreessuperpowers:writing-planssuperpowers:finishing-a-development-branch