subagent-driven-development

Dispatch fresh subagents per task and run two-stage reviews.

4|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/atxinsky/skills --skill subagent-driven-development-atxinsky
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/atxinsky/skills/tree/main/subagent-driven-development
Command: npx skills add https://github.com/atxinsky/skills --skill subagent-driven-development-atxinsky

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables teams to execute implementation plans by distributing work to fresh subagents per task within the current session, reducing context switching and improving iteration speed.

Core Features & Use Cases

  • Per-task subagent dispatch: Create a dedicated subagent for each task to ensure isolated context and focused execution.
  • Two-stage review workflow: After each task, run a spec-compliance review first, followed by a code-quality review, then iterate until approval.
  • Sequential and parallel execution: Works within a single session to keep context cohesive or supports parallel task delegation when plans allow.

Quick Start

To begin, provide a plan and trigger the workflow with /execute-plans, then observe per-task subagents handling each item with automatic reviews and a final merge step.

Frequently Asked Questions about subagent-driven-development

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate parallel tasks with fresh subagents in a single session?

To orchestrate parallel tasks with fresh subagents, you dispatch a dedicated subagent per task within a single session, ensuring isolated context. This approach reduces context switching and improves iteration speed for plans with mostly independent tasks.

What is the two-stage review workflow for subagent task execution?

The two-stage review workflow runs a spec-compliance review first, followed by a code-quality review after each subagent completes its task. It then iterates with feedback until the task meets approval criteria before moving forward.

How do I execute implementation plans by distributing work to subagents?

To execute implementation plans by distributing work to subagents, provide your plan and trigger the workflow. Per-task subagents handle each item with automatic two-stage reviews, followed by a final finish step to merge all results.

Does subagent orchestration work for plans with dependent tasks?

Subagent orchestration is designed for plans with mostly independent tasks. Plans containing heavily dependent tasks may not suit this approach, as it dispatches fresh subagents per task and relies on a final merge step rather than handling complex inter-task dependencies.

Can I run sequential and parallel task delegation within the same session?

Yes, you can run sequential and parallel task delegation within the same session. This keeps context cohesive for sequential execution and supports parallel task delegation when plans allow independent operations.

Why use fresh subagents per task instead of a single continuous context?

Using fresh subagents per task ensures isolated context and focused execution for each item. This prevents context bloat and interference between tasks, reducing context switching and improving overall iteration speed.