File Auto Organizer
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to do what it claims—organize files locally—but it can move files in the chosen folder, so users should confirm the target path before running it.
This looks like a straightforward local file organizer. Before installing or running it, make sure you understand that it will move files inside the folder you provide, such as Downloads or Desktop. Avoid running it on important project folders unless you have a backup or are comfortable reorganizing their contents.
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.
Files in the selected folder may be relocated or renamed, which can disrupt workflows if the wrong folder is chosen.
The script moves every file in the user-supplied folder into generated category/date folders. This is purpose-aligned, but it mutates local files without a preview, dry-run, or explicit confirmation step.
for item in folder.iterdir(): ... shutil.move(str(item), str(new_path))
Run it only on folders you intend to reorganize, preferably after checking the path and keeping backups for important files.
The skill may not run on systems without Python 3 even though the registry summary does not clearly declare that dependency.
The packaged metadata requires Python 3 and has no install step, while the registry summary lists no required binaries. This is a small metadata inconsistency rather than unsafe installation behavior.
"requires": {
"bins": ["python3"]
},
"install": []Ensure Python 3 is available before use; no additional install action is indicated by the artifacts.
