scout-status

scout-status is a command for Claude Code from Raven-Scout/scout-plugin. It costs 28 tokens per session (3,373 once invoked), scanned A, original, MIT.

A command that displays the current state of a Scout installation, including its settings, recent runs, knowledge-base health, pending proposals, and wishlist.

In plain words
What is it for?
Use it to locate and read Scout’s configuration, inspect enabled connectors and schedules, review recent activity and pending items, and identify whether setup is needed.
Why use it?
It gathers installation checks into one view and clearly reports when Scout is not installed.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable. Also seen: positional $N argument.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/foo/old/.venv/bin/scoutctl.

Part of the scout plugin — 4 skills, 5 commands, 1 hook shipped together

Good fit Use it to locate and read Scout’s configuration, inspect enabled connectors and schedules, review recent activity and pending items, and identify whether setup is needed.

Compare 6 commands from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add Raven-Scout/scout-plugin
Claude Code
/plugin install scout

Made for: Claude Code.

Or install scout, the plugin that ships this one along with the rest of its 4 skills, 5 commands, 1 hook.

Wrote 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.

agentmods badge for scout-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/raven-scout/scout-plugin/scout-status.svg)](https://agentmods.dev/commands/raven-scout/scout-plugin/scout-status)
Your own site
<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>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,373 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00028 $0.03373
Opus 5 $0.00014 $0.01687
Sonnet 5 $0.00006 $0.00675
Haiku 4.5 $0.00003 $0.00337

Measured 8d ago against content hash 0608aa3c74f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

commands/scout-status.md · 437 lines

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:

  1. The current working directory (./scout-config.yaml)
  2. ~/Scout/scout-config.yaml
  3. ~/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_nameINSTANCE_NAME
  • user.nameUSER_NAME
  • user.emailUSER_EMAIL
  • connectors block → CONNECTORS (the map of service → true/false)
  • schedule.briefingBRIEFING_TIME
  • schedule.consolidationCONSOLIDATION_TIMES
  • schedule.dreamingDREAMING_TIMES
  • platformPLATFORM
  • scout_dirSCOUT_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:**

Read the full file on GitHub · 437 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. 8d ago First seen · 437 lines · 28 tokens per session scan A 0608aa3c74f4

Subscribe to this mod's changes

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.