What problem does it solve?
This Skill accelerates locating files and code by leveraging fast search tools like fd and rg. It helps you quickly locate files by name, search content, locate definitions, and combine searches across large codebases, reducing time spent scanning directories.
Core Features & Use Cases
-
File search by name: Use fd to quickly locate files matching a pattern across a directory tree.
-
Content search: Use rg to search within files for patterns, with options for case-insensitive search and listing files with matches.
-
Code understanding: Find definitions (classes, interfaces, functions) and search with context to understand code structure.
-
Use Case: When you need to locate all occurrences of a function named "initialize" across a codebase, or find all Markdown files that mention "setup".
Quick Start
fd "pattern" [path] # Find files by name
rg "pattern" [path] # Search file contents