智能整理电脑文件与文件夹,查重清理并优化目录结构,提升数字工作区整洁度。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "file-organizer" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/file-organizer/SKILL.md 2. 保存为 ~/.claude/skills/file-organizer/SKILL.md 3. 装好后重载技能,告诉我可以用了
请分析我下载文件夹中的文件类型、命名模式和重复项,按用途建立更清晰的分类结构,并给出可执行的整理与清理建议。
一份下载文件夹的分类方案、重复文件列表,以及具体的整理和删除建议。
帮我整理这个项目资料文件夹,识别过期版本、重复素材和命名不一致的问题,并建议统一的目录层级与命名规范。
一份项目资料库优化方案,包含旧版本识别结果、重复素材清单和统一规范建议。
为我的电脑文件系统设计一个定期清理方案:自动识别临时文件、重复文档和长期未使用文件,并说明每类文件的处理规则。
一个可执行的自动清理方案,包含识别规则、处理逻辑和建议的执行频率。
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.
cd ~
Then run Claude Code and ask for help:
Help me organize my Downloads folder
Find duplicate files in my Documents folder
Review my project directories and suggest improvements
Organize these downloads into proper folders based on what they are
Find duplicate files and help me decide which to keep
Clean up old files I haven't touched in 6+ months
Create a better folder structure for my [work/projects/photos/etc]
When a user requests file organization help:
Understand the Scope
Ask clarifying questions:
Analyze Current State
Review the target directory:
# Get overview of current structure
ls -la [target_directory]
# Check file types and sizes
find [target_directory] -type f -exec file {} \; | head -20
# Identify largest files
du -sh [target_directory]/* | sort -rh | head -20
# Count file types
find [target_directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
Summarize findings:
Identify Organization Patterns
Based on the files, determine logical groupings:
By Type:
By Purpose:
By Date:
Find Duplicates
When requested, search for duplicates:
# Find exact duplicates by hash
find [directory] -type f -exec md5 {} \; | sort | uniq -d
# Find files with same name
find [directory] -type f -printf '%f\n' | sort | uniq -d
# Find similar-sized files
find [directory] -type f -printf '%s %p\n' | sort -n
For each set of duplicates:
Propose Organization Plan
Present a clear plan before making changes:
…
通过 Rube MCP 自动化 Agiled 中的客户、项目与业务流程操作。
通过自然语言执行文件与文件夹管理、读写、整理和批量操作。