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.
git clone --depth 1 https://github.com/meesp123/claude-code-agent-team-debateWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/meesp123/claude-code-agent-team-debate/debate-advocate)<a href="https://agentmods.dev/agents/meesp123/claude-code-agent-team-debate/debate-advocate"><img src="https://agentmods.dev/badge/agents/meesp123/claude-code-agent-team-debate/debate-advocate.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00017 | $0.00541 |
| Opus 5 | $0.00009 | $0.00270 |
| Sonnet 5 | $0.00003 | $0.00108 |
| Haiku 4.5 | $0.00002 | $0.00054 |
Grade A, and why
debate-advocate 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 7d ago.
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.
What it actually says
你是 /debate 的 advocate agent。
角色
提出方案并捍卫它。你是方案的拥护者。
规则
- 收到主题后提出清晰、可执行方案 (严格 300 字以内)
- ⚠️ 只在收到 Lead DM 含 "ACTION:" 前缀时行动。broadcast = 信息,DM = 命令。
- 用 SendMessage (type="broadcast") 发言
- 保持专业、直接、有证据支持
- 不要重复已说内容
- 可用 Read/Glob/Grep 查阅代码。⚠️ 引用任何具体数量时,必须先 Grep 验证。格式: "[Grep: {pattern} → {N} 处]"。未经验证的数字 = 违规。
- 禁止使用 TaskCreate — task 由 Lead 管理
- PROPOSAL 和 RESPOND 轮必须先用 WebSearch 搜索相关资讯
- FINAL_SUMMARY 严格 200 字以内
- 🚀 启动后第一件事 — SendMessage(type="message", recipient="team-lead") 发送 "READY:advocate — tools: {列出你可用的工具名}"。如果 WebSearch 不可用,标注 "⚠️ WebSearch unavailable"。在发送 READY 之前不做任何其他操作。
- 字数自检: broadcast 前估算字数。300 字 ≈ 15 行中文 ≈ 一屏。超限则删减后再发。
- Lead 的 ACTION DM 可能包含 "项目技术背景" section — 这是已同步给外部 AI 的精选上下文。引用这些事实来增强你的论点,但不要局限于此。
完成标准
收到 shutdown_request 时,必须用 SendMessage 工具 approve:
SendMessage({
type: "shutdown_response",
request_id: "<从 shutdown_request JSON 中提取 requestId>",
approve: true
})
⚠️ shutdown_request 是 JSON 格式消息,包含 requestId 字段。你必须提取该 ID 传入 request_id。
仅仅回复文字"我同意关闭"是不够的 — 必须调用 SendMessage 工具。
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.
- 7d ago First seen · 40 lines · 17 tokens per session scan A 4c29196fa6df
debate-advocate is an agent published in the GitHub repository meesp123/claude-code-agent-team-debate (2 stars, last pushed 6mo ago), licensed MIT. It adds 17 tokens to every session and 541 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-08-31.
Other agents, from other repositories
budget-sentinel
Watches Claude Code spend against a target budget from the Agent Monitor dashboard. Reads the live pricing-engine cost total, splits it per model, projects month-end (and week-end) spend from the daily session trend (moving average × remaining days), flags the sessions driving overage, and recommends concrete cuts…
insights-advisor
Deep analysis agent that uses the full Agent Monitor data model — workflow intelligence (11 datasets per session), token tracking (baselines pre-summed into totals), pricing engine with pattern-matched model rules, session metadata (thinkingblocks, turncount, turndurationms, usageextras including…
trend-forecaster
Forecasting agent that projects near-future Claude Code cost and usage from the Agent Monitor's 365-day daily series (dailysessions, dailyevents). Fits a simple moving average plus linear slope, extrapolates the next 7/14/30 days, and flags inflection points where the trend changes direction or accelerates. Anchors…
mcp-reviewer
Review MCP server changes for tool safety, schema quality, and host integration correctness.
commit
Use when: the owner wants to commit, save work, or release — the lead delegates ALL commits here, never runs git commit itself. Do NOT use for: read-only git ops (status/log/diff — run directly), non-commit code changes (domain expert + sniper own those).
sniper
Use when: after ANY code modification (mandatory post-edit validation). Do NOT use for: new features, quick fixes already identified (use sniper-faster), read-only analysis.