| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An interactive cartographer's atlas of your Claude Code setup. It scans ~/.claude and renders every skill, slash command, subagent, MCP server, and hook as an antique map — colour-coded by kind, inked by how recently you've used each one.
Each region of your filesystem gets its own plate. Every project card lists its local skills, commands, hooks, and MCPs, inked by heat (names below are fictitious):
Derived findings — what the map says once you stop reading it as a map: never-invoked servitors ranked by source (prune candidates), invocation concentration, contested names, and frayed lines (names below are fictitious):
Requires Node ≥ 20.
# Serve the live atlas (rebuilds on each refresh)
npx @lttr/claude-code-map
# → http://127.0.0.1:7777/Render once to a static HTML file:
npx @lttr/claude-code-map --out atlas.html| Flag | Default | Description |
|---|---|---|
| -p, --port N | 7777 | Server port |
| --host HOST | 127.0.0.1 | Bind host |
| -o, --out FILE | — | Render once to FILE (no server) |
| -h, --help | — | Show help |
The atlas speaks in a cartographer's voice. Shared vocabulary (servitor, plate, heat, landmark, contested name, …) lives in GLOSSARY.md.
Requires Node ≥ 23.6 (dev mode runs the TypeScript sources directly via native type stripping).
pnpm install
pnpm run dev # serve with watch/restart
pnpm run check # format + lint + typecheck
pnpm run build # emit plain-JS package to dist/Browser-side code lives in src/client/*.ts and is inlined into the page, not linked. src/shell.html carries <!-- script:name --> markers; src/inline-scripts.ts replaces each with an inline <script> whose body is the matching client file — pre-stripped .js when present (the published build), otherwise the .ts source stripped on the fly via Node's stripTypeScriptTypes. Stripping is blank-preserving, so devtools line numbers match the TS source.
Why not a bundler or plain <script src> links: --out must emit one self-contained file, so the inliner has to exist regardless — linking would only add a second delivery mechanism (script routes plus a second shell variant) whose sole benefit, browser caching, is worthless for a localhost tool. The constraint is that client scripts stay dependency-free vanilla TS: no imports, no npm packages. If they ever need those, swap loadClientScript for an esbuild call; the marker seam stays.
Commit messages follow conventional commits (feat: …, fix(scope): …), consumed by changelogen for versioning and the changelog.
pnpm run releaseRuns checks, bumps the version from commit history, writes CHANGELOG.md, commits, tags, pushes, and publishes to npm (the build runs via prepack).
| Back | FazBrowse Home | New Git URL |