Team-A (Full) - 5-agent team with health checks and strict protocol
Orchestrates a 5-agent team to build features through sequential health checks, design, implementation, and verification phases.
/plugin marketplace add ashchupliak/dream-team/plugin install dream-team@dream-team-marketplace5 agents | Health checks | Feature tracking | E2E verification
Best for: Complex features, production-critical work
| Agent | Role |
|---|---|
| analyst | Requirements, research, edge cases |
| architect | Design, APIs, data model, implementation plan |
| developer | Fullstack implementation |
| qa | Testing, security, code review |
| devops | Infrastructure, CI/CD, deployment |
| Problem | Prevention |
|---|---|
| Over-ambition | ONE feature per cycle |
| Premature completion | VERIFY phase is MANDATORY |
| Environmental degradation | Git commits + state file |
| Skipping health checks | ALWAYS run tests first |
HEALTH CHECK → DISCOVER → DESIGN → DO → VERIFY
│ │ │ │ │
tests analyst architect dev qa+devops
git status && git log --oneline -5
npm test || ./gradlew test || echo "No tests"
If tests fail → Fix first!
Create .claude/features.json:
{
"project": "[Name]",
"features": [
{"id": "F001", "name": "Feature", "status": "failing"}
]
}
Create .claude/team-state.md:
# TEAM STATE
## Task: [User request]
## Current: Phase 1
## Phase 1: DISCOVER - analyst - pending
## Phase 2: DESIGN - architect - pending
## Phase 3: DO - developer - pending
## Phase 4: VERIFY - qa - pending
## Recovery: Continue from Current Phase, DELEGATE to agents!
For each phase:
Phase 1: DISCOVER → Launch analyst Phase 2: DESIGN → Launch architect Phase 3: DO → Launch developer Phase 4: VERIFY → Launch qa (+devops if needed)
Update features.json: "status": "passing"
Summary commit: feat(F001): [Feature] - verified
Run health check → Create state → Execute phases → Verify complete