codepath-visualizer

codepath-visualizer is a skill for Claude Code from paulbaranowski/wild-horses. It costs 50 tokens per session (688 once invoked), scanned A, original, MIT.

Prehliadač vizuálnej mapy kódu v súbore architecture.html. Mapa zobrazuje vybrané cesty vykonávania programu, teda postup, ktorým požiadavka prechádza cez jeho časti.

In plain words
What is it for?
Na otvorenie už vytvorenej architektonickej mapy v prehliadači a na výber konkrétnej cesty, ktorú má ďalší agent preskúmať.
Why use it?
Pomáha pochopiť vzťahy medzi komponentmi bez čítania všetkých súborov naraz. Pred otvorením overí, či mapa existuje a či zodpovedá najnovším údajom.

Skill for Claude Code

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

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the codepath-visualizer plugin — 2 skills shipped together

Good fit Na otvorenie už vytvorenej architektonickej mapy v prehliadači a na výber konkrétnej cesty, ktorú má ďalší agent preskúmať.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add paulbaranowski/wild-horses
Claude Code
/plugin install codepath-visualizer

Made for: Claude Code.

Or install codepath-visualizer, the plugin that ships this one along with the rest of its 2 skills.

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 codepath-visualizer

README.md
[![agentmods](https://agentmods.dev/badge/skills/paulbaranowski/wild-horses/codepath-visualizer.svg)](https://agentmods.dev/skills/paulbaranowski/wild-horses/codepath-visualizer)
Your own site
<a href="https://agentmods.dev/skills/paulbaranowski/wild-horses/codepath-visualizer"><img src="https://agentmods.dev/badge/skills/paulbaranowski/wild-horses/codepath-visualizer.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 688 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.
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.00050 $0.00688
Opus 5 $0.00025 $0.00344
Sonnet 5 $0.00010 $0.00138
Haiku 4.5 $0.00005 $0.00069

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

Security

Grade A, and why

codepath-visualizer 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 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.

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.

plugins/codepath-visualizer/skills/codepath-visualizer/SKILL.md · 63 lines

How it starts

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

codepath-visualizer

Thin wrapper around codepaths_cli.py status, open, and codepaths_cli.py select. The mapper owns rendering — this skill never re-renders.

Arguments: $ARGUMENTS


Mode 1 — viewer (no args)

  1. Precondition gate. Run:

    python3 "${CLAUDE_PLUGIN_ROOT}/skills/codepath-mapper/codepaths_cli.py" status
    
    • Exit 0 + "htmlExists": true + "renderStale": false → continue.
    • Exit 0 + "htmlExists": false → tell user architecture.html is missing; instruct: run /codepath-mapper first.
    • Exit 0 + "renderStale": true → warn user the HTML is older than the JSONs; recommend rerun /codepath-mapper to regenerate.
    • Exit non-zero → report the stderr to the user; bail.
  2. Open the HTML. Use the platform's default opener:

    • macOS: open docs/codepaths/architecture.html
    • Linux: xdg-open docs/codepaths/architecture.html
    • Windows: start docs/codepaths/architecture.html
  3. Print summary. Echo: Opened docs/codepaths/architecture.html — {app.name}: {N} codepaths across {Y} components.


Mode 2 — --select (agent picker)

Intended for other agents that need structured context about a codepath the user picks.

  1. Precondition gate (same as Mode 1).

  2. Run select:

    python3 "${CLAUDE_PLUGIN_ROOT}/skills/codepath-mapper/codepaths_cli.py" select
    

    This will open the HTML with a "Send to agent →" button on each codepath card, then block on the user's pick. Don't add --output unless the HTML lives outside docs/codepaths/.

  3. Return the CLI's stdout (a JSON object {codepath, components}) to the calling agent. Don't paraphrase it — the calling agent expects the structured shape.

  4. If exit code is 16, the user closed the window without picking. Report this to the calling agent (no codepath was chosen).


Strictly forbidden

  • Don't re-render the HTML/codepath-mapper owns that. If the HTML is stale, ask the user to re-run the mapper.
  • Don't invoke select without first running status — a broken JSON file at select time is a confusing error for the user (server already running, browser already open).
  • Don't add interactive prompts to the user inside --select mode — the calling agent is waiting on stdout; any prompt would block both sides.

Read the full file on GitHub · 63 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 63 lines · 50 tokens per session scan A 148673726ffd

Subscribe to this mod's changes

codepath-visualizer is a skill published in the GitHub repository paulbaranowski/wild-horses (11 stars, last pushed 20d ago), licensed MIT. It adds 50 tokens to every session and 688 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens