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 skills/billbuchanan-code/claude-code-power-setup/visualizenpx skills add billbuchanan-code/claude-code-power-setup --skill visualizegit clone --depth 1 https://github.com/billbuchanan-code/claude-code-power-setupWhat 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 | $0.00012 | $0.01157 |
| Opus 5 | $0.00006 | $0.00579 |
| Sonnet 5 | $0.00002 | $0.00231 |
| Haiku 4.5 | $0.00001 | $0.00116 |
Grade A, and why
visualize 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 yesterday.
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 — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Visualize
Generate interactive HTML reports and dashboards from codebase analysis or data.
User Input
$ARGUMENTS
Process
-
Determine Visualization Type — Based on $ARGUMENTS, decide what to visualize:
- Codebase overview: File tree, module dependencies, language breakdown
- Dependency graph: Package dependencies as an interactive network
- Test coverage: Coverage heatmap by module/file
- Git activity: Commit frequency, contributor heatmap, file churn
- Custom data: Parse CSV/JSON and render charts
-
Gather Data — Use Glob, Grep, Read, and Bash to collect the raw data:
- File counts by extension:
find . -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn - Package dependencies: Read package.json, requirements.txt, Cargo.toml, go.mod
- Git stats:
git log --format='%H|%an|%ad|%s' --date=short - Test results: Run test suite with coverage flags
- LOC:
wc -lorclocif available
- File counts by extension:
-
Generate HTML — Create a self-contained HTML file with:
- Embedded CSS (no external dependencies)
- Inline SVG charts OR embedded Chart.js via CDN
- Responsive layout
- Dark mode support
- Interactive tooltips and hover states
- Print-friendly styles
-
Write Output — Save to
./visualization-report.html(or a name matching the topic) -
Open — Use
open(macOS) to display in browser
HTML Template Structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>[Report Title]</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
/* Self-contained styles */
:root {
--bg: #0d1117;
--fg: #c9d1d9;
--accent: #58a6ff;
}
body {
font-family: -apple-system, system-ui, sans-serif;
background: var(--bg);
color: var(--fg);
margin: 0;
padding: 2rem;
}
.card {
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
padding: 1.5rem;
margin: 1rem 0;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
}
h1,
h2 {
color: var(--fg);
border-bottom: 1px solid #30363d;
padding-bottom: 0.5rem;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
padding: 8px 12px;
text-align: left;
border-bottom: 1px solid #30363d;
}
th {
color: var(--accent);
}
.stat {
font-size: 2rem;
font-weight: bold;
color: var(--accent);
}
@media (prefers-color-scheme: light) {
:root {
--bg: #fff;
--fg: #24292f;
--accent: #0969da;
}
.card {
background: #f6f8fa;
border-color: #d0d7de;
}
}
</style>
</head>
<body>
<h1>[Title]</h1>
<p>Generated: [timestamp]</p>
<div class="grid">
<!-- Summary cards -->
<!-- Charts -->
<!-- Tables -->
</div>
<script>
// Chart.js initialization
</script>
</body>
</html>
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.
- yesterday First seen · 170 lines · 12 tokens per session scan A e5002e99acb5
visualize is a skill published in the GitHub repository billbuchanan-code/claude-code-power-setup (2 stars, last pushed 29d ago), licensed MIT. It adds 12 tokens to every session and 1,157 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…