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.
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.
tools
Detect friction signals; graduate patterns into rules. Use for session retrospectives.
testing
Use when you need a diff-derived test plan for an MR — reads the diff, groups changes by area, runs targeted verifications, and proves revert-tests are genuine guards, not dead assertions.
development
Curate the web-capture index. Use when the capture backlog grows, captures sit unprocessed at seedling/pending, or to surface stored research during work.
testing
Probe memory/summary clarity via dual anchor questions: task progress, info gaps. Use when verifying session state or summary before handoff or compression.