File Drop Organizer
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a local, review-first file organizer that scans a user-chosen directory and produces a report rather than moving or deleting files by default.
Before installing, note that this is a local directory-audit helper: use it on Downloads or temporary folders, not broad private or system directories. Its artifacts emphasize dry-run review and no deletion by default, so review the proposed organization plan before allowing any actual file changes.
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.
The skill may run a local script to inspect a chosen folder and write a report file.
The skill can ask the agent to run a local Python helper against a user-provided input path and output path. This is expected for the directory-organizer purpose, but users should ensure the input and output paths are intentional.
如运行环境允许 shell / exec,可使用:`python3 "{baseDir}/scripts/run.py" --input <输入文件> --output <输出文件>`Use it on Downloads, temporary, or other intended folders first, and review the generated plan before allowing any real file moves.
If the chosen folder contains sensitive filenames or document headings, those details may appear in the report shown to the agent or user.
The helper recursively samples text-like files from the provided directory and uses filenames and some document content, such as Markdown headings, to build a report. This is purpose-aligned, but generated summaries can include private local context.
for path in root.rglob("*") ... if path.is_file(): ... results.append(path)Point the skill only at folders you intend to review, avoid broad home or system directories, and redact sensitive material before sharing outputs.
