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.
npx agentmods add commands/prebid/salesagent/teamgit clone --depth 1 https://github.com/prebid/salesagentWhat 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.
| Model | Per session | Once 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 |
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.
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 primitiverun_in_background: true— so all executors run concurrently- NO
team_name/ NOTeamCreate. Combiningteam_name(theCLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSpath) withisolation: "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 clobberingsrc/app.py, a tree-widegit stashswallowing a sibling's uncommitted files).team_nameis 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.
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.
- yesterday First seen · 203 lines · 12 tokens per session scan A 52ca287a22ef
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.
Other commands, from other repositories
claude-flow-swarm
Coordinate multi-agent swarms for complex tasks.
bootstrap
PACT session-start ritual — identify the session team (platform-provisioned), secretary spawn, paused-state surface, bootstrap marker.
ox-session-review
Command "ox-session-review" from sageox/ox, covering failure-mode watch-list (read first), from the ledger root. should print 0, phase 1 — scan & score (read-only), quality buckets (first match wins) and removal candidates.
add-agent
引导新增一个 Agent 适配器。用法 /add-agent.
handoff
Package current state for the next agent.
xdo
Direct development by the Main Agent.