plugins/gauntlet/skills/graph-search/SKILL.md
Searches the code knowledge graph by function, class, or type using FTS5 full-text search. Use when locating code entities by name or qualified path.
npx skillsauth add athola/claude-night-market graph-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search .gauntlet/graph.db for code entities by name.
gauntlet:graph-build)pensive:blast-radius)Accept query: Get the search term from the user.
Run the query script:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/graph_query.py \
--action search --query "<term>" --limit 20
Optional filters:
--kind Function to search only functions--kind Class to search only classesDisplay results: Show qualified name, file path, line numbers, and relevance score for each match.
Offer to read: Ask if the user wants to read the top result's source file.
The search engine detects query patterns:
UserService): boosts Class
and Type resultsget_users): boosts Function
resultsapp.models.User): boosts
qualified name matchesThe graph must be built first. If .gauntlet/graph.db
does not exist, suggest running the graph-build skill.
.gauntlet/graph.db does not exist, the skill surfaces
the missing-prerequisite error and suggests gauntlet:graph-build
rather than failing silently--limit results)data-ai
Models a business in its own language. Use when the domain has real business rules to capture.
research
Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output.
development
Generates and self-executes a diff-derived test plan for a PR. Use when validating PR changes before merge. Do not use for code review; use sanctum:pr-review.
development
Ramps implementation ambition a notch only after the prior increment is understood. Use when building a feature you must understand, not just ship.