show

show is a command for Claude Code from AshtonYoon/claude-config-dashboard. It costs 57 tokens per session (375 once invoked), scanned B, original, MIT.

A command that starts a local web dashboard for viewing Claude configuration. It shows global settings and items found only in the current project's .claude folder, and lets you open listed files in the default application.

In plain words
What is it for?
Run it to compare project and global MCP servers, skills, commands, hooks, and rules. The dashboard is available at http://localhost:9876 while its local server is running.
Why use it?
It provides a visual way to inspect configuration instead of navigating folders and files manually.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Part of the claude-config-dashboard plugin — 2 commands shipped together

Good fit Run it to compare project and global MCP servers, skills, commands, hooks, and rules. The dashboard is available at http://localhost:9876 while its local server is running.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/ashtonyoon/claude-config-dashboard/show
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.

Clone the repo
git clone --depth 1 https://github.com/AshtonYoon/claude-config-dashboard

Made for: Claude Code.

Or install claude-config-dashboard, the plugin that ships this one along with the rest of its 2 commands.

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 show

README.md
[![agentmods](https://agentmods.dev/badge/commands/ashtonyoon/claude-config-dashboard/show/github.svg)](https://agentmods.dev/commands/ashtonyoon/claude-config-dashboard/show)
Your own site
<a href="https://agentmods.dev/commands/ashtonyoon/claude-config-dashboard/show"><img src="https://agentmods.dev/badge/commands/ashtonyoon/claude-config-dashboard/show/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for show

Your own site · 80×15
<a href="https://agentmods.dev/commands/ashtonyoon/claude-config-dashboard/show"><img src="https://agentmods.dev/badge/commands/ashtonyoon/claude-config-dashboard/show.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 375 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00057 $0.00375
Opus 5 $0.00028 $0.00187
Sonnet 5 $0.00011 $0.00075
Haiku 4.5 $0.00006 $0.00038

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

Security

Grade B, and why

show scanned grade B 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 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

command -v claude-config-dashboard || command -v uvx >/dev/null && echo "uvx claude-config-dashboard" || find "$HOME/.claude/plugins/cache/claude-config-dashboard" -name "dashboard.py" 2>/dev/null | sort -r | head -1
commands/show.md · 39 lines

What it actually says

Launch the Claude Config Dashboard web server and open it in the browser.

Steps

  1. Check if the server is already running on port 9876:

    lsof -ti :9876
    

    If output is non-empty, the server is already running — skip to step 4.

  2. Pick a launcher, first available wins:

    command -v claude-config-dashboard || command -v uvx >/dev/null && echo "uvx claude-config-dashboard" || find "$HOME/.claude/plugins/cache/claude-config-dashboard" -name "dashboard.py" 2>/dev/null | sort -r | head -1
    
    • Installed console script: claude-config-dashboard
    • uvx (no install needed): uvx claude-config-dashboard
    • Plugin cache fallback: python3 "<found dashboard.py path>"
  3. Start the server in the background using the launcher from step 2:

    <launcher> --no-open &
    

    Wait 1 second for it to start.

  4. Open the dashboard in the browser:

    open http://localhost:9876
    
  5. Tell the user:

    • Dashboard URL: http://localhost:9876
    • Clicking any file name opens it in the default app (editor, Finder, etc.)
    • To stop the server: kill $(lsof -ti :9876)
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 · 39 lines · 57 tokens per session scan B 4d212efc4b57

Subscribe to this mod's changes

show is a command published in the GitHub repository AshtonYoon/claude-config-dashboard (5 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 375 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.