Agent skill
subagent-development
Execute plans using fresh subagent per task with code review between tasks. Use for high-quality iterative implementation.
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/dmjgilbert/subagent-development
SKILL.md
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 immediately, re-review |
| High | Fix before next task |
| Medium | Fix if quick, else document |
| Low | Document for later |
5. Mark & Continue
- Update TodoWrite to mark task complete
- Proceed to next task
- Repeat cycle
6. Final Review
After all tasks complete:
Task(code-reviewer, prompt="
Final review of complete implementation:
**Plan:** [Reference]
**All commits:** [Full range]
Verify:
- Complete plan compliance
- Architectural soundness
- No regressions
- Ready for merge
")
7. Finish
Transition to merge/PR workflow.
Critical Rules
Never:
- Skip code reviews between tasks
- Proceed with unresolved Critical issues
- Run multiple implementation subagents in parallel
- Implement without plan task reference
Always:
- Fresh subagent for each task (clean context)
- Review after each task (quality gate)
- Fix Critical/High before continuing
- Document deferred issues
Quality Gate Template
## Task N Review
**Status:** [Pass/Fail]
### Critical Issues
[None / List]
### High Priority
[None / List]
### Medium Priority
[None / List]
### Minor/Suggestions
[None / List]
### Verdict
- [ ] Proceed to next task
- [ ] Fix issues first
- [ ] Needs discussion
Benefits
- Clean context for each task (no accumulated confusion)
- Built-in quality gates catch issues early
- Reviewable progress at each step
- Easy to pause/resume at task boundaries
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?