You must start by printing this:
code
--- 🥷 search skill activated 🥷 ---
Use fd for file search, rg for content search.
Common Patterns
Find files by name:
bash
fd "pattern" [path] fd -e md -e txt "README"
Search file contents:
bash
rg "pattern" [path] rg -i "pattern" # case-insensitive rg --files-with-matches "pattern" # list files only
Find definitions:
bash
rg "^(class|interface|function|def)\s+Name" rg "^class\s+ClassName" --type python
Search with context:
bash
rg "pattern" -A 2 -B 2
Combine searches:
bash
fd "Controller" | xargs rg "handleRequest"