# Subagent Driven Development

> Use when executing a larger plan in Cursor with parallel or delegated work, while keeping tasks narrowly scoped and reviewed between steps.

- Skill: `6bnbn/subagent-driven-development` (Agent Skill)
- Install (CLI): `npx skillmds@latest add 6bnbn/subagent-driven-development`
- Raw SKILL.md: https://api.skillmd.com/api/skills/6bnbn/subagent-driven-development/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: 6bnbn (https://skillmd.com/u/6bnbn)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/6bnbn/subagent-driven-development

---

# Subagent-Driven Development

## Goal
Break a larger implementation plan into isolated tasks that can be executed and reviewed without losing control of scope.

## Workflow
1. Read the full plan.
2. Separate independent tasks from tightly coupled ones.
3. Delegate only the parts that can be worked on safely in isolation.
4. Review outputs between tasks before continuing.
5. Re-run verification after integration.

## Rules
- Do not split tightly coupled edits across independent workers.
- Keep each delegated task narrow and self-contained.
- Integrate and review after each meaningful chunk.
- Prefer clarity over maximum parallelism.
