Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Raven-Scout/scout-plugin/plugin install scoutWrote 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-status)<a href="https://agentmods.dev/commands/raven-scout/scout-plugin/scout-status"><img src="https://agentmods.dev/badge/commands/raven-scout/scout-plugin/scout-status.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.00028 | $0.03373 |
| Opus 5 | $0.00014 | $0.01687 |
| Sonnet 5 | $0.00006 | $0.00675 |
| Haiku 4.5 | $0.00003 | $0.00337 |
Grade A, and why
scout-status 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 437 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scout Status Dashboard
You are displaying a status dashboard for the user's Scout installation. Follow each section below in order. Present the final output as a clean, readable dashboard — not as a series of intermediate steps.
Step 1: Locate the Scout Config
Check for scout-config.yaml in these locations, in order:
- The current working directory (
./scout-config.yaml) ~/Scout/scout-config.yaml~/scout/scout-config.yaml
for f in "./scout-config.yaml" "$HOME/Scout/scout-config.yaml" "$HOME/scout/scout-config.yaml"; do
if [ -f "$f" ]; then echo "FOUND:$f"; break; fi
done
If no config is found:
Tell the user:
No Scout installation found. Run `/scout-setup` to create one.
Stop here. Do not proceed with the dashboard.
If found: note the path as SCOUT_CONFIG and derive SCOUT_DIR as its parent directory. Read the config file, then continue.
Step 2: Parse the Config
From the YAML config, extract:
instance_name→INSTANCE_NAMEuser.name→USER_NAMEuser.email→USER_EMAILconnectorsblock →CONNECTORS(the map of service → true/false)schedule.briefing→BRIEFING_TIMEschedule.consolidation→CONSOLIDATION_TIMESschedule.dreaming→DREAMING_TIMESplatform→PLATFORMscout_dir→SCOUT_DIR(use this if present; otherwise use the parent directory of the config file)
Step 3: Gather Data
Run all of the following data-gathering steps before composing the dashboard output.
3a. Last Runs (git log)
git -C "SCOUT_DIR" log --oneline -10
Collect the 10 most recent commit messages. Identify the most recent commit that mentions "briefing", "consolidation", "dreaming", "research", "work", and "meta-review" respectively (case-insensitive match on the commit message).
3b. KB Health
find "SCOUT_DIR/knowledge-base" -type f -name "*.md" | sort
For each file found, read it and look for a line matching either:
**Last verified:****Last updated:**
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.
- 8d ago First seen · 437 lines · 28 tokens per session scan A 0608aa3c74f4
scout-status is a command published in the GitHub repository Raven-Scout/scout-plugin (15 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 3,373 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-30.
Other commands, from other repositories
orbit-run
Run a task through the Orbit loop (read→plan→act→evaluate→update→decide) instead of free-editing.
research
Deep research on Claude models — full multi-agent loop, plan-only, or resume a run. Persists cited evidence to runs/ /.
ccc-orchestrate
Sequential and tmux/worktree orchestration guidance for multi-agent workflows.
statusline
Show the governor fleet in your Claude Code statusline. Explicit, opt-in, and chains — it never replaces an existing statusline.
standup
Show a daily standup summary with completed, in-progress, and blocked tasks across all active epics.
complete
Signal that a skill's work is complete. Triggers downstream subscriptions with "when": "complete" timing. Automatically invoked — do not run manually.