Smart File Manager

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is mostly a coherent workspace file organizer, but its repair script can delete an entire output subfolder without confirming that all files were preserved.

Use this only for disposable or backed-up /workspace file organization. Before allowing the repair script to run, manually check the nested output folder, because it may delete files that were not moved.

Findings (1)

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.

What this means

Running the normal repair step could delete generated files or unrecognized subfolders under /workspace/my_outputs/output, including file types the skill otherwise claims to manage.

Why it was flagged

The repair script moves only some expected subfolders and then recursively deletes the whole nested output directory, with no confirmation, backup, or check that all contents were preserved.

Skill content
mv /workspace/my_outputs/output/images/* /workspace/my_outputs/images/ 2>/dev/null ... rm -rf /workspace/my_outputs/output
Recommendation

Do not run fix-nested.sh automatically on valuable workspaces. Inspect /workspace/my_outputs/output first, move all contents including docxs and root-level files, and replace the recursive delete with removal only after the directory is empty or after explicit user approval.