Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Codebase Knowledge Graph Dashboard

Launches a local web dashboard that visualizes the knowledge graph Understand Anything generated for your codebase.

Dev & CodingIntermediate83,7487,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.json exists, otherwise tells you to run /understand first.
  • 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

  1. /understand-dashboard — open the dashboard for the current repository.
  2. /understand-dashboard ~/work/legacy-api — point it at another project path.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Clone the repo: git clone https://github.com/Egonex-AI/Understand-Anything.git ~/understand-anything
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Copy the skill: cp -r ~/understand-anything/understand-anything-plugin/skills/understand-dashboard ~/.claude/skills/
  4. Check prerequisites: node -v && pnpm -v (install pnpm with npm i -g pnpm if missing).
  5. Restart Claude Code, open the project you want to inspect, and run /understand to generate knowledge-graph.json.
  6. Run /understand-dashboard and paste the full URL including ?token= into your browser.