cdtlisted
Install: claude install-skill rube-de/cc-skills
# Claude Dev Team
Multi-agent development workflow with five modes. Pick one based on the user's needs:
| Mode | When to use |
|------|-------------|
| **plan** | Need architecture/design before coding |
| **dev** | Have an approved plan, ready to implement |
| **full** | End-to-end with user approval gate between plan and dev |
| **auto** | End-to-end without approval gate |
| **bugfix** | Well-specified, reproducible bug (root cause may be unknown) — TDD fix cycle |
Before executing any mode, read the relevant workflow file:
- Feature modes (plan/dev/full/auto): [references/plan-workflow.md](references/plan-workflow.md) and [references/dev-workflow.md](references/dev-workflow.md)
- Bugfix mode: [references/bugfix-workflow.md](references/bugfix-workflow.md)
## Architecture
```text
Plan Phase (plan/full/auto) Dev Phase (dev/full/auto) Bugfix Phase (bugfix)
Lead (You) Lead (You) Lead (You)
├── architect [teammate] ├── developer [teammate] ├── tester [teammate]
├── product-manager [teammate] ├── code-tester [teammate] ├── developer [teammate]
└── researcher [subagent] ├── qa-tester [teammate] ├── reviewer [teammate]
├── reviewer [teammate] └── researcher [subagent]
└── researcher [subagent]
│ │
└──── plan.md (handoff) ─────────┘
```
**Teammates*