show-me

show-me is a skill for Claude Code from bendrucker/claude. It costs 48 tokens per session (825 once invoked), scanned A, original, MIT.

A visual explanation skill that represents a topic or software design with formats such as pseudocode, diagrams, file trees, and code signatures.

In plain words
What is it for?
It helps show call flows, component relationships, file organization, interfaces, diffs, and other technical designs.
Why use it?
It makes relationships and program structure easier to inspect than prose alone.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit It helps show call flows, component relationships, file organization, interfaces, diffs, and other technical designs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bendrucker/claude/show-me
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.

Any agent
npx skills add bendrucker/claude --skill show-me
Clone the repo
git clone --depth 1 https://github.com/bendrucker/claude

Made for: Claude Code.

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-me

README.md
[![agentmods](https://agentmods.dev/badge/skills/bendrucker/claude/show-me/github.svg)](https://agentmods.dev/skills/bendrucker/claude/show-me)
Your own site
<a href="https://agentmods.dev/skills/bendrucker/claude/show-me"><img src="https://agentmods.dev/badge/skills/bendrucker/claude/show-me/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-me

Your own site · 80×15
<a href="https://agentmods.dev/skills/bendrucker/claude/show-me"><img src="https://agentmods.dev/badge/skills/bendrucker/claude/show-me.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 825 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00048 $0.00825
Opus 5 $0.00024 $0.00413
Sonnet 5 $0.00010 $0.00165
Haiku 4.5 $0.00005 $0.00082

Measured 9d ago against content hash cab5cf4e2030, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

show-me 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 9d 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.

user/skills/show-me/SKILL.md · 173 lines

How it starts

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

Show Me

Explain $ARGUMENTS visually. Pick the smallest view that makes the point, and keep the prose around it short.

Arguments

With no argument, show the current topic of conversation.

Formats

Pick one format or several, rarely all.

Types and Signatures

The shape of code before an implementation exists, showing the interface and the seam:

interface Skill {
  name: string
  body: string
}

interface SkillSource {
  read(name: string): Promise<Skill>
}

function expand(command: string, source: SkillSource): Promise<string>

Pseudocode

Logic or an algorithm:

on(save)
  if content is unchanged
    return cached result
  write new content
  return fresh result

Call Tree

Runtime control flow inside one process:

submitForm
  createSession
    persistPrompt
    launchAgent
  navigateToSession

Component Tree

UI structure:

<SessionPage> (apps/example/src/routes/session.tsx)
  useSessionEvents()
  <SessionToolbar> (packages/ui)
  <SessionTimeline>

File Tree

File responsibility or the shape of a refactor:

src/
├── commands/       # parses user actions
├── sessions/       # owns session state
└── transport.ts    # sends API requests

Diff

A change against a shape that already exists:

Component tree:

 <SessionPage>
   useSessionEvents()
   <SessionToolbar>
+    <RunSkillButton />
   <SessionTimeline>
+    <SkillResultCard />

File tree:

 src/
 ├── commands/
+│   └── show-me.ts       # expands the slash command
 ├── sessions/
-└── transport.ts
+└── transport/
+    ├── client.ts
+    └── stream.ts

Call tree:

 submitForm
   createSession
     persistPrompt
+    expandSkillMention
     launchAgent
   navigateToSession
+    subscribeToEvents

State and control flow:

 on(save)
-  write content
-  return result
+  if content is unchanged
+    return cached result
+  write new content
+  return fresh result

Read the full file on GitHub · 173 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. 9d ago First seen · 173 lines · 48 tokens per session scan A cab5cf4e2030

Subscribe to this mod's changes

show-me is a skill published in the GitHub repository bendrucker/claude (16 stars, last pushed today), licensed MIT. It adds 48 tokens to every session and 825 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

engineering-onboarding

Create an onboarding guide for an engineer joining a team that consumes the design system. Trigger when someone says: onboard new engineer, developer getting started guide, new engineer guide, engineering onboarding, first day for developers, frontend onboarding, or anything about helping an engineer new to the team…

murphytrueman/design-system-ops · 68 tokens

designer-onboarding

Create an onboarding guide for a designer joining a team that uses a design system. Trigger when someone says: onboard new designer, getting started guide, new team member guide, onboarding documentation, first day with the system, new designer guide, or anything about helping a designer new to the team or the design…

murphytrueman/design-system-ops · 70 tokens

explainme

Explain a codebase, subsystem, or PR to a human — visually and verifiably. Turns real code structure into a polished, validated, explorable standalone HTML map (architecture, workflow, sequence, data-flow, or lifecycle/state) with inline SVG, dark/light themes, guided walkthrough chapters, source-pinned nodes, and…

jdanigo/hydraia · 125 tokens

canva-design-terminology

Design knowledge base for understanding design terminology, concepts, and best practices. Use this skill when user asks about design terms, needs guidance on design principles, or wants to understand Canva-specific features. Provides educational information, not direct Canva operations. Reference skill for other…

OpenAnalystInc/10x-Canva-Skills · 62 tokens

hps-bauhaus

A visual-design fundamentals course for new brand designers — grid, type, color, and the exercises that build the eye. Built as a decision-grade professional training deck for junior designers, new hires.

nexu-io/open-design · 45 tokens

slides-polish

Per-page Codex review + targeted python-pptx / Beamer fixes for academic talk slides. Use AFTER /paper-slides (or any externally generated PPTX/Beamer) when the deck looks 'mostly OK' but the user wants a final pass that aligns visual weight with a reference, bumps PPTX fonts to projector-readable size, kills italic…

wanshuiyin/Auto-claude-code-research-in-sleep · 136 tokens