File Search
SkillSearchFind files and search content across directories
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the File Search skill
What this skill tells your AI
The instructions your AI receives, as published by gebruder/wirken in skills/file-search/SKILL.md and read by ahel’s review.
Find files and search content across directories.
Find files by name
- By name:
find . -name "*.py" -type f - Case-insensitive:
find . -iname "*.txt" -type f - Modified recently:
find . -name "*.rs" -mtime -1 -type f - Large files:
find . -size +10M -type f
Search file contents
- Grep:
grep -rn "pattern" . - Case-insensitive:
grep -rni "pattern" . - With context:
grep -rn -C 3 "pattern" . - File type filter:
grep -rn --include="*.py" "pattern" . - Ripgrep (faster):
rg "pattern"orrg -t py "pattern"
Directory overview
- Tree (if available):
tree -L 2 - Size summary:
du -sh */ | sort -rh | head -20 - File count by extension:
find . -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn | head -15 - Recently modified:
find . -type f -mtime -1 | head -20
Signals
- GitHub stars
- 171
- Forks
- 5
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
file-search-gebruder- Source
- github.com/gebruder/wirken