subagent-driven-development

Execute implementation plans by delegating tasks to subagents with two-stage reviews.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It helps you implement an existing feature plan reliably by delegating each task to a fresh subagent and gating progress with both spec compliance checks and code quality reviews.

Core Features & Use Cases

  • Plan-to-todo execution: Reads a feature plan once, extracts all tasks, and creates an explicit todo list so subagents start with complete, task-specific context.
  • Two-stage review per task: Runs a spec compliance reviewer first (ensuring the implementation matches the plan), then a code quality reviewer (ensuring tests and maintainability/security expectations are met).
  • Integration final review: After all tasks complete, dispatches a final integration reviewer to catch cross-task consistency and test-suite issues.

Quick Start

Use the subagent-driven-development skill to execute a previously generated implementation plan by delegating each task with complete context and enforcing spec-then-quality reviews until everything is approved.

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 and spec compliance for each task in a feature plan?▼

You can automate code review and spec compliance by delegating implementation tasks to fresh subagents, running a two-stage review loop that first checks spec compliance against the plan and then validates code quality and tests.

What is the best way to execute a software implementation plan using subagent delegation?▼

The best way to execute an implementation plan using subagent delegation is to parse the plan into a todo list, assign each task to a fresh subagent with full context, and gate progress with sequential spec and quality reviews.

Can I use subagent orchestration to manage iterative refinement and TDD workflows?▼

Yes, subagent orchestration supports iterative refinement and TDD workflows by delegating tasks to subagents and enforcing quality review loops that ensure tests validate behavior before integration.

How does subagent-driven development handle cross-task consistency and final test verification?▼

Subagent-driven development handles cross-task consistency by dispatching a final integration reviewer after all individual tasks are approved, catching cross-task issues and running full test verification.

When should I avoid using a two-stage subagent review workflow for feature delivery?▼

You should avoid using a two-stage subagent review workflow when software feature tasks are highly interdependent rather than mostly independent, as the workflow relies on delegating isolated tasks to fresh subagents.