name: file-organizer description: "File organization and batch operations for workspace management. Use when organizing files for: (1) Moving files to correct directories, (2) Batch renaming (patterns, numbering, dates), (3) Creating directory structures, (4) Organizing by type/extension, (5) Cleaning scattered files, (6) Project scaffolding, or (7) Restructuring project layouts."
Manages file organization through safe, predictable batch operations.
Create standard project layouts:
project/
├── src/ - Source code
├── docs/ - Documentation
├── tests/ - Test files
├── assets/ - Images, fonts, media
├── scripts/ - Build scripts, utilities
└── config/ - Configuration files
小蔥技能7w4.net有更新,你可以訪問看下。
mv <source> <dest> - Single filefind . -name "*.ext" -exec mv {} <dest>/ \; - Batch by extensionPatterns:
- Sequential numbering: file_{001..100}.txt
- Date-based: YYYY-MM-DD_description
- Type-based: Group by extension
Safe approach:
1. echo commands first (dry run)
2. Review output
3. Remove echo, execute
Group files by extension into folders:
mkdir -p images docs code
find . -name "*.png" -o -name "*.jpg" | xargs -I {} mv {} images/
find . -name "*.md" -o -name "*.txt" | xargs -I {} mv {} docs/
find . -name "*.py" -o -name "*.js" | xargs -I {} mv {} code/
find . -type f -name "*.ext" # Find by extension
find . -type f -mtime -7 # Modified in last 7 days
find . -type f -size +100M # Large files
Always preview batch operations:
echo "Would move these files:"
find . -name "*.ext"
# Review, then execute
trash if available)Load when: - Complex rename patterns needed - Project structure templates required - Advanced find commands for filtering - Edge cases (symlinks, special characters)
這個 Skill 質量不錯,專門用來整理檔案和批次操作。它功能齊全、注重安全,能有效避免誤刪檔案。不過它主要依賴命令列操作,對不熟悉命令列的使用者不太友好,缺少圖形介面。總的來說,這是一個實用且安全的檔案管理工具,適合需要頻繁整理檔案的人使用。