Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Intelligently organizes files and folders by understanding context, finding duplicates, and suggesting better organizational structures. Use when user wants to clean up directories, organize downloads, remove duplicates, or restructure projects.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-16 | ✗→✓ | ▲ Improved | 35% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 14% | 0% |
| case-18 | ✓→✗ | ▼ Worse | 60% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 54% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 75% | 0% |
When a user requests file organization help:
Ask clarifying questions:
Review the target directory:
bash # Get overview of current structure ls -la target_directory]
# Check file types and sizes find target_directory] -type f -exec file {} \; | head -20
# Identify largest files du -sh target_directory]/ | sort -rh | head -20
# Count file types find target_directory] -type f | sed 's/.\.//' | sort | uniq -c | sort -rn
Summarize findings:
Based on the files, determine logical groupings:
By Type:
By Purpose:
By Date:
When requested, search for duplicates:
bash # Find exact duplicates by hash find directory] -type f -exec md5 {} \; | sort | uniq -d
# Find files with similar names find directory] -type f -printf '%f\n' | sort | uniq -d
# Find similar-sized files find directory] -type f -printf '%s %p\n' | sort -n
For each set of duplicates:
Present a clear plan before making changes:
markdown # Organization Plan for Directory]
## Current State
## Proposed Structure
Directory]/ ├── Work/ │ ├── Projects/ │ ├── Documents/ │ └── Archive/ ├── Personal/ │ ├── Photos/ │ ├── Documents/ │ └── Media/ └── Downloads/ ├── To-Sort/ └── Archive/
## Changes I'll Make
## Files Needing Your Decision
Ready to proceed? (yes/no/modify)
After approval, organize systematically:
bash # Create folder structure mkdir -p "path/to/new/folders"
# Move files with clear logging mv "old/path/file.pdf" "new/path/file.pdf"
# Rename files with consistent patterns # Example: "YYYY-MM-DD - Description.ext"
Important Rules:
After organizing:
markdown # Organization Complete! ✨
## What Changed
## New Structure
Show the new folder tree]
## Maintenance Tips
To keep this organized:
## Quick Commands for You
# Find files modified this week
find . -type f -mtime -7
# Sort downloads by type
custom command for their setup]
# Find duplicates
custom command]
Want to organize another folder?
Other measured skills in the registry, with their headline benchmark lift.