ワンクリックで
agent-teams
Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Intelligent routing between Bravo and Codex — decides when to delegate tasks to Codex vs handle internally
Secrets and authentication management. Ensures API keys, tokens, and credentials are NEVER exposed in plain text. Use when handling any credential, API key, or sensitive configuration.
Use when CC asks to create a new agent, scaffold a new agent repo, or clone Bravo's architecture for a new domain (client agent, sibling agent, specialized agent). Generates a new AI-agent repo from templates, wires it into C_SUITE_ARCHITECTURE.md and brain/APP_REGISTRY.md, preserves the V5.6 outbound chokepoint, and gives the new agent a doctor command on day one.
Claims-based access control for multi-agent coordination. Defines what each agent can read, write, execute, and spawn. Enforces least-privilege: agents only access what they need. Use when: spawning agents, multi-agent tasks, security-sensitive operations. Skip when: single-agent inline work, trivial tasks.
Build and maintain product-grade agent infrastructure: onboarding diagnostics, runtime home, packaging, skill lifecycle, tool manifests, and agent scaffolds.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
| name | agent-teams |
| description | Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks |
| tags | ["skill","orchestration","agent-teams"] |
| triggers | ["agent teams","use agent teams","run agent teams"] |
| tier | standard |
Enabled via
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1in~/.claude/settings.json. Windows constraint:teammateMode: "in-process"only — no subprocess spawning.
Agent Teams are worth the coordination overhead only when:
Do NOT use for:
Natural language trigger — no slash command needed. Just describe the parallel need:
"Spawn a teammate using the security-reviewer agent to audit the auth flow while I implement the new endpoint."
"Run the code-reviewer and debugger agents in parallel on this PR."
Claude Code will automatically spawn the teammate agent with the appropriate definition from .claude/agents/.
.claude/agents/)| File | Agent | Model | Best For |
|---|---|---|---|
security-reviewer.md | security-reviewer | sonnet | Auth flaws, RLS gaps, credential exposure, OWASP checks |
researcher.md | researcher | sonnet | Multi-source research, doc lookup, competitive analysis |
code-reviewer.md | code-reviewer | sonnet | Two-pass structural + adversarial code review |
content-writer.md | content-writer | opus | Platform content in CC's voice (X, LinkedIn, IG, TikTok) |
debugger.md | debugger | sonnet | Root-cause debugging, 5 Whys, bisect regressions |
architect.md | architect | opus | System design, DB schema, API contracts, ADRs |
Bravo writes a scoped task to a temp file → teammate reads it → teammate writes output to a result file → Bravo reads result.
tmp/teammate-task-{agent}-{timestamp}.md ← Bravo writes the task
tmp/teammate-result-{agent}-{timestamp}.md ← Teammate writes findings
For longer parallel runs, use .agents/plans/active-{task}.md as a shared task list both agents can read. Bravo owns writes; teammate reads only.
Bravo: Implements the feature
Teammate: code-reviewer audits existing changes in parallel
Result: Review ready when implementation is done — no waiting
Bravo: Ships the feature (test → changelog → PR)
Teammate: security-reviewer audits auth surface in parallel
Result: Security sign-off attached to the PR
Bravo: Researches competitive landscape (researcher agent)
Teammate: architect drafts system design while research runs
Result: Design informed by findings, both complete simultaneously
Bravo: Implements short-term workaround to unblock CC
Teammate: debugger traces root cause in parallel
Result: Fix applied now, root cause known for proper patch later
teammateMode: "in-process" — teammates share the same process, no subprocess isolationisolation: worktree but this is advisory — use with care on shared files)This skill extends skills/task-routing/SKILL.md. When task routing classifies a task as COMPLEX or ARCHITECTURAL, consider splitting across teammates:
| Routing Tier | Team Configuration |
|---|---|
| MODERATE | Optional: spawn code-reviewer in parallel |
| COMPLEX | Recommended: Bravo (frontend/orchestration) + teammate (backend/security) |
| ARCHITECTURAL | Recommended: architect teammate drafts spec, Bravo implements |