Skip to content

AI Agent Team Guide

The @saas template ships with a 12-agent Claude Code team for automated development.

Agent Roster

AgentCommandRole
@spec-writer/athena:specFeature spec, OpenAPI-first design
@reviewer/athena:qa --review-onlyCode review + security audit
@qa/athena:qa --test-onlyTest execution + 80% coverage gate
@evaluator/athena:qa --eval-onlyIndependent acceptance evaluation
@best-practiceArchitecture + trade-off decisions
@debuggerErrors, failing tests (auto-delegated)
@deployer/athena:deploy7-gate deploy protocol
@memory-curator/athena:promoteExtract wisdom → Tier 0
@strategist/athena:planAudit, research, propose epics
@orchestrator/athena:batchParallel epic coordination
@designer/athena:designDesign tokens → React page
@dba/athena:dbaMigration review, schema design

Invocation

bash
# Full pipeline (one step at a time)
/athena:loop

# Full pipeline (auto-advance)
/athena:loop auto

# Parallel epics (max 4 concurrent)
/athena:batch auto

# Confidence-gated autopilot
/athena:autopilot

When to Use Each Agent

Building a new feature:

bash
/athena:spec "feature description"
/athena:implement
/athena:qa
/athena:pr

Diagnosing a bug:

@debugger — describe the error, share logs

Reviewing for production:

bash
/athena:qa --review-only   # security + code quality
/athena:deploy staging     # 7-gate pre-deploy check

Optimizing DB:

bash
/athena:dba inspect-migrations
/athena:dba lint

Effort Tiers

Pass --effort <tier> to scale depth vs. cost:

TierUse Case
quickRapid iteration, draft specs
standardNormal development (default)
thoroughPre-merge quality gate
ultraSecurity audit, critical-path review
bash
/athena:qa --effort ultra   # maximum review depth
/athena:spec --effort quick "small tweak"

Released under the MIT License.