← ClaudeAtlas

subagent-developmentlisted

Execute plans using fresh subagent per task with code review between tasks. Use for high-quality iterative implementation.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Subagent-Driven Development Fresh subagent per task + review between tasks = high quality, fast iteration. ## When to Use - Executing implementation plans in current session - Tasks are largely independent - Want continuous progress with quality gates - Need isolation between task contexts ## When NOT to Use - Plan needs initial review/revision - Tasks have tight sequential dependencies - Simple changes that don't need isolation ## The Process ### 1. Load Plan & Create Tasks ``` 1. Read the plan document 2. Create TodoWrite with all tasks 3. Verify plan is sound before starting ``` ### 2. For Each Task **Dispatch Implementation Subagent:** ``` Task([appropriate-agent], prompt=" Implement Task N from the plan: **Task:** [Task description] **Requirements:** - Follow TDD (write failing test first) - Implement minimal code to pass - Verify all tests pass - Commit with descriptive message **Output:** - What was implemented - Test results - Any issues encountered ") ``` ### 3. Code Review Checkpoint After EACH task, dispatch reviewer: ``` Task(code-reviewer, prompt=" Review implementation of Task N: **What was implemented:** [From subagent output] **Commits:** [Range] **Requirements:** [From plan] Evaluate: - Implementation vs requirements match - Code quality and patterns - Test coverage - Critical/Important/Minor issues ") ``` ### 4. Address Feedback | Severity | Action | | -------- | --------------------------- | | Critical | Fix immed