Muguozi1 Openclaw File Manager 1 0 0

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a plausible local file manager, but review it carefully because it can delete or move many files and its documentation overstates some safety and testing safeguards.

Install only if you are comfortable with a tool that can modify or delete local files. Start with preview or scan-only modes, test on a small non-critical folder, keep backups, and do not enable cron/watch-style automation until you have reviewed exactly what paths and actions will run.

Findings (4)

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 directory or confirmed too quickly, the tool could remove files the user intended to keep.

Why it was flagged

The deduplication tool can permanently delete files after the user confirms. That is purpose-aligned for duplicate cleanup, but it is a high-impact local file operation.

Skill content
parser.add_argument('--action', choices=['delete', 'move', 'link'], default='delete' ...); if args.action == 'delete': f.unlink()
Recommendation

Run scan-only or preview modes first, back up important folders, prefer moving duplicates to a quarantine directory, and avoid no-confirm or delete options unless the file list is verified.

What this means

A user or agent may overtrust the skill’s safeguards before running destructive file operations.

Why it was flagged

These safety statements are stronger than what the supplied code shows: the scripts include direct unlink deletion paths and do not show log-file recording for all operations.

Skill content
“所有修改操作默认执行 dry-run,确认后再执行”; “删除操作优先移动到隔离区而非永久删除”; “所有操作记录到日志文件便于审计”
Recommendation

Treat the safety claims as unverified, manually review previews, keep backups, and update the documentation or code so deletion, quarantine, confirmation, and logging behavior match.

What this means

If configured, the automation may continue moving files every hour after the original task is forgotten.

Why it was flagged

The reference guide recommends a cron job that repeatedly executes file-moving operations. This is user-directed and purpose-aligned, but it creates persistent automation.

Skill content
0 * * * * python organize.py ~/Downloads --by-type --execute --move
Recommendation

Only add scheduled jobs deliberately, restrict them to safe folders, log their actions, and remove the cron/task-scheduler entry when no longer needed.

What this means

Following that documented feature may fail or may lead a user to fetch or create unreviewed code to fill the gap.

Why it was flagged

SKILL.md documents a watch.py auto-action helper, but the supplied file manifest and full source do not include scripts/watch.py.

Skill content
python scripts/watch.py <directory> --on-change "python scripts/organize.py {path}"
Recommendation

Use only the included scripts unless an additional watch.py implementation is reviewed, and update the manifest or documentation to remove missing helpers.