| name | file-manager |
| description | Find, organize, and manage files on the user's computer. Search by name, type, size, or date. Move, rename, compress, and clean up files. |
| allowed-tools | ["Bash","Read","Write","Glob","Grep"] |
File Manager Skill
Help users find and organize files on their computer.
Find Files
find ~/Desktop ~/Documents ~/Downloads -iname "*report*" -type f 2>/dev/null
find ~/Downloads -name "*.pdf" -type f
find ~ -size +100M -type f 2>/dev/null | head -20
find ~/Documents -mtime -7 -type f | head -20
find ~/Downloads -type f -exec ls -la {} + | sort -k5 -n | uniq -d -f4
Organize
mv ~/Downloads/*.pdf ~/Documents/
mkdir -p ~/Documents/$(date +%Y-%m-%d)
for f in *.jpeg; do mv "$f" "${f%.jpeg}.jpg"; done
Cleanup
du -sh ~/Downloads/* | sort -rh | head -20
rm -rf ~/.Trash/*
find ~/Downloads -mtime +30 -type f
Compress/Extract
zip -r archive.zip folder/
tar czf archive.tar.gz folder/
unzip archive.zip
tar xzf archive.tar.gz
Tips
- Always use
trash over rm when available (recoverable)
- Preview file lists before bulk operations
- Ask before deleting — show what would be affected first