name: find
description: Fast file and code search using fd and rg. Use when the user asks to locate files or search code patterns.
compatibility: Assumes a filesystem shell with fd and rg installed.
allowed-tools: Bash(fd:) Bash(rg:)
Use fd for file search, rg for content search.
Common Patterns
Find files by name:
fd "pattern" [path]
fd -H "pattern" [path] # include hidden files
fd -e md -e txt "README" [path]
Search file contents:
rg -n "pattern" [path]
rg -i "pattern" # case-insensitive
rg -S "pattern" # smart case
rg --files-with-matches "pattern" # list files only
rg -n "pattern" --glob '!node_modules/*'
Find definitions:
rg -n "^(class|interface|function|def)\\s+Name\\b"
rg -n "^class\\s+ClassName\\b" --type python
Search with context:
rg -n "pattern" -A 2 -B 2
Combine searches:
fd -0 "Controller" -t f | xargs -0 rg -n "handleRequest"
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
63
GitHub Forks
6
Created
Jan 2026
Last Updated
4个月前
tools
tools automation tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!