file-organizer
Installation
SKILL.md
File Organizer
Overview
Organize, rename, and categorize files based on content analysis, metadata, and patterns. Handles messy directories by sorting files into logical folder structures, applying consistent naming conventions, and detecting duplicates. Works with any file type.
Instructions
When a user asks to organize files, determine which operation they need:
Task A: Sort files by type into folders
#!/bin/bash
# organize_by_type.sh - Sort files into folders by extension
SOURCE_DIR="${1:-.}"
DRY_RUN="${2:-false}"
declare -A TYPE_MAP=(
Related skills