code-graph-context
Installation
SKILL.md
CodeGraphContext Skill
Structural code graph queries using the CodeGraphContext MCP server (tree-sitter AST + KuzuDB property graph).
When to Use vs Other Search Tools
| Need | Tool |
|---|---|
Who calls foo()? |
find_callers (this skill) |
What does foo() call? |
find_callees (this skill) |
| Class hierarchy / interface implementors | get_class_hierarchy (this skill) |
| Dead code / unreachable functions | find_dead_code (this skill) |
| Module-level import graph | get_module_deps (this skill) |
| Keyword / regex search | pnpm search:code or ripgrep |
| Semantic / conceptual search | code-semantic-search skill |
| AST shape matching | code-structural-search skill |
| Compiler-verified definition/references | lsp-navigator skill |
Use this skill when you need relationship traversal across the call graph or import graph, not text matching.