一键导入
file-manager
Find, organize, and manage files on the user's computer. Search by name, type, size, or date. Move, rename, compress, and clean up files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find, organize, and manage files on the user's computer. Search by name, type, size, or date. Move, rename, compress, and clean up files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage chat threads — create, list, inspect, delete, and search conversations. Use when users want to organize chats or open a specific thread.
当agent因maxIterations中断时,恢复 Task Working Memory 并继续执行未完成的任务。用户说"继续"时自动触发。
Enter a planning-first workflow with structured steps, checkpoints, and explicit approval before execution.
Schedule recurring work, reminders, and periodic checks through the Aliceloop daemon cron service.
Planned Alice-native selfie workflow for self-portraits, local album management, and future face-reference generation support.
Track durable Task Working Memory across sessions with the local Aliceloop tracked-task CLI.
| name | file-manager |
| description | Find, organize, and manage files on the user's computer. Search by name, type, size, or date. Move, rename, compress, and clean up files. |
| allowed-tools | ["bash","read","write","glob","grep"] |
Help users find and organize files on their computer.
# By name (case-insensitive)
find ~/Desktop ~/Documents ~/Downloads -iname "*report*" -type f 2>/dev/null
# By extension
find ~/Downloads -name "*.pdf" -type f
# By size (larger than 100MB)
find ~ -size +100M -type f 2>/dev/null | head -20
# Recently modified (last 7 days)
find ~/Documents -mtime -7 -type f | head -20
# Duplicates by size (potential dupes)
find ~/Downloads -type f -exec ls -la {} + | sort -k5 -n | uniq -d -f4
# Move all PDFs from Downloads to Documents
mv ~/Downloads/*.pdf ~/Documents/
# Create dated folder and move files
mkdir -p ~/Documents/$(date +%Y-%m-%d)
# Rename files (pattern)
for f in *.jpeg; do mv "$f" "${f%.jpeg}.jpg"; done
# Show large files in Downloads
du -sh ~/Downloads/* | sort -rh | head -20
# Empty trash (macOS)
rm -rf ~/.Trash/*
# Clear old downloads (older than 30 days)
find ~/Downloads -mtime +30 -type f
# Create zip
zip -r archive.zip folder/
# Create tar.gz
tar czf archive.tar.gz folder/
# Extract
unzip archive.zip
tar xzf archive.tar.gz
trash over rm when available (recoverable)