Transform Claude Code into a multi-agent orchestrated system with verification gates.
- Specialized Agent Delegation: Route tasks to expert agents (Riko, Senku, Loid, Lawliet, Alphonse)
- Mandatory Verification Gates: Stop hooks ensure tests pass before task completion
- Domain Expertise: Skills provide guidance on task classification and verification
- Cost-Aware Model Selection: Opus for exploration/planning, Sonnet for execution/review/verification
Enable the plugin by adding to your Claude Code configuration:
claude --plugin-dir /path/to/agent-flowGather comprehensive codebase context using parallel exploration agents. Creates a reusable context file that accelerates subsequent orchestration tasks.
/deep-dive # Full codebase exploration
/deep-dive --focus=src/auth # Focus on specific path
/deep-dive --refresh # Refresh existing context
Output: .claude/deep-dive.local.md - Ephemeral, session-scoped context file
Workflow:
- Fire 5+ parallel Riko agents exploring different aspects (structure, conventions, anti-patterns, etc.)
- Senku synthesizes findings into unified context
- Compile output to structured markdown
Integration with /orchestrate:
/orchestrate --use-deep-dive Add user authentication
When used with --use-deep-dive, orchestration leverages existing context to skip redundant exploration.
Coordinate complex multi-step tasks through the agent system. This command delegates to specialist agents in sequence:
- Riko explores the codebase for context
- Senku creates an implementation plan
- Loid implements the changes
- Lawliet reviews code quality
- Alphonse runs verification gates
/orchestrate Add user authentication with JWT tokens
/orchestrate --use-deep-dive Add user profile page # Use existing deep-dive context
Arguments:
--use-deep-dive: Use existing deep-dive context for accelerated exploration
Note: Planning and verification are handled by agents (Senku, Alphonse) within the orchestration workflow rather than as standalone commands. This prevents responsibility conflicts in multi-agent coordination.
Execute complex tasks with parallel review and verification using Agent Teams. This command follows the same workflow as /orchestrate but runs Lawliet (review) and Alphonse (verification) concurrently after implementation, reducing wall-clock time by 30-40%.
/team-orchestrate Add user authentication with JWT tokens
/team-orchestrate --use-deep-dive Add user profile page
/team-orchestrate --force-sequential Add feature # Fall back to sequential mode
Arguments:
--use-deep-dive: Use existing deep-dive context for accelerated exploration--force-sequential: Force sequential execution instead of parallel review+verification
Workflow:
- Riko explores the codebase (sequential)
- Senku creates an implementation plan (sequential)
- Loid implements the changes (sequential)
- Lawliet + Alphonse run in parallel (team mode)
- Results merged and processed
| Agent | Model | Purpose |
|---|---|---|
| Senku | Opus | Creates detailed implementation strategies |
| Riko | Opus | Fast codebase exploration |
| Loid | Sonnet | Implements code changes |
| Lawliet | Sonnet | Code quality assurance |
| Alphonse | Sonnet | Runs tests and validation |
Analyzes user prompts for task clarity:
- Evaluates if the request is well-defined
- Applies prompt refinement when needed
- Transforms vague requests into structured format (Goal, Description, Actions)
Provides delegation guidance: Reminds agents about proper delegation patterns when writing files.
Allowed silently: Writing to .senku/ directory (planning files)
Allowed with reminder: Writing to other files (shows delegation guidance message)
Note: Agent tool restrictions are the primary enforcement mechanism - Riko, Senku, and Lawliet do not have Write/Edit tools in their definitions. This hook provides helpful context rather than blocking.
Validates file writes before execution to prevent:
- Path traversal attacks (
..in paths) - Writes to sensitive files (
.env, credentials, keys) - Writes to system paths (
/etc,/usr,/bin)
Context-aware verification guidance: After delegation via Task tool, provides agent-specific verification guidance.
Verification levels by agent type:
- Riko (exploration): Accept findings, no code verification needed
- Senku (planning): Review plan completeness
- Loid (implementation): Full verification required (read files, run tests, check types)
- Lawliet (review): Consider feedback
- Alphonse (verification): Check test results
This ensures appropriate verification without unnecessary friction for non-implementation tasks.
Validates file writes after execution using the same guardrails as PreToolUse.
Runs before task completion to verify:
Node.js Projects:
- Tests:
npm test(whenpackage.jsonhas test script) - TypeScript:
npx tsc --noEmit(whentsconfig.jsonexists)
Python Projects:
- Tests: pytest detection priority chain:
- Custom command (from
.claude/test-commandfile) uv run pytest(whenuv.lockpresent)- Global
pytest(whentests/directory exists)
- Custom command (from
- Import/collection errors:
ImportError,ModuleNotFoundError,SyntaxErrortreated as fatal - Known failures: Only blocks on NEW failures not in
.claude/known-test-failureslist - Type checking:
mypy .(requires bothmypycommand andmypy.inifile)
Configuration Files:
| File | Purpose |
|---|---|
.claude/skip-test-verification |
Bypass all test verification (first line used as reason) |
.claude/known-test-failures |
List of expected failures (one test name per line) |
.claude/test-command |
Custom test command to run (first non-comment line used) |
Detects project type and sets environment:
- Project type (nodejs, python, rust, go, java)
- Test framework (jest, pytest, cargo-test, etc.)
- Available tooling (TypeScript, ESLint, Ruff)
Validates teammate output quality using role-based criteria:
- Input: JSON from stdin with
teammate_roleandteammate_outputfields - Reviewer (Lawliet): Must contain verdict (APPROVED/NEEDS_CHANGES/BLOCKED) + static analysis evidence
- Verifier (Alphonse): Must contain at least 2 verification gate results + command output
- Other roles: Approved without specific checks
- Exit codes: 0=approve, 2=block
Validates task completion messages for concrete evidence:
- Input: JSON from stdin with
task_statusandcompletion_messagefields - Validation: Only for complete/done/finished tasks
- Evidence checks: Message length >= 20 chars, file mentions, verification indicators, concrete actions, results/metrics
- Exit codes: 0=approve, 2=block
Skills are domain expertise modules that provide behavioral patterns and best practices. Each skill has an owner agent responsible for embodying it and consumer agents that reference it.
For the complete skill-agent mapping, see skills/skill-agent-mapping/SKILL.md.
| Skill | Owner | Consumers |
|---|---|---|
| exploration-strategy | Riko | Senku, Loid |
| task-classification | Senku | Riko, Orchestrator |
| prompt-refinement | Senku | Orchestrator |
| verification-gates | Alphonse | Loid, Lawliet |
| agent-behavior-constraints | System | All |
| team-decision | Senku | Orchestrator |
Guidance on routing tasks to appropriate agents:
- Trivial → Direct handling
- Exploratory → Explorer agent
- Implementation → Executor + Verifier
- Complex → Orchestrator
Mandatory validation patterns:
- Pre-commit gates (type check, lint)
- Pre-complete gates (tests, build)
- Override rules (when skipping is allowed)
Parallel context gathering and search stop rules.
Ambiguous request clarification and structured task specification.
Model routing, tool access permissions, and universal behavioral guardrails.
Never trust unverified output. Every significant change requires mandatory testing, linting, and type-checking before acceptance.
Orchestrators delegate work rather than implementing directly. Specialists handle domain-specific tasks.
- Opus: Strategic/planning tasks - deep reasoning (Riko, Senku)
- Sonnet: Execution/verification tasks - speed (Loid, Lawliet, Alphonse)
For detailed documentation, see the docs/ directory:
- Architecture: Overview, Team Orchestration
- Concepts: Parallel Safety
- Guides: Using Team-Orchestrate
- Reference: Commands, Hooks, Skills, State Files
See also CHANGELOG.md for version history.
MIT