What problem does it solve?
This Skill helps developers quickly locate specific code snippets, functions, classes, or files within a codebase, significantly speeding up debugging and feature development.
Core Features & Use Cases
- Text Search: Uses ripgrep for fast, case-insensitive pattern matching across files.
- Symbol Search: Leverages AST analysis (via Tree-sitter) to find definitions, references, and calls for functions, classes, and variables.
- File Search: Quickly find files based on glob patterns.
- Semantic Search: Enables natural language queries to find code based on meaning and context, powered by embeddings.
- Use Case: You need to find all places where a specific function
calculate_total is called within the src/utils directory.
Quick Start
Use the code-search skill to find all occurrences of the function named 'getUserData' within the project.