From gauntlet
Builds or updates a code knowledge graph from tree-sitter ASTs stored in SQLite. Use before search or blast-radius analysis to gain structural codebase awareness.
How 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
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.
gauntlet:graph-search)gauntlet:extract)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.gauntlet/graph.db exists and is a valid SQLite file after
the skill completes; .gauntlet/.gitignore exists to prevent
the database from being committedfiles_parsed,
nodes_created, edges_created, duration; values are
non-zero for non-empty codebases.gauntlet/graph.db already
exists (script invoked with --incremental); full build only
on first runnpx claudepluginhub athola/claude-night-market --plugin gauntletBuilds 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.
Builds a persistent knowledge graph of your codebase using Tree-sitter and SQLite, enabling Claude to read only relevant files — reducing tokens by up to 49x on coding tasks.
Builds and queries a per-repo SQLite graph of code symbols and relationships for fast, targeted file:line retrieval without grepping or reading whole files.