subagent-driven-development

Dispatches fresh subagents per task to implement plans with built-in code reviews and npm test verification.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/krwhynot/crispy-crm --skill subagent-driven-development-krwhynot
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/krwhynot/crispy-crm/tree/main/.claude/skills/ui-ux-design-principles
Command: npx skills add https://github.com/krwhynot/crispy-crm --skill subagent-driven-development-krwhynot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Executes implementation plans by dispatching fresh subagents per task with inter-area code reviews, enabling fast iteration and quality gates.

Core Features & Use Cases

  • Load plan from docs/plans, create TodoWrite tasks, and divide into feature areas.
  • For each task, dispatch a new subagent to implement with TDD-first practice and report results.
  • Post-area review by a reviewer subagent to ensure constitution compliance and quality.

Quick Start

Load a plan and dispatch subagents per task; after each area, trigger a code-review subagent before moving to the next.

Frequently Asked Questions about subagent-driven-development

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

FAQPage Schema
How do I execute implementation plans with code review gates between feature areas?

Subagent-driven development dispatches fresh subagents per task, applies test-driven development, and enforces inter-area code reviews. Load your plan from docs/plans, divide it into feature areas, then trigger a new subagent for each task with automated review before moving to the next area.

What's the best way to handle fragmented plan execution across multiple independent tasks?

Fresh subagents per task eliminate fragmentation by isolating execution scope. Each subagent implements one task with TDD-first practice, reports results, and triggers a reviewer subagent to verify constitution compliance before the next area begins.

Can I automate code reviews between feature areas during development?

Yes. After each feature area completes, dispatch a dedicated reviewer subagent to conduct inter-area code reviews and ensure quality gates are met before proceeding to the next task in your plan.

Do I need test-driven development to use this approach?

Test-driven development is enforced as part of this workflow. Each subagent implements with TDD-first practice and verification runs npm tests against your project context constraints to confirm quality.

When should I use subagent-driven development instead of a single agent execution?

Use it for plans with clearly grouped features and independent tasks where rapid iteration and quality gates are priorities. Fresh subagents enable faster execution, automated reviews, and clear task isolation compared to monolithic approaches.

What happens after a subagent completes implementation—how does review work?

After implementation, a reviewer subagent conducts post-area code review to check constitution compliance and quality. This review gates progression to the next task, ensuring each feature area meets standards before moving forward.