A Claude Code plugin that installs a full dev-team of AI agents and skills into any project in one command.
| Agent | Model | Purpose |
|---|---|---|
code-reviewer |
Sonnet | Code quality, anti-patterns, bug detection |
qa-expert |
Haiku | Testing strategy, edge cases, coverage gaps |
performance-engineer |
Haiku | N+1 queries, caching, latency bottlenecks |
tech-writer |
Haiku | API docs, ADRs, response schema proposals |
product-manager |
Haiku | Feature scoping, user stories, prioritization |
tech-lead |
Sonnet | Architectural decisions, multi-agent synthesis |
All advisory agents return: ASSESSMENT → RECOMMENDATION → EXAMPLE → RED FLAGS
| Skill | Invocation | Purpose |
|---|---|---|
brainstorm-feature |
/brainstorm-feature <idea> |
Structured feature proposal with cost, tier, priority |
consult-team |
Claude-only | Dispatch 2–4 specialists in parallel + tech-lead synthesis |
setup-team |
/setup-team |
Bootstrap project-specific agents from templates |
| Template | Purpose |
|---|---|
backend-expert |
Implements routes, services, models |
frontend-expert |
Builds pages, components, forms |
dba-expert |
Schema, migrations, query optimization |
devops-expert |
Docker, CI/CD, infrastructure config |
security-reviewer |
Data isolation, auth, injection audits |
Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"my-plugins": {
"source": {
"source": "github",
"repo": "sofien-chaouch/claude-dev-team"
}
}
}
}claude plugin install dev-team@my-pluginsThat's it. All 6 advisory agents and 3 skills are now available in every project on this device.
Just mention the agent in your request:
Ask code-reviewer to check this new endpoint for anti-patterns.
Ask performance-engineer if this query has N+1 issues.
Ask product-manager to write a user story for the notification feature.
/brainstorm-feature add CSV export to the leads dashboard
/setup-team
This asks about your stack and generates customized action agents in .claude/agents/ for the current project.
Claude invokes consult-team when a question spans multiple domains. The flow:
- Dispatches 2–4 relevant specialists in parallel
- Passes all responses to
tech-lead tech-leadproduces a TECHNICAL DECISION + IMPLEMENTATION PLAN
- Add
extraKnownMarketplacesto~/.claude/settings.json(see Step 1 above) - Run
claude plugin install dev-team@my-plugins - In a new project, run
/setup-teamto generate project-specific action agents
claude-dev-team/
.claude-plugin/
plugin.json ← plugin manifest
agents/
code-reviewer.md ← global advisory agents
qa-expert.md
performance-engineer.md
tech-writer.md
product-manager.md
tech-lead.md
skills/
brainstorm-feature/
SKILL.md
consult-team/
SKILL.md
setup-team/
SKILL.md
templates/
agents/
backend-expert.md ← project-specific action agent templates
frontend-expert.md
dba-expert.md
devops-expert.md
security-reviewer.md
README.md
