Filesystem 1.0.0

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only skill provides disclosed filesystem command recipes; it is purpose-aligned, but users should review destructive file operations before use.

This skill is reasonable for local filesystem work, but treat delete, move, rename, and bulk replacement commands as high-impact. Ask the agent to show the exact matched files and command before running them, avoid broad paths such as home or system directories unless intentional, and install optional helper tools only if you trust the package source.

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

If used carelessly, the agent could move, overwrite, or delete many local files.

Why it was flagged

The skill documents recursive batch deletion and other broad filesystem shell operations. This is expected for a filesystem utility and is paired with safety reminders, but a mistaken path or pattern could delete user data.

Skill content
批量删除: find . -name "*.tmp" -delete ... find . -type f -mtime +30 -delete
Recommendation

Require confirmation before delete, move, rename, or search-and-replace commands; preview matched files first and keep backups for important directories.

What this means

Installing optional helper tools adds external software to the local environment.

Why it was flagged

The skill suggests optional package-manager installs for helper tools. These are disclosed, user-directed setup snippets rather than automatic installation, but they still depend on external package provenance.

Skill content
brew install tree ... brew install fd ... brew install ripgrep
Recommendation

Install helper tools only from trusted package repositories and skip optional installs if the built-in commands are sufficient.