stats

A command procedure for refreshing or checking published facts and figures across the StandardGraph GitHub repository and the walkmakewalk portfolio using the live database.

In plain words
What is it for?
Use it to audit database-derived numbers and update the two named public surfaces so their published statistics match.
Why use it?
It reduces the risk that public counts, measurements, or other claims become inconsistent with the underlying data.

Command for Claude Code

Install

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.

agentmods
npx agentmods add commands/swoopeagle/standardgraph/stats
Clone the repo
git clone --depth 1 https://github.com/swoopeagle/standardgraph

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,298 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00000 $0.01298
Opus 5 $0.00000 $0.00649
Sonnet 5 $0.00000 $0.00260
Haiku 4.5 $0.00000 $0.00130

Measured 2d ago against content hash 7f9cdc631487, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

stats scanned grade A 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 2d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

`curl -s https://walkmakewalk.com/work/standardgraph.html | grep -o "[0-9]\{3\},[0-9]\{3\}"`.
.claude/commands/stats.md · 75 lines

How it starts

The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Refresh (or audit) every published fact and figure across BOTH public surfaces — the StandardGraph GitHub repo and the walkmakewalk portfolio — so they match the live database.

1. Gather the authoritative numbers

python3 - <<'PY'
import sqlite3, os
c=sqlite3.connect(os.path.expanduser("~/.standardgraph/common_core.db"))
def q(s): return c.execute(s).fetchone()[0]
std   = q("SELECT COUNT(*) FROM standards")
sysN  = q("SELECT COUNT(DISTINCT system) FROM standards")
xw    = q("SELECT COUNT(*) FROM crosswalk_mappings")
scored= q("SELECT COUNT(*) FROM crosswalk_mappings WHERE notes LIKE '%[LLM score%'")
flagged=q("SELECT COUNT(*) FROM crosswalk_mappings WHERE flagged_for_review=1")
direct= q("SELECT COUNT(*) FROM crosswalk_mappings WHERE notes LIKE '%direct_family%'")
rel   = q("SELECT COUNT(*) FROM standard_relationships")
subj  = q("SELECT COUNT(DISTINCT subject) FROM standards")
size  = os.path.getsize(os.path.expanduser("~/.standardgraph/common_core.db"))/1073741824
print(f"standards      = {std:,}      (display as '{std//1000}k+' or exact)")
print(f"systems        = {sysN}")
print(f"subjects       = {subj}")
print(f"crosswalks     = {xw:,}")
print(f"scored         = {scored:,}   ({100*scored/xw:.0f}% of crosswalks)")
print(f"flagged        = {flagged:,}")
print(f"direct_family  = {direct:,}")
print(f"relationships  = {rel:,}      (display as '{rel/1e6:.1f}M')")
print(f"db_size_gb     = {size:.2f}   (display as '~{size:.1f} GB')")
# per-region coverage counts used on the landing-page cards
for label, clause in [("US","system IN ('ccss','ccss-ela','ngss','c3','csta') OR system GLOB '[a-z][a-z]' OR system LIKE '%-sci' OR system LIKE '%-ela' OR system LIKE '%-ss' OR system LIKE '%-cs' OR system LIKE 'ap-%'"),
                       ("Canada","system LIKE 'ca-%'"),("UK","system IN ('uk-nc','uk-aqa','gb-sco')")]:
    print(f"coverage[{label}] = {q(f'SELECT COUNT(*) FROM standards WHERE {clause}'):,}")
c.close()
PY

Formatting rules:

  • "N+ standards" displays round DOWN to nearest thousand (175,738 → "175,000+"). Exact stat blocks use the full number.
  • DB size: one decimal GB (~2.1 GB).
  • Relationships: one decimal million (3.8M).
  • Scored %: whole number.

Read the full file on GitHub · 75 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. 2d ago First seen · 75 lines · 0 tokens per session scan A 7f9cdc631487

Subscribe to this mod's changes

stats is a command published in the GitHub repository swoopeagle/standardgraph (5 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,298 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other commands, from other repositories

setup-elevenlabs.es

Command "setup-elevenlabs.es" from minicoohei/ai-agent-camp, covering configuración de la api de elevenlabs, step 0: verificar el progreso de configuración, lo que hará en esta sesión, verificación de preparación and step 1: abrir elevenlabs en el navegador.

minicoohei/ai-agent-camp · 2 tokens

setup-elevenlabs

Command "setup-elevenlabs" from minicoohei/ai-agent-camp, covering elevenlabs api セットアップ, step 0: セットアップ進捗の確認, このセッションでやること, 準備チェック and step 1: ブラウザでelevenlabsを開く.

minicoohei/ai-agent-camp · 2 tokens

setup-github

Command "setup-github" from minicoohei/ai-agent-camp, covering github アカウント設定とリポジトリ作成, step 0: セットアップ進捗の確認, このセッションでやること, セッション開始前の確認 and step 1: github アカウントの確認.

minicoohei/ai-agent-camp · 2 tokens

setup-bigquery.en

Command "setup-bigquery.en" from minicoohei/ai-agent-camp, covering bigquery / gcp authentication setup, step 0: check setup progress, what you'll do in this session, readiness check and step 1: install gcloud cli.

minicoohei/ai-agent-camp · 2 tokens

setup-bigquery.es

Command "setup-bigquery.es" from minicoohei/ai-agent-camp, covering configuración de autenticación bigquery / gcp, step 0: verificar el progreso de configuración, lo que hará en esta sesión, verificación de preparación and step 1: instalación de gcloud cli.

minicoohei/ai-agent-camp · 2 tokens

setup-bigquery

Command "setup-bigquery" from minicoohei/ai-agent-camp, covering bigquery / gcp 認証セットアップ, step 0: セットアップ進捗の確認, このセッションでやること, 準備チェック and step 1: gcloud cli のインストール.

minicoohei/ai-agent-camp · 2 tokens