subagent-driven-development

Delegates each plan task to fresh subagents with two-stage spec and quality reviews.

1|Updated May 10, 2026
One-click install
npx skills add https://github.com/Dq666dinger/my-hermes --skill subagent-driven-development-dq666dinger
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/Dq666dinger/my-hermes/tree/main/skills/software-development/subagent-driven-development
Command: npx skills add https://github.com/Dq666dinger/my-hermes --skill subagent-driven-development-dq666dinger

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill orchestrates plan execution by delegating each task to fresh subagents with a two-stage review process, ensuring isolated work and higher-quality outcomes.

Core Features & Use Cases

  • Fresh per-task subagents: each task runs in its own context to prevent state leakage.
  • Two-stage reviews: spec compliance followed by code-quality validation before merging progress.
  • Structured plan execution: read plan once, extract all tasks, and drive parallel or sequential work as appropriate.
  • Automatic task completion: tasks are marked completed only after successful reviews and validation.

Quick Start

Provide an implementation plan; the skill will dispatch per-task subagents, perform two-stage reviews, and finalize completed tasks.

Frequently Asked Questions about subagent-driven-development

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

FAQPage Schema
How do I automate plan execution using subagents for independent software development tasks?

Automating plan execution with subagents requires a structured plan input, which the skill reads once to extract tasks, dispatches each to a fresh subagent via task delegation, and finalizes after sequential reviews.

Why use fresh subagents for each task in a multi-task software development plan?

Fresh subagents prevent state leakage by isolating each task in its own context. This ensures independent execution and maintains clean boundaries between tasks during automated plan orchestration.

What is the two-stage review process for delegated subagent task completion?

The two-stage review process validates delegated tasks sequentially, first checking spec compliance and then performing code-quality validation, ensuring tasks are marked completed only after passing both reviews.

Can I use subagent-driven delegation for multi-task plans with dependent tasks?

Subagent-driven delegation applies to multi-task plans where tasks are independent. Dependent tasks that do not benefit from isolated execution and automatic quality checks are not suited for this orchestration approach.

Does subagent orchestration require any external dependencies or components to run?

Subagent orchestration requires no external dependencies or components. It operates using a structured plan input and built-in task delegation to dispatch fresh subagents and perform two-stage reviews.

How does task dispatch handle parallel or sequential work in subagent orchestration?

Task dispatch reads the structured plan once, extracts all tasks, and drives parallel or sequential work as appropriate, delegating each task to fresh subagents and performing two-stage reviews before marking completion.