بنقرة واحدة
superteam-subagent-driven-development
Break work into tasks, dispatch specialized agents, review iteratively
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Break work into tasks, dispatch specialized agents, review iteratively
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Explore design options before committing to an approach
Write failing tests before implementation code — RED, GREEN, REFACTOR
Create structured implementation plans with machine-parseable task blocks
Write acceptance tests before unit tests to ensure you're building the right thing
| name | superteam-subagent-driven-development |
| description | Break work into tasks, dispatch specialized agents, review iteratively |
| globs | **/* |
SDD uses specialized agents to implement and review code. Instead of doing everything yourself, you:
Write a plan with clear, independent tasks. Use the superteam-tasks format:
```superteam-tasks
- title: Create user model
description: Define User type with validation
files: [src/models/user.ts, src/models/user.test.ts]
- title: Add authentication
description: JWT-based auth with login/logout
files: [src/auth.ts, src/auth.test.ts]
```
Each task should be:
/sdd load plan.md — Load the plan
/sdd run — Run SDD for current task
/sdd status — Check progress
/sdd next — Skip to next task
For each task, the SDD orchestrator:
| Agent | Role | Tools |
|---|---|---|
| scout | Fast recon, find relevant code | read, grep, find, ls, bash |
| implementer | TDD implementation | all tools |
| spec-reviewer | Verify spec compliance | read, grep, find, ls |
| quality-reviewer | Code + test quality | read, grep, find, ls |
| security-reviewer | Vulnerability scanning | read, grep, find, ls |
| performance-reviewer | Performance analysis | read, grep, find, ls |
| architect | Design + structure review | read, grep, find, ls |
You can also use the team tool directly without SDD:
"Dispatch scout to find all database access patterns"
"Run security-reviewer and performance-reviewer in parallel on src/auth/"
"Chain: scout finds the code, then architect reviews the structure"
/team to check session cost