graph-search

Solid

Search the code knowledge graph by function, class, or type name using FTS5 full-text search with query-aware kind boosting.

AI & Automation 297 stars 27 forks Updated today MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
82
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
51
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Search Code Knowledge Graph Search `.gauntlet/graph.db` for code entities by name. ## Steps 1. **Accept query**: Get the search term from the user. 2. **Run the query script**: ```bash 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 classes 3. **Display results**: Show qualified name, file path, line numbers, and relevance score for each match. 4. **Offer to read**: Ask if the user wants to read the top result's source file. ## Query Intelligence The search engine detects query patterns: - **PascalCase** (e.g., `UserService`): boosts Class and Type results - **snake_case** (e.g., `get_users`): boosts Function results - **Dotted path** (e.g., `app.models.User`): boosts qualified name matches ## Prerequisites The graph must be built first. If `.gauntlet/graph.db` does not exist, suggest running the `graph-build` skill.

Details

Author
athola
Repository
athola/claude-night-market
Created
6 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

graph-query

Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check dependencies", "what uses this", "show relationships", "find serializers", or when reading code and needing to understand what depends on a component before modifications.

27,705 Updated today
davila7
AI & Automation Solid

ln-020-codegraph

Builds and queries code knowledge graph for dependency analysis, references, implementations, and architecture overview. Use when starting work on unfamiliar codebase or before refactoring.

480 Updated 3 days ago
levnikolaevich
AI & Automation Solid

graph-build

Build or incrementally update the code knowledge graph for a codebase. Uses Tree-sitter for multi-language AST parsing and stores nodes/edges in SQLite.

297 Updated today
athola
AI & Automation Listed

ai-maestro-code-graph-query

PROACTIVELY query the code graph database to understand relationships and impact of changes. Use this skill WHEN READING any file to understand context, when searching for files, when exploring the codebase, or when you need to understand what depends on a component. This is your primary tool for understanding code structure and avoiding breaking changes.

335 Updated today
aiskillstore
AI & Automation Listed

codebase-search

Search and navigate large codebases efficiently. Use when finding specific code patterns, tracing function calls, understanding code structure, or locating bugs. Handles semantic search, grep patterns, AST analysis.

335 Updated today
aiskillstore