subagent-driven-development

Dispatch fresh subagents per task with two-stage spec and code reviews.

2|1|Updated Jan 5, 2026
One-click install
npx skills add https://github.com/lagz0ne/prev-cli --skill subagent-driven-development-lagz0ne
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-driven-development
Source: https://github.com/lagz0ne/prev-cli/tree/main/.opencode/skill/subagent-driven-development
Command: npx skills add https://github.com/lagz0ne/prev-cli --skill subagent-driven-development-lagz0ne

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill orchestrates the execution of implementation plans by dispatching independent subagents per task, enabling two-stage reviews and fast iteration.

Core Features & Use Cases

  • Fresh subagent per task to prevent context pollution and allow parallel-safe progress.
  • Two-stage review after each task: spec compliance first, then code quality review.
  • In-session orchestration of complex plans with automatic task progression and completion signaling.

Quick Start

Load your plan file, then dispatch an implementer subagent with the full task text and context. The implementer will perform work, followed by the spec-compliance reviewer and the code-quality reviewer in sequence. Repeat for remaining tasks, and finish by finalizing the development branch.

Frequently Asked Questions about subagent-driven-development

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

FAQPage Schema
How do I orchestrate plan execution with independent subagents for rapid iteration?

Plan execution with independent subagents is orchestrated by dispatching a fresh subagent for each task, enabling rapid iteration and preventing context pollution. This approach ensures parallel-safe progress within a single session.

What is a two-stage review process for spec compliance and code quality?

A two-stage review process evaluates task completion sequentially: first checking spec compliance to verify requirements, then reviewing code quality. This guarantees implementation meets specifications before finalizing the development branch.

How do I automate task dispatch and progression for independent development tasks?

Automate task dispatch by loading a plan file and sending full task text to an implementer subagent. The system manages automatic task progression and completion signaling until all plan items are resolved.

Does subagent-driven development work for dependent tasks in a single session?

Subagent-driven development is applicable when plans contain mostly independent tasks within a single session. It is not designed for highly dependent tasks requiring sequential state sharing between subagents.

Why use fresh subagents for each task during workflow orchestration?

Fresh subagents prevent context pollution during workflow orchestration by isolating task execution. This maintains code quality and ensures parallel-safe progress across multiple implementation tasks.