multiAI Summary Pending
file-organizer-skill
Organize files in directories by grouping them into folders based on their extensions or date. Includes Dry-Run, Recursive, and Undo capabilities.
3,556 stars
byopenclaw
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/file-organizer-skill/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/1999azzar/file-organizer-skill/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/file-organizer-skill/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How file-organizer-skill Compares
| Feature / Agent | file-organizer-skill | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Organize files in directories by grouping them into folders based on their extensions or date. Includes Dry-Run, Recursive, and Undo capabilities.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# File Organizer (Gold Standard) ## Features - **Smart Sorting**: Group by Extension (Default) or Date (Year/Month). - **Safety**: Conflict resolution (auto-rename), Dry Run mode, and Undo capability. - **Deep Clean**: Recursive scanning option. - **Audit**: Generates `organize_history.json` for tracking. ## Usage ### Basic Sort (by Extension) ```bash python3 scripts/organize.py /path/to/folder ``` ### Date Sort (Year/Month) Great for photos or archives. ```bash python3 scripts/organize.py /path/to/folder --date ``` ### Dry Run (Simulate) See what *would* happen without moving anything. ```bash python3 scripts/organize.py /path/to/folder --dry-run ``` ### Undo Revert changes using the history file. ```bash python3 scripts/organize.py --undo /path/to/folder/organize_history.json ``` ## Config Modify `scripts/organize.py` `get_default_mapping()` to add custom extensions.