Codebase Knowledge Graph Dashboard
Launches a local web dashboard that visualizes the knowledge graph Understand Anything generated for your codebase.
Dev & CodingIntermediate★ 83,748⑂ 7,058AI score 7/10Last updated: Sep 12, 2026
What it does
- Resolves the project directory (argument or CWD) and picks the
.understand-anything/or.ua/data folder. - Verifies
knowledge-graph.jsonexists, otherwise tells you to run/understandfirst. - Locates the plugin root across many fallback install paths (Claude runtime root, symlink, Codex/OpenCode/manual clone).
- Fast path: runs the version-pinned prebuilt viewer tarball via
npx; falls back to pnpm install + core build + Vite dev server. - Extracts the
?token=URL from the server log and hands it to you so you don't hit the access-token gate.
Who it's for
- Developers already using the Understand Anything plugin who want a visual map of a large codebase.
- Tech leads onboarding new teammates with an architecture walkthrough.
- Anyone who'd rather type one command than remember the install/build/serve chain.
Examples
/understand-dashboard— open the dashboard for the current repository./understand-dashboard ~/work/legacy-api— point it at another project path.- Offline machine with no release asset: the skill automatically falls back to pnpm + Vite and still serves locally.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Egonex-AI/Understand-Anything/HEAD/understand-anything-plugin/skills/understand-dashboard/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the understand-anything-plugin/skills/understand-dashboard folder from the GitHub repo Egonex-AI/Understand-Anything into my ~/.claude/skills/understand-dashboard/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Egonex-AI/Understand-Anything.git ~/understand-anything && mkdir -p ~/.claude/skills && cp -r ~/understand-anything/understand-anything-plugin/skills/understand-dashboard ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Clone the repo:
git clone https://github.com/Egonex-AI/Understand-Anything.git ~/understand-anything - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r ~/understand-anything/understand-anything-plugin/skills/understand-dashboard ~/.claude/skills/ - Check prerequisites:
node -v && pnpm -v(install pnpm withnpm i -g pnpmif missing). - Restart Claude Code, open the project you want to inspect, and run
/understandto generateknowledge-graph.json. - Run
/understand-dashboardand paste the full URL including?token=into your browser.
View source on GitHub ↗License: MIT