instances/xiaodazi/skills/smart-desktop-organizer/SKILL.md
Intelligently organize messy desktops and download folders by semantically categorizing files, deduplicating, and archiving old items.
npx skillsauth add malue-ai/dazee-small smart-desktop-organizerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
帮助用户智能整理桌面、下载文件夹等混乱目录:按语义分类、清理重复、归档旧文件。
通过 bash 命令 + LLM 语义判断完成。先扫描目录,再由 LLM 分析每个文件的用途和分类,最后执行整理。
# 列出目标目录的文件(含大小和修改日期)
ls -lhS ~/Desktop/ | head -50
ls -lhS ~/Downloads/ | head -50
根据文件名、扩展名、修改日期,将文件分为以下类别:
| 类别 | 典型文件 | 目标文件夹 | |---|---|---| | Documents | .pdf, .docx, .xlsx, .pptx | ~/Documents/Organized/ | | Images | .png, .jpg, .gif, .svg | ~/Pictures/Organized/ | | Archives | .zip, .tar.gz, .rar | ~/Documents/Archives/ | | Installers | .dmg, .exe, .pkg | 清理或归档 | | Temp | .tmp, .crdownload, partial | 直接删除 |
# 创建分类目录
mkdir -p ~/Documents/Organized ~/Pictures/Organized ~/Documents/Archives
# 移动文件(示例)
mv ~/Desktop/*.pdf ~/Documents/Organized/
mv ~/Desktop/*.png ~/Pictures/Organized/
# 按 MD5 查找重复文件
find ~/Downloads -type f -exec md5sum {} + | sort | uniq -w32 -dD
# 找出 90 天未修改的文件
find ~/Desktop -type f -mtime +90 -not -name ".*"
trash,避免 rm. 开头的文件development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.