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/raven-scout/scout-plugin/scout-setupgit clone --depth 1 https://github.com/Raven-Scout/scout-pluginWrote 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/commands/raven-scout/scout-plugin/scout-setup)<a href="https://agentmods.dev/commands/raven-scout/scout-plugin/scout-setup"><img src="https://agentmods.dev/badge/commands/raven-scout/scout-plugin/scout-setup.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 | $0.00041 | $0.02319 |
| Opus 5 | $0.00020 | $0.01159 |
| Sonnet 5 | $0.00008 | $0.00464 |
| Haiku 4.5 | $0.00004 | $0.00232 |
Grade C, and why
scout-setup scanned grade C with 1 finding 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 5d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf ~/Scout How it starts
The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scout Setup Wizard (greenfield only)
You are the Scout setup wizard. Scout is an autonomous knowledge management system that monitors connected tools (Slack, Calendar, Linear, GitHub, etc.), maintains a knowledge base, and delivers daily action items via scheduled Claude Code sessions.
This command is for fresh installs only. If a vault already exists, refuse and tell the user to run /scout-update.
Step 0: Pre-flight (refuse if vault detected; install venv if missing)
Run this single bash command:
bash <<'EOF'
set -e
test -f "$HOME/Scout/scout-config.yaml" && echo "VAULT_EXISTS" && exit 0
test -d "$HOME/Scout/.scout-state" && echo "VAULT_EXISTS" && exit 0
ls "$HOME/Library/LaunchAgents/com.scout."*.plist 2>/dev/null && echo "ORPHAN_JOBS" && exit 0
echo "FRESH"
EOF
- If output is
VAULT_EXISTS: tell the user "An existing Scout vault was detected at~/Scout/. To upgrade, run/scout-update. To start over, see the manual reset snippet in the README." Stop here. - If output is
ORPHAN_JOBS: tell the user "Found launchd jobs but no vault — half-reset state. Run this to clean up:" then show the Manual Reset snippet. Stop here. - If output is
FRESH: continue.
Locate the venv that belongs to THIS plugin checkout. Use $CLAUDE_PLUGIN_ROOT/.venv/bin/scoutctl — that path resolves correctly regardless of install method (marketplace, LOCAL_PLUGINS, canonical git clone). Belt-and-suspenders: fall back to ~/scout-plugin if $CLAUDE_PLUGIN_ROOT is somehow unset:
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$HOME/scout-plugin}"
SCOUTCTL="$PLUGIN_ROOT/.venv/bin/scoutctl"
test -x "$SCOUTCTL" && echo "VENV_OK" || echo "VENV_MISSING"
Use "$SCOUTCTL" (and $PLUGIN_ROOT) in every subsequent invocation.
-
If
VENV_MISSING: tell the user "Engine venv missing. Installing now (this typically takes 30–60 seconds)..." then run, with explicit 5-minute timeout:bash "$PLUGIN_ROOT/scripts/install-venv.sh"(Use the Bash tool with
timeout: 300000.) The script reads its own location viaBASH_SOURCE, so it creates the venv inside whatever plugin tree it's called from — no path assumptions. If install fails: stop and instruct the user to run that exact command manually, then retry/scout-setup.
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.
- 5d ago First seen · 209 lines · 41 tokens per session scan C 82dc7a2fc3a2
scout-setup is a command published in the GitHub repository Raven-Scout/scout-plugin (15 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 2,319 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
statusline
Show the governor fleet in your Claude Code statusline. Explicit, opt-in, and chains — it never replaces an existing statusline.
inbox
Check beadle's email inbox.
orbit-run
Run a task through the Orbit loop (read→plan→act→evaluate→update→decide) instead of free-editing.
contacts
Manage your address book.
schedules
Manage scheduled recurring tasks.
onboarding
Guided first run — from a fresh project to a working, queryable wiki in five short steps. Safe to re-run; resumes from wherever you are.