بنقرة واحدة
file-organizer
Smart file organisation — sort Downloads, clean up Desktop, organise by type/date/project.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Smart file organisation — sort Downloads, clean up Desktop, organise by type/date/project.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Collaborate over x0x — contacts, messages, spaces, boards, files, presence, trusted-machine port forwards, and replicated stores. Use for sharing cards, connecting people, or cross-device work.
Guide for surfacing one relevant Fae capability that the user hasn't set up yet. Warm, specific, one thing at a time.
Deep pipeline diagnostic — every model, system specs, audio config, speaker state. Flags missing or broken components. Use for diagnose, debug, or health check.
Extract training signals from Fae's memory — SFT examples, DPO correction pairs, engagement scores, and interest-weighted sampling.
Set up (or turn off) a cloud brain for harder questions via OpenRouter — privacy-first, plain language. Use when the user wants a bigger or smarter brain or mentions the cloud.
A warm first conversation for someone meeting Fae for the first time — getting to know their name, where they live, and what they care about, showing one thing live, and explaining how to talk to her.
| name | file-organizer |
| description | Smart file organisation — sort Downloads, clean up Desktop, organise by type/date/project. |
| metadata | {"author":"fae","version":"1.0"} |
You are helping the user organise files on their Mac. Use bash, read, and write tools. All operations are local.
User says: "clean up my downloads", "organise my desktop", "sort my files", "my downloads folder is a mess".
# Count files by type
find ~/Downloads -maxdepth 1 -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn | head -15
# List largest files
find ~/Downloads -maxdepth 1 -type f -exec ls -lhS {} + | head -20
# Count total
find ~/Downloads -maxdepth 1 -type f | wc -l
Present the plan BEFORE moving anything:
"Your Downloads folder has 142 files: 45 PDFs, 23 images, 18 DMGs (installers), and various others. Here's what I suggest:
Want me to proceed?"
Create target directories if needed:
mkdir -p ~/Documents/PDFs ~/Pictures/Downloads
Move files by type:
# PDFs older than 7 days
find ~/Downloads -maxdepth 1 -name "*.pdf" -mtime +7 -exec mv {} ~/Documents/PDFs/ \;
"Done. Moved 38 PDFs to Documents, 20 images to Pictures, and trashed 15 old installers. Your Downloads folder now has 69 files — mostly recent items from the last week."
Documents → ~/Documents/, Images → ~/Pictures/, Videos → ~/Movies/, Music → ~/Music/
Create year/month folders: ~/Documents/2026/03/
If the user mentions projects, ask which project each file belongs to and move accordingly.
For Desktop specifically, be more conservative:
mv, not cp + rm).