instances/xiaodazi/skills/file-manager/SKILL.md
Local file management skill for creating, organizing, searching, and batch-renaming files and folders on the user desktop.
npx skillsauth add malue-ai/dazee-small file-managerInstall 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 命令操作本地文件系统。
ls -la "/path/to/dir"
mkdir -p "/path/to/new/folder"
mv "/source/file.txt" "/destination/"
将文件按扩展名分类到对应文件夹:
# 示例:按文件类型分类
for ext in pdf docx xlsx png jpg; do
mkdir -p "$TARGET_DIR/$ext"
mv "$SOURCE_DIR"/*.$ext "$TARGET_DIR/$ext/" 2>/dev/null
done
# 按名称搜索
find "/path" -name "*.pdf" -type f
# 按内容搜索(文本文件)
grep -rl "关键词" "/path" --include="*.txt" --include="*.md"
# 示例:添加日期前缀
for f in /path/*.pdf; do
mv "$f" "/path/$(date +%Y%m%d)_$(basename "$f")"
done
trash 命令,避免直接 rmdevelopment
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.