Help us improve
Share bugs, ideas, or general feedback.
From gauntlet
Builds or incrementally updates a multi-language code knowledge graph using Tree-sitter AST parsing, storing nodes/edges in SQLite. Use at session start, after code changes, or before structural analysis.
npx claudepluginhub athola/claude-night-market --plugin gauntletHow this skill is triggered — by the user, by Claude, or both
Slash command
/gauntlet:graph-buildThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build or update the `.gauntlet/graph.db` knowledge graph
Builds or incrementally updates the repository code knowledge graph for review. Use for initial setup, after refactors or branch switches; supports Python, TypeScript/JS, Go; SQLite storage.
Analyzes codebase to produce knowledge-graph.json for interactive dashboard exploring architecture, components, and relationships
Uses codebase knowledge graphs for architecture-aware task decomposition, dependency discovery, and context reduction during planning.
Share bugs, ideas, or general feedback.
Build or update the .gauntlet/graph.db knowledge graph
for the current codebase.
Detect target: Use the current working directory or a user-specified path.
Check for existing graph: If .gauntlet/graph.db
exists, run an incremental update. Otherwise, run a
full build.
Run the build script:
For full build:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/graph_build.py <dir>
For incremental update:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/graph_build.py <dir> --incremental
Report results: Show the JSON output including files parsed, nodes created, edges created, and duration.
Suggest next steps: Recommend searching the graph or running blast radius analysis.
The graph extracts nodes (File, Class, Function, Type, Test) and edges (CALLS, IMPORTS_FROM, INHERITS, CONTAINS, IMPLEMENTS, TESTED_BY) from 20+ languages including Python, JavaScript, TypeScript, Go, Rust, Java, C/C++, Ruby, and PHP.
.gauntlet/graph.db (SQLite with WAL mode).gauntlet/.gitignore to prevent commits