File organizer
Skill next-open-ai/openclawx/presets/workspaces/file-assistant/skills/file-organizer
a simple openclaw desktop u
npx -y skills add next-open-ai/openclawx --skill file-organizerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Organizes, categorizes, and renames files in a directory based on user instructions. Uses bash commands to move, copy, or rename files.
SKILL.md
0.9 KB, as published. Nobody here has run it
File Organizer Skill
Use this skill when the user asks to organize, categorize, or rename files in a specific directory.
Workflow
- Use
lsorfindto list the files in the target directory to understand the current structure and file types. - Based on the user's intent (e.g., "group by extension", "sort images by date"), formulate a plan using
bashcommands likemkdir,mv,cp, orrename. - Before executing destructive commands (like moving or renaming many files), EXPLICITLY confirm the plan with the user by asking for permission using the
notify_usertool unless the user has already explicitly authorized it. - Execute the bash script to organize the files.
- Verify the result using
ls -laand report back to the user.