Knowledge Base Graph Analyzer (understand-knowledge)
Scans a Karpathy-pattern LLM wiki (raw sources + wikilinked markdown + schema) and builds an interactive knowledge graph with entities, implicit relationships, and topic clusters.
Data & AnalyticsAdvanced★ 83,859⑂ 7,068AI score 7/10Last updated: Sep 12, 2026
What it does
- Detects whether a directory is a Karpathy-pattern wiki: an
index.mdplus multiple.mdfiles containing[[wikilinks]], optionally araw/folder and a schema file (CLAUDE.md / AGENTS.md). - Runs the bundled
parse-knowledge-base.pyto deterministically extract wikilinks, headings, frontmatter, and index.md categories intoscan-manifest.json. - Dispatches
article-analyzersubagents in batches of 10–15 articles (up to 3 concurrently) to infer entities, implicit cross-references, and claims that plain parsing can't find. - Merges everything with
merge-knowledge-graph.py, deduplicates entities, validates edges, then writes.ua/knowledge-graph.jsonplusmeta.json. - Auto-triggers
/understand-dashboardto render a force-directed graph view with category layers and a guided tour.
Who it's for
- People running a personal knowledge base on Karpathy's three-layer LLM wiki pattern (raw / wiki / schema).
- Anyone who wants to see structure and broken links (unresolved wikilinks) inside a heavily interlinked note collection.
- Researchers and knowledge managers turning paper notes into a navigable topic map.
Examples
/understand-knowledge ~/notes/ai-wiki— reports "N articles, N sources, N topics, N wikilinks (N unresolved)" and lists detected categories.- Run with no argument to analyze the current directory; if it isn't a Karpathy wiki, the skill explains what was expected.
- After the merge, the dashboard opens with layers from index.md categories and a tour that follows the index section ordering.
· · · 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-knowledge/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-knowledge folder from the GitHub repo Egonex-AI/Understand-Anything into my ~/.claude/skills/understand-knowledge/. 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 && mkdir -p ~/.claude/skills && cp -r Understand-Anything/understand-anything-plugin/skills/understand-knowledge ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Clone the repository:
git clone https://github.com/Egonex-AI/Understand-Anything.git - Locate
understand-anything-plugin/skills/understand-knowledge/and confirm it contains SKILL.md plusparse-knowledge-base.pyandmerge-knowledge-graph.py. - Copy the whole folder into your skills directory:
mkdir -p ~/.claude/skills && cp -r Understand-Anything/understand-anything-plugin/skills/understand-knowledge ~/.claude/skills/ - Verify Python 3 is available with
python3 --version(required by the bundled scripts). - For the automatic visualization step, also copy the
understand-dashboardskill from the same plugin. - Restart Claude Code and run
/understand-knowledge <path-to-wiki>. - Output lands in
.ua/knowledge-graph.jsoninside the target directory (or.understand-anything/if that folder already exists).
View source on GitHub ↗License: MIT