# File Organizer

> Organizes files in a folder into subfolders by type.

- Skill: `waelabouceo/file-organizer` (Agent Skill)
- Install (CLI): `npx skillmds@latest add waelabouceo/file-organizer`
- Raw SKILL.md: https://api.skillmd.com/api/skills/waelabouceo/file-organizer/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: WaelAbouceo (https://skillmd.com/u/waelabouceo)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/waelabouceo/file-organizer

---


# File Organizer

Sort a messy download folder into `images/`, `docs/`, and `archives/`.

```bash
mkdir -p images docs archives
mv *.png *.jpg images/ 2>/dev/null || true
mv *.pdf *.docx docs/ 2>/dev/null || true
mv *.zip *.tar.gz archives/ 2>/dev/null || true
```

Only touches the current working directory. Ask the user before moving anything.

