Cn Batch File Renamer

PassAudited by ClawScan on May 14, 2026.

Overview

This is a simple local batch-renaming tool; the main thing to watch is that running it without dry-run can rename many entries in the chosen folder.

This skill appears safe for its stated purpose. Before installing or using it, remember that it can rename real files in the directory you specify; run the dry-run command first and avoid pointing it at broad or important folders unless you have a backup.

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

If pointed at the wrong folder, it could rename many files or directory entries and disrupt organization or references to those paths.

Why it was flagged

The tool can rename every entry in the specified directory when run without --dry-run. This is purpose-aligned for a batch renamer, but users should notice the local file mutation and that it does not filter only regular files.

Skill content
files = sorted(os.listdir(args.dir)) ... if not args.dry_run and not os.path.exists(new_path):
            os.rename(old_path, new_path)
Recommendation

Use --dry-run first, choose a narrow target directory, and back up important folders before running the actual rename.