home / skills / zpankz / mcp-skillset / subagent-driven-development
This skill creates and executes tasks by dispatching fresh subagents with per-task reviews to ensure fast, high-quality iteration.
npx playbooks add skill zpankz/mcp-skillset --skill subagent-driven-developmentReview the files below or copy the command above to add this skill to your agents.
---
name: subagent-driven-development
description: Use when executing implementation plans with independent tasks in the current session or facing 3+ independent issues that can be investigated without shared state or dependencies - dispatches fresh subagent for each task with code review between tasks, enabling fast iteration with quality gates
---
# Subagent-Driven Development
Create and execute plan by dispatching fresh subagent per task or issue, with code and output review after each or batch of tasks.
**Core principle:** Fresh subagent per task + review between or after tasks = high quality, fast iteration.
## Overview
Executing Plans through agents:
- Same session (no context switch)
- Fresh subagent per task (no context pollution)
- Code review after each or batch of task (catch issues early)
- Faster iteration (no human-in-loop between tasks)
## Supported Types of Execution
### Sequential Execution
When tasks are tightly coupled and need to be executed in order.
- Dispatch one agent per task or issue
- Let it work sequentially
- Review the output and code after each task or issue
### Parallel Execution
When you have multiple unrelated tasks (different files, different subsystems, different bugs).
- Dispatch one agent per independent problem domain
- Let them work concurrently
- Overall review after all tasks are completed
### Parallel Investigation
Special case for multiple unrelated failures that can be investigated without shared state or dependencies.
## Progressive Loading
**L2 Content** (loaded when sequential execution process needed):
- See: [references/sequential-process.md](./references/sequential-process.md)
**L3 Content** (loaded when parallel execution or investigation needed):
- See: [references/parallel-process.md](./references/parallel-process.md)
- See: [references/parallel-investigation.md](./references/parallel-investigation.md)
This skill enables executing implementation plans by dispatching a fresh subagent for each independent task or issue, with automated code and output review between tasks. It is designed for sessions that contain three or more independent problems or workflows that do not share state, enabling fast iteration while preserving quality gates.
For each task or issue, the system spawns a fresh subagent that works in isolation to avoid context pollution. After each task or after a batch, the originating controller performs automated code review and output validation, then decides to accept, request revisions, or spawn follow-up tasks. The skill supports both sequential and parallel dispatch patterns depending on task coupling.
Do subagents share memory or state?
No. Each subagent is spawned fresh and operates in isolation to prevent context pollution and ensure reproducible outputs.
When should I choose sequential over parallel execution?
Choose sequential when tasks are tightly coupled or when an earlier result influences the next step. Use parallel when tasks are independent and can be validated separately.