File Organizer Skill
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to do what it says, but it can rearrange local files and writes a local undo history, so use it carefully.
This is reasonable to use for local file organization. Before making changes, run the dry-run command, verify the target folder, avoid recursive mode unless needed, and keep the undo history file trusted and private.
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.
If run on the wrong folder, or with recursive mode unintentionally, it may move many local files into new folders.
The script can move local files, and the optional recursive mode can broaden the operation to many files under the chosen directory. This is purpose-aligned for a file organizer but should be used intentionally.
parser.add_argument("--recursive", action="store_true", help="Deep scan") ... shutil.move(file_path, final_dest)Run with --dry-run first, choose a narrow directory, and use --recursive only when you deliberately want subfolders reorganized.
The history file may reveal filenames and paths, and undo relies on the contents of that file.
The script persists a local history file containing source and destination file paths so undo can replay the moves.
self.history.append({"src": file_path, "dst": final_dest}) ... json.dump(self.history, f, indent=2)Keep organize_history.json private, use undo only with a trusted history file generated by this script, and delete the history when it is no longer needed.
