
File Search
- 9 installs
- 849 repo stars
- Updated August 1, 2026
- wentorai/research-claw
Helps with ai & agent building tasks during AI-assisted development.
About
file-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- file-search
- AI & Agent Building
- AI-coding skill
File Search by the numbers
- 9 all-time installs (skills.sh)
- Ranked #12,152 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wentorai/research-claw --skill file-searchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 9 |
|---|---|
| repo stars | ★ 849 |
| Last updated | August 1, 2026 |
| Repository | wentorai/research-claw ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
File Search
Fast file-name and content search using fd and ripgrep (rg).
---
Purpose
This skill provides efficient file system search capabilities using two modern CLI tools:
| Tool | Purpose |
|---|---|
fd | Fast file-name search (alternative to find) |
rg | Fast content search (alternative to grep) |
---
Installation
Fedora/RHEL (dnf)
sudo dnf install fd-find ripgrepUbuntu/Debian (apt)
sudo apt install fd-find ripgrepmacOS (brew)
brew install fd ripgrepArch Linux (pacman)
sudo pacman -S fd ripgrep---
fd — File Name Search
Basic Usage
# Search for files by name pattern
fd "pattern"
# Search in specific directory
fd "pattern" /path/to/search
# Case-insensitive search
fd -i "pattern"
# Search for exact file name
fd -x "exact_name"File Type Filters
# Files only
fd -t f "pattern"
# Directories only
fd -t d "pattern"
# Executable files
fd -t x "pattern"
# Symlinks
fd -t l "pattern"Extension Filters
# Search for specific extension
fd -e py "pattern"
# Multiple extensions
fd -e py -e js "pattern"
# All Python files
fd -t f -e py ""Hidden and Ignored Files
# Include hidden files
fd -H "pattern"
# Include ignored files (gitignore, etc.)
fd -I "pattern"
# Include both hidden and ignored
fd -HI "pattern"Size and Time Filters
# Files larger than 100MB
fd -S +100M
# Files smaller than 1KB
fd -S -1k
# Modified in last 7 days
fd --changed-within 7d
# Modified more than 30 days ago
fd --changed-before 30d---
ripgrep (rg) — Content Search
Basic Usage
# Search for pattern in files
rg "pattern"
# Search in specific directory
rg "pattern" /path/to/search
# Case-insensitive search
rg -i "pattern"
# Search for exact word
rg -w "pattern"File Type Filters
# Search only Python files
rg -t py "pattern"
# Search only JavaScript files
rg -t js "pattern"
# Search all except Python
rg -T py "pattern"
# List available types
rg --type-listOutput Control
# Show only file names
rg -l "pattern"
# Show only count of matches
rg -c "pattern"
# Show line numbers (default)
rg -n "pattern"
# No line numbers
rg -N "pattern"
# Show context (2 lines before and after)
rg -C 2 "pattern"
# Show only matching part
rg -o "pattern"Hidden and Ignored Files
# Include hidden files
rg --hidden "pattern"
# Include ignored files
rg --no-ignore "pattern"
# Include both
rg --hidden --no-ignore "pattern"Regex Features
# Use PCRE2 regex
rg -P "pattern"
# Fixed string (no regex)
rg -F "literal.string"
# Multi-line search
rg -U "line1.*\n.*line2"---
Common Patterns
Find All Python Files
fd -t f -e py ""Search for TODO in Code
rg -i "TODO|FIXME|XXX" -t pyFind Large Files
fd -S +100M -t fFind Recently Modified Files
fd --changed-within 1dSearch for Specific Function
rg "def function_name" -t pyFind Empty Directories
fd -t d -e ""Search and Replace Preview
rg "old_pattern" -r "new_pattern"---
When to Use This Skill
- User asks to find files by name
- User needs to search file contents
- Fast file system navigation needed
- Code search in projects
- Finding large or old files
- Searching with regex patterns
---
Security Notes
- These tools will read files you point them at
- Be careful when searching sensitive directories
- Use
--max-depthto limit search scope - Review results before acting on them
---
Comparison with Traditional Tools
| Feature | fd vs find | rg vs grep |
|---|---|---|
| Speed | fd is faster (parallel) | rg is faster (parallel) |
| Defaults | fd ignores hidden/gitignore by default | rg ignores hidden/gitignore by default |
| Output | fd has colored output | rg has colored output |
| Regex | fd uses regex by default | rg uses regex by default |
| Typing | fd is shorter to type | rg is shorter to type |
Related skills
AI & Agent Buildingagents