subagent-driven-development
FeaturedUse when executing implementation plans with independent tasks in the current session
AI & Automation 391 stars
65 forks Updated 4 days ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
<!--
Adapted from obra/superpowers subagent-driven-development skill (v5.0.7),
MIT-licensed, copyright 2025 Jesse Vincent. Modifications copyright 2026 Joe Amditis.
v0.5.0 ports as a consumer category, no research phase per the v0.2.0
architecture, since subagent-driven-development is an in-session execution mode
whose plan handoff already carries the research conclusions. skill_md_parity is
false in the manifest because the dual-namespace cross-ref check requires
migrating five superpowers:<x> references to superjawn:<x> for skills already
ported, which breaks byte-parity with upstream by definition.
See CREDITS.md.
-->
# Subagent-Driven Development
Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance review first, then code quality review.
**Why subagents:** You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history, you construct exactly what they need. This also preserves your own context for coordination work.
**Core principle:** Fresh subagent per task + two-stage review (spec then quality) = high quality, fast iteration
## When to Use
```dot
digraph when_to_use {
"Have implementation plan?" [shape=diamond];
"Tasks mostly independent?" [shape=diamond];
"Stay in this session?" [shape=diamond];
"subagent-driven-development" [shap...
Details
- Author
- jamditis
- Repository
- jamditis/claude-skills-journalism
- Created
- 8 months ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
subagent-driven-development
Use when executing implementation plans with independent tasks in the current session
2 Updated 2 days ago
gorban-dev AI & Automation Listed
subagent-driven-development
Use when executing implementation plans with independent tasks in the current session
7 Updated yesterday
minhtran3124 AI & Automation Listed
subagent-driven-development
Use when executing an implementation plan with mostly-independent tasks in the current session by dispatching a fresh subagent per task with two-stage review (spec compliance, then code quality). Triggers after writing-plans when the user picks the subagent-driven option, or whenever coordinating a coding swarm task-by-task.
1 Updated 1 months ago
StielChancellor