Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks...
This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization.
cd ~
Then run Claude Code and ask for help:
Help me organize my Downloads folder
Find duplicate files in my Documents folder
Review my project directories and suggest improvements
Organize these downloads into proper folders based on what they are
Find duplicate files and help me decide which to keep
Clean up old files I haven't touched in 6+ months
Create a better folder structure for my [work/projects/photos/etc]
SAFETY WARNING: This skill involves moving and deleting files. You MUST ALWAYS explicitly ask for user confirmation before deleting any files. When moving large numbers of files, ensure you have a way to undo or log the operations.
When a user requests file organization help:
Understand the Scope
Ask clarifying questions:
Analyze Current State
Review the target directory to understand:
Identify Organization Patterns
Based on the files, determine logical groupings:
By Type:
By Purpose:
By Date:
Find Duplicates
When requested, search for duplicates using available system tools.
Note: Avoid using platform-specific flags (like find -printf or md5 on Linux/Windows) unless you are sure of the environment.
Strategies:
shasum, cksum, or md5sum depending on OS).For each set of duplicates:
Propose Organization Plan
Present a clear plan before making changes:
# Organization Plan for [Directory]
## Current State
- X files across Y folders
- [Size] total
- File types: [breakdown]
- Issues: [list problems]
## Proposed Structure
[Directory]/
├── Work/
│ ├── Projects/
│ ├── Documents/
│ └── Archive/
├── Personal/
│ ├── Photos/
│ ├── Documents/
│ └── Media/
└── Downloads/
├── To-Sort/
└── Archive/
## Changes I'll Make
1. **Create new folders**: [list]
2. **Move files**:
- X PDFs -> Work/Documents/
- Y images -> Personal/Photos/
- Z old files -> Archive/
3. **Rename files**: [any renaming patterns]
4. **Delete**: [duplicates or trash files]
## Files Needing Your Decision
- [List any files you're unsure about]
Ready to proceed? (yes/no/modify)
User: "My Downloads folder is a mess with 500+ files. Help me organize it."
Process:
User: "Find duplicate files in my Documents and help me decide which to keep."
Output:
# Found 23 Sets of Duplicates (156 MB total)
## Duplicate Set 1: "proposal.pdf"
- `/Documents/proposal.pdf` (2.3 MB, modified: 2024-03-15)
- `/Documents/old/proposal.pdf` (2.3 MB, modified: 2024-03-15)
- `/Desktop/proposal.pdf` (2.3 MB, modified: 2024-03-10)
**Recommendation**: Keep `/Documents/proposal.pdf` (most recent in correct location)
Delete the other 2 copies?
[Continue for all duplicates...]