Ln 020 codegraph
Skill onfire7777/universal-ai-skills-library/skills/ln-020-codegraph
Builds and queries code knowledge graph for dependency analysis, references, implementations, and architecture overview. Use when starting work on unfamiliar codebase or before refactoring.From its SKILL.md
npx -y skills add onfire7777/universal-ai-skills-library --skill ln-020-codegraphAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.2 KB, 992 tokens by cl100k_base, as published. Nobody here has run it
Paths: File paths are relative to skills repo root.
Code Knowledge Graph
Type: Standalone Utility Category: 0XX Dev Environment
Indexes codebase into a layered graph (tree-sitter AST → SQLite) and provides dependency analysis, path tracing, references, implementations, and architecture overview via MCP tools.
Inputs
| Input | Required | Source | Description |
|---|---|---|---|
project_path | yes | args or CWD | Project root to index |
command | no | args | Specific action: index, search, symbol, paths, refs, arch |
When to Use
- Starting work on an unfamiliar codebase →
index+architecture - Before refactoring a function/class →
search+get_symbol+trace_paths - Understanding call flow →
trace_paths - Finding a symbol quickly →
search
Workflow
Phase 1: Index
Check if graph exists (.codegraph/index.db in project root).
If NOT exists:
Call: index_project({ path: "{project_path}" })
If exists (re-index on demand):
Call: index_project({ path: "{project_path}" })
Idempotent — skips unchanged files automatically.
Phase 2: Query
Route based on user intent:
| User says | Tool | Parameters |
|---|---|---|
| "Show dependencies" / "What uses X?" | trace_paths | { name: "X", file: "...", path_kind: "mixed", direction: "reverse" } |
| "Who calls X?" / "What does X call?" | trace_paths | { name: "X", file: "...", path_kind: "calls", direction: "reverse"|"forward" } |
| "Tell me about X" / "Context of X" | get_symbol | { name: "X", file: "..." } |
| "Project structure" / "Architecture" | get_architecture | { path?: "src/" } |
| "Find symbol X" | search_symbols | { query: "X" } |
| "Watch for changes" | watch_project | { path: "{project_path}" } |
| "Find duplicate code" | find_clones | { type: "all" } |
| "Risky hotspots" | find_hotspots | { minCallers: 2, minComplexity: 5 } |
| "Unused exports" | find_unused_exports | {} |
| "Circular dependencies" | find_cycles | {} |
| "Module coupling" | get_module_metrics | { minCoupling: 0 } |
| "Implementations / overrides" | find_implementations | { qualified_name: "..." } |
| "Dataflow / propagation" | find_dataflows | { qualified_name: "...", depth: 2 } |
Phase 3: Present Results
- Show MCP tool output directly (markdown tables)
- For code snippets referenced in results, use
hex-line read_filewith line ranges - Suggest follow-up queries based on results:
- After
search_symbols→ suggestget_symbolfor top result - After
get_symbol→ suggesttrace_pathsif refactoring - After
trace_paths→ suggestfind_referencesorfind_implementationsdepending on symbol kind
- After
Supported Languages
| Language | Extensions | Coverage |
|---|---|---|
| JavaScript | .js, .mjs, .cjs, .jsx | Strongest semantic coverage |
| TypeScript / TSX | .ts, .tsx | Strongest semantic coverage |
| Python | .py | Definitions, exports, imports; more limited cross-file semantics |
| C# | .cs | Definitions, exports, imports, type relations |
| PHP | .php | Definitions, exports, imports |
MCP Server Setup
Add to .mcp.json:
{
"mcpServers": {
"hex-graph": {
"command": "node",
"args": ["{skills_repo}/mcp/hex-graph-mcp/server.mjs"]
}
}
}
Definition of Done
- Project indexed (index_project returns success)
- Query results shown to user
- Follow-up suggestions provided
Version: 0.1.0 Last Updated: 2026-03-20
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.