subagent-driven-development

Dispatch fresh subagents per task with two-stage review loops.

27|5|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/Fandry96/k3-agentic-skills --skill subagent-driven-development-fandry96
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/Fandry96/k3-agentic-skills/tree/main/skills/subagent-driven-development
Command: npx skills add https://github.com/Fandry96/k3-agentic-skills --skill subagent-driven-development-fandry96

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Dispatching complex implementation plans often requires coordinating multiple specialized agents. This skill enables you to execute plans in the current session by dispatching a fresh subagent per task, with a two-stage review workflow to ensure quality and speed.

Core Features & Use Cases

  • Fresh subagent per task to avoid context leakage and accelerate iteration.
  • Two-stage reviews (spec compliance followed by code quality) to ensure accuracy and maintain maintainability.
  • In-session orchestration for parallel planning, execution, and quick feedback loops across tasks.

Quick Start

Initiate the workflow by starting the plan in the current session and let the controller dispatch per-task subagents (implementer, spec-reviewer, and code-quality-reviewer).

Frequently Asked Questions about subagent-driven-development

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

FAQPage Schema
How do I coordinate multiple implementation tasks without context leakage between agents?

To coordinate implementation tasks without context leakage, dispatch a fresh subagent per task within a single session. This approach accelerates iteration by ensuring each subagent operates independently without retaining previous task context.

What is a two-stage review workflow for subagent-driven development?

A two-stage review workflow for subagent-driven development enforces spec compliance and code quality checks sequentially. After an implementer subagent completes a task, a spec reviewer verifies requirements, followed by a code-quality reviewer assessing maintainability.

How do I dispatch independent coding tasks to subagents for parallel execution?

Dispatch independent coding tasks to subagents by initiating a plan in the current session and letting a controller allocate predefined prompts to implementer subagents. This enables in-session orchestration for parallel execution and quick feedback loops.

Can I use subagents to execute a predefined implementation plan with automated reviews?

Yes, you can use subagents to execute predefined implementation plans with automated reviews. The controller dispatches fresh subagents per task and enforces a two-stage review loop to ensure quality, accuracy, and traceability across the plan.

What's the best way to ensure spec compliance when dispatching tasks to multiple subagents?

The best way to ensure spec compliance when dispatching tasks to multiple subagents is using a two-stage review loop. A dedicated spec reviewer subagent verifies each task against requirements before a code-quality reviewer checks maintainability.

Why does my subagent context leak when executing multiple implementation tasks in a single session?

Subagent context leaks during implementation tasks occur when the same agent handles multiple steps. Dispatching a fresh subagent per task eliminates this issue, preventing previous context from interfering with new task execution.