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/uppinote20/claude-dashboard/updategit clone --depth 1 https://github.com/uppinote20/claude-dashboardWrote 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/uppinote20/claude-dashboard/update)<a href="https://agentmods.dev/commands/uppinote20/claude-dashboard/update"><img src="https://agentmods.dev/badge/commands/uppinote20/claude-dashboard/update.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.00011 | $0.01132 |
| Opus 5 | $0.00005 | $0.00566 |
| Sonnet 5 | $0.00002 | $0.00226 |
| Haiku 4.5 | $0.00001 | $0.00113 |
Grade A, and why
update 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 6d 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 — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Dashboard Update
Ensure statusLine points at the version-agnostic shim. Normally unnecessary — a
SessionStart hook does this automatically. Use it when hooks are disabled, or to
diagnose a status line that is not updating.
Task
-
Before making any changes, read the current
statusLine.commandvalue from${CLAUDE_CONFIG_DIR:-$HOME/.claude}/settings.json(if the file exists), so step 4 can report an actual before/after instead of guessing. -
Install or refresh the shim, then point settings.json at it. Resolves the newest installed version in
noderather than shelling out tosort -V, which is a GNU/BSD extension, not POSIX:
CFGDIR="${CLAUDE_CONFIG_DIR:-$HOME/.claude}"; CFGDIR="$CFGDIR" node -e '
const fs = require("fs");
const path = require("path");
const cfgDir = process.env.CFGDIR;
const cacheRoot = path.join(cfgDir, "plugins/cache/claude-dashboard/claude-dashboard");
let entries = [];
try {
entries = fs.readdirSync(cacheRoot, { withFileTypes: true });
} catch {}
const versions = entries
.filter((e) => e.isDirectory() && /^\d+\.\d+\.\d+$/.test(e.name))
.map((e) => e.name)
.filter((v) => fs.existsSync(path.join(cacheRoot, v, "scripts/statusline-shim.mjs")))
.sort((a, b) => {
const pa = a.split(".").map(Number);
const pb = b.split(".").map(Number);
return pa[0] - pb[0] || pa[1] - pb[1] || pa[2] - pb[2];
});
if (versions.length === 0) {
console.error("claude-dashboard is not installed in " + cfgDir);
process.exit(1);
}
const src = path.join(cacheRoot, versions[versions.length - 1], "scripts/statusline-shim.mjs");
const dataDir = path.join(cfgDir, "plugins/data/claude-dashboard-claude-dashboard");
fs.mkdirSync(dataDir, { recursive: true });
const dest = path.join(dataDir, "statusline.mjs");
fs.copyFileSync(src, dest);
const settingsPath = path.join(cfgDir, "settings.json");
const settings = fs.existsSync(settingsPath) ? JSON.parse(fs.readFileSync(settingsPath, "utf8")) : {};
const statusLine = settings.statusLine && typeof settings.statusLine === "object" ? settings.statusLine : {};
statusLine.type = "command";
statusLine.command = "node " + JSON.stringify(dest);
settings.statusLine = statusLine;
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
'
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.
- 6d ago First seen · 105 lines · 11 tokens per session scan A c84dc6286940
update is a command published in the GitHub repository uppinote20/claude-dashboard (564 stars, last pushed 13d ago), licensed MIT. It adds 11 tokens to every session and 1,132 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
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.