Agent skill · Data & Analytics

understand-dashboard

Launch the interactive web dashboard to visualize a codebase's knowledge graph

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill understand-dashboard --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/understand-dashboard/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /understand-dashboard Start the Understand Anything dashboard to visualize the knowledge graph for the current project. ## Instructions 1. Determine the project directory: - If `$ARGUMENTS` contains a path, use that as the project directory - Otherwise, use the current working directory 2. Check that `.understand-anything/knowledge-graph.json` exists in the project directory. If not, tell the user: ``` No knowledge graph found. Run /understand first to analyze this project. ``` 3. Find the dashboard code. The dashboard is at `packages/dashboard/` relative to this plugin's root directory. Check these paths in order and use the first that exists: - `${CLAUDE_PLUGIN_ROOT}/packages/dashboard/` (Claude Code runtime root, highest priority) - `~/.understand-anything-plugin/packages/dashboard/` (universal symlink, all installs) - Two levels up from `~/.agents/skills/understand-dashboard` real path (self-relative fallback) - Two levels up from `~/.copilot/skills/understand-dashboard` real path (Copilot personal skills fallback) - Common clone-based install roots: - `~/.codex/understand-anything/understand-anything-plugin/packages/dashboard/` - `~/.opencode/understand-anything/understand-a

What's inside
Steps it walks through
  1. Instructions
  2. Notes
Ships with 1 file
  • metadata.json
Commands it runs
for candidate in \
if [ -n "$candidate" ] && [ -d "$candidate/packages/dashboard" ]; then
fi
done
if [ -z "$PLUGIN_ROOT" ]; then
echo "Error: Cannot find the understand-anything plugin root."
echo "Checked:"
echo "  - ${CLAUDE_PLUGIN_ROOT:-<unset CLAUDE_PLUGIN_ROOT>}"
echo "  - $HOME/.understand-anything-plugin"
echo "  - ${SELF_RELATIVE:-<unresolved path derived from ~/.agents/skills/understand-dashboard>}"
More from claude-skill-registry
All skills →
About this skill
What does the understand-dashboard skill do?

Launch the interactive web dashboard to visualize a codebase's knowledge graph

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill understand-dashboard --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going