Agent skill

file-organizer

Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.

Prat011github.com/Prat011GitHub ↗
claude-codecodex
Install
npx skills add Prat011/awesome-llm-skills --skill file-organizer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Path: file-organizer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,435
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# File Organizer 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. ## When to Use This Skill - Your Downloads folder is a chaotic mess - You can't find files because they're scattered everywhere - You have duplicate files taking up space - Your folder structure doesn't make sense anymore - You want to establish better organization habits - You're starting a new project and need a good structure - You're cleaning up before archiving old projects ## What This Skill Does 1. **Analyzes Current Structure**: Reviews your folders and files to understand what you have 2. **Finds Duplicates**: Identifies duplicate files across your system 3. **Suggests Organization**: Proposes logical folder structures based on your content 4. **Automates Cleanup**: Moves, renames, and organizes files with your approval 5. **Maintains Context**: Makes smart decisions based on file types, dates, and content 6. **Reduces Clutter**: Identifies old files you probably don't need anymore ## How to Use ### From Your Home Directory ``` cd ~ ``` Then run Claude Code and ask fo

What's inside
Steps it walks through
  1. When to Use This Skill
  2. What This Skill Does
  3. How to Use
  4. From Your Home Directory
  5. Specific Organization Tasks
  6. Instructions
  7. Examples
  8. Example 1: Organizing Downloads (From Justin Dielmann)
  9. Example 2: Finding and Removing Duplicates
  10. Example 3: Restructuring Projects Folder
  11. Example 4: Organizing Photos by Date
  12. Common Organization Tasks
  13. Downloads Cleanup
  14. Project Organization
Commands it runs
ls -la [target_directory]
find [target_directory] -type f -exec file {} \; | head -20
du -sh [target_directory]/* | sort -rh | head -20
find [target_directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
find [directory] -type f -exec md5 {} \; | sort | uniq -d
find [directory] -type f -printf '%f\n' | sort | uniq -d
find [directory] -type f -printf '%s %p\n' | sort -n
mkdir -p "path/to/new/folders"
mv "old/path/file.pdf" "new/path/file.pdf"
More from awesome-llm-skills
All skills →
About this skill
What does the file-organizer skill do?

Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.

How do I install it?

Run `npx skills add Prat011/awesome-llm-skills --skill file-organizer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From Prat011/awesome-llm-skills, a repository with 1,435 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going