File Organizer
PassAudited by ClawScan on May 1, 2026.
Overview
This skill is a straightforward file-organization helper, but users should review commands because it can move, rename, create, or delete workspace files.
Before installing or using this skill, be aware that its commands can change many files at once. Keep it limited to ~/openclaw or another intended workspace, run dry runs first, back up important work, and do not allow delete commands unless you explicitly approve them.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
A mistaken pattern or destination could move or rename many workspace files.
The skill documents broad shell-based batch file moves, which can affect many files if used incorrectly, but this is directly aligned with its file organization purpose.
`find . -name "*.ext" -exec mv {} <dest>/ \;` - Batch by extensionUse the documented dry-run approach, verify paths and destinations, and keep operations within the intended workspace.
Incorrectly scoped restructuring commands could disrupt project layout or remove empty placeholder directories.
The reference examples include recursive restructuring and deletion of empty directories, so a poorly scoped command could propagate changes across a project tree.
find . -type f -exec mv {} . \;\n# Remove empty dirs\nfind . -type d -empty -deletePreview command output first, make a backup or commit before restructuring, and require explicit user approval before any delete operation.
