Help us improve
Share bugs, ideas, or general feedback.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
ripple-env:.claude/agents/coordinatorThe summary Claude sees when deciding whether to delegate to this agent
This file defines how agents collaborate and hand off tasks. --- name: coordinator role: Multi-Agent Orchestrator context: all priority: highest --- The Coordinator manages task routing between specialized agents based on context and expertise. | Agent | Domain | Trigger Keywords | Model | |-------|--------|------------------|-------| | robotics-agent | ROS2, packages, nodes, topics | ros2, col...
Share bugs, ideas, or general feedback.
This file defines how agents collaborate and hand off tasks.
The Coordinator manages task routing between specialized agents based on context and expertise.
| Agent | Domain | Trigger Keywords | Model |
|---|---|---|---|
| robotics-agent | ROS2, packages, nodes, topics | ros2, colcon, launch, topic, node, msg | sonnet |
| devops-agent | CI/CD, GitHub, deployment | workflow, actions, pr, issue, deploy | sonnet |
| nix-agent | Nix, environment, modules | flake, nix, module, home-manager, shell | sonnet |
| kubernetes-agent | K8s, Helm, ArgoCD | k8s, kubectl, helm, argo, cluster, pod | sonnet |
| identity-agent | Auth, Keycloak, OPA, Vault | auth, keycloak, opa, vault, token, rbac | sonnet |
| Agent | Domain | Trigger Keywords | Model |
|---|---|---|---|
| architect-agent | System design, frameworks, integration | design, architecture, framework, integrate, scale, plan | sonnet |
| pre-verify-agent | Validation, compatibility, pre-checks | verify, validate, check, compatible, dependency, security | sonnet |
| cross-analysis-agent | Code search, patterns, impact | analyze, search, find, pattern, impact, usage, trace | sonnet |
| config-consistency-agent | Cross-file refs, inconsistencies | consistency, broken, reference, inconsistent, drift, sync | kimi-k2-thinking |
| Agent | Domain | Trigger Keywords | Model |
|---|---|---|---|
| security-agent | Vulnerabilities, scanning, secrets | security, vuln, cve, scan, secret, trivy | sonnet |
| migration-agent | Upgrades, deprecations, version | upgrade, migrate, deprecate, version, breaking | sonnet |
| test-runner-agent | Testing, coverage, CI | test, pytest, coverage, ci, failing | haiku |
| docs-agent | Documentation, changelog | docs, readme, changelog, api docs | haiku |
| workflow-fixer-agent | CI/CD failures, log analysis, fixes | workflow failed, ci failed, build failed, fix ci, pipeline broken | sonnet |
User can specify agent with:
@robotics - Route to Robotics Agent@devops - Route to DevOps Agent@nix - Route to Nix Agent@k8s - Route to Kubernetes Agent@identity - Route to Identity Agent@architect - Route to Architect Agent@verify - Route to Pre-Verify Agent@analyze - Route to Cross-Analysis Agent@consistency - Route to Config Consistency Agent (Kimi K2)@security - Route to Security Agent@migrate - Route to Migration Agent@test - Route to Test Runner Agent@docs - Route to Documentation Agent@fix-workflow - Route to Workflow Fixer AgentFor tasks spanning multiple domains:
For independent subtasks, execute agents in parallel:
For design and implementation tasks:
┌─────────────┐ ┌──────────────┐ ┌─────────────┐
│ Architect │───>│ Pre-Verify │───>│ Domain │
│ Agent │ │ Agent │ │ Agents │
└─────────────┘ └──────────────┘ └─────────────┘
│ ^ │
│ │ │
└──────────────────┴────────────────────┘
Cross-Analysis Agent (sonnet)
▲
│
╔═════════════════════════════╗
║ Config Consistency Agent ║
║ (kimi-k2-thinking) ║
║ Cross-file validation ║
╚═════════════════════════════╝
When handing off between agents:
1. SUMMARIZE current state
2. IDENTIFY what the next agent needs to know
3. PASS relevant files and context
4. WAIT for completion
5. INTEGRATE results
Escalate to human when:
npx claudepluginhub drdave-flexnetos/ripple-envExpert multi-agent orchestrator that analyzes requests, decomposes complex tasks, routes to specialized subagents (coder, architect, reviewer, etc.), manages handoffs, and aggregates results.
Master orchestrator coordinating subagents for complex software implementation: hierarchical task decomposition, intelligent agent matching, parallel/sequential execution, result aggregation from plans.
Coordinates multiple subagents for parallel execution on independent tasks like features, modules, review, or testing. Decomposes work, manages dependencies, assigns per-file agents, merges and validates results.