Search a codebase efficiently with ripgrep regular expressions, file globs, and git history search. Use to locate symbols, usages, and definitions instead of reading whole files.
77
96%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
The built-in grep tool matches LITERAL text only. For real regular-expression search and
history-aware lookups, drive ripgrep and git through execute.
rg -n "fn\s+\w+\(" src/, rg -n --type java "class \w+Service".rg -n "\bmyFunction\b".rg -n --type ts "useEffect\(".rg -l "TODO"; find files by name: rg --files | rg <name> or use glob.git log -S "<string>" --oneline.git blame -L <start>,<end> <file>.git grep -n "<regex>".-F to ripgrep.1a81e59
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.