subagent-driven-development

Dispatch subagents for tasks and run three parallel code reviewers.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/withmartian-sandbox/ghrc-x-3126672651424eddb640ecc81321a665 --skill subagent-driven-development-withmartian-sandbox
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/withmartian-sandbox/ghrc-x-3126672651424eddb640ecc81321a665/tree/main/default/skills/subagent-driven-development
Command: npx skills add https://github.com/withmartian-sandbox/ghrc-x-3126672651424eddb640ecc81321a665 --skill subagent-driven-development-withmartian-sandbox

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Enables continuous, same-session development by dispatching a fresh autonomous subagent for each independent task while enforcing automated multi-reviewer quality gates so work proceeds quickly without human-in-the-loop pauses.

Core Features & Use Cases

  • Fresh subagent per task: Prevents context pollution by creating a new agent for every task implementation step.
  • Parallel automated reviews: Runs code-reviewer, business-logic-reviewer, and security-reviewer in parallel and aggregates findings to determine pass/fail.
  • Enforced fix-and-retest loop: Automatically dispatches fix subagents for Critical/High/Medium issues and tracks Low/Cosmetic items with TODO/FIXME comments.
  • Use Case: Ideal for implementing a multi-step feature where tasks are independent, require TDD, and must pass strict automated reviews before proceeding.

Quick Start

Dispatch a fresh subagent to implement Task 3 from the plan, run tests with TDD, then run the three parallel reviewers and aggregate results.

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 code review for autonomous subagent tasks?▼

Automated code review for autonomous subagent tasks is handled by running three parallel reviewers—code, business-logic, and security—that aggregate severities to enforce a fix-and-retest loop until critical issues pass.

How does test-driven development work with task orchestration?▼

Test-driven development with task orchestration dispatches a fresh subagent for each independent task to implement code, run tests, and execute sequential commits without requiring human-in-the-loop pauses.

Can I prevent context pollution when running continuous multi-step development?▼

Preventing context pollution during continuous multi-step development is achieved by creating a fresh autonomous subagent for every independent task implementation step within the same session.

What is the best way to enforce quality gates in autonomous development?▼

The best way to enforce quality gates in autonomous development is applying automated multi-reviewer checks that aggregate findings and automatically dispatch fix subagents for Critical, High, and Medium issues.

How are low-severity issues tracked during automated subagent code reviews?▼

Low and cosmetic severity issues found during automated subagent code reviews are tracked by inserting TODO and FIXME comments directly into the codebase rather than triggering immediate fix subagents.

Do I need independent tasks to use subagent-driven development?▼

Independent tasks are required for subagent-driven development because the workflow applies to same-session tasks that require TDD, sequential commits, and continuous progress without human pauses.