team

Launch a coordinated agent team to work on parallel tasks.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/prebid/salesagent/team
Clone the repo
git clone --depth 1 https://github.com/prebid/salesagent

Made for: Claude Code.

Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,103 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00012 $0.02103
Opus 5 $0.00006 $0.01052
Sonnet 5 $0.00002 $0.00421
Haiku 4.5 $0.00001 $0.00210

Measured yesterday against content hash 52ca287a22ef, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

team scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/team.md · 203 lines

How it starts

The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Launch Agent Team: $ARGUMENTS

MANDATORY: Worktree-isolated executors (no team_name)

For any spawn that creates N ≥ 2 concurrent executors, EACH spawn MUST use:

  • subagent_type: "executor" (.claude/agents/executor.md)
  • isolation: "worktree" — the Claude Code harness primitive
  • run_in_background: true — so all executors run concurrently
  • NO team_name / NO TeamCreate. Combining team_name (the CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS path) with isolation: "worktree" is silently downgraded by the harness: the executor is routed to the team coordination context and runs on the shared main working copy instead of an isolated worktree. This was observed first-hand (parallel executors clobbering src/app.py, a tree-wide git stash swallowing a sibling's uncommitted files). team_name is prohibited for parallel execution.

Coordinate via the agentId returned by each spawn (SendMessage accepts the agentId as to) and the harness's automatic <task-notification> on completion. Do NOT use TeamCreate, TaskCreate, or SendMessage-by-name.

Solo spawns (N = 1) MAY run on the main working copy and skip isolation: "worktree".

Protocol

Step 0: Resolve the team-lead HEAD SHA (binding)

Before any spawn, from the main repo root:

git rev-parse HEAD

Capture the full 40-char SHA. The harness allocates each worktree's branch from the default branch tip, not from the team-lead's HEAD — so an executor's worktree can start on a stale base. Thread this SHA literally into every executor prompt; the executor resets to it on entry (see Step 2).

Step 1: Provision ONE shared Postgres for the wave

Worktree-isolated executors each have their own working copy but agent-db.sh derives its container name from .claude/skills (constant across worktrees), so per-executor agent-db instances collide. Instead the team-lead brings up ONE shared Postgres and threads its DATABASE_URL into every executor prompt. The integration_db fixture creates a unique database per test, so a single server is safe under concurrency.

Read the full file on GitHub · 203 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 203 lines · 12 tokens per session scan A 52ca287a22ef

Subscribe to this mod's changes

team is a command published in the GitHub repository prebid/salesagent (36 stars, last pushed yesterday), licensed Apache-2.0. It adds 12 tokens to every session and 2,103 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.