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.

What this means

A mistaken pattern or destination could move or rename many workspace files.

Why it was flagged

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.

Skill content
`find . -name "*.ext" -exec mv {} <dest>/ \;` - Batch by extension
Recommendation

Use the documented dry-run approach, verify paths and destinations, and keep operations within the intended workspace.

What this means

Incorrectly scoped restructuring commands could disrupt project layout or remove empty placeholder directories.

Why it was flagged

The reference examples include recursive restructuring and deletion of empty directories, so a poorly scoped command could propagate changes across a project tree.

Skill content
find . -type f -exec mv {} . \;\n# Remove empty dirs\nfind . -type d -empty -delete
Recommendation

Preview command output first, make a backup or commit before restructuring, and require explicit user approval before any delete operation.