agent-project-structure

PassAudited by ClawScan on May 8, 2026.

Overview

This skill is a coherent project-folder-structure helper; it does not show exfiltration or hidden behavior, but its create script will write files in the path you provide.

This appears safe for its stated purpose. Before installing or using it, understand that the create script changes the filesystem under the path you give it; use a new directory or back up existing projects before running it.

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

Running the create script on an existing project could add folders and replace the sample settings file.

Why it was flagged

The helper creates standard files, including config/settings.json, using write mode under the user-provided project path; if used on an existing project after confirmation, this can overwrite those files.

Skill content
'config/settings.json': '{}', ... with open(full_path, 'w') as f: f.write(content)
Recommendation

Use it on a new or backed-up project path, and review the target directory before confirming continuation on an existing path.

What this means

The helper commands may fail if Python is not available in the environment.

Why it was flagged

The skill documents Python script execution, while the registry requirements declare no required binaries; this is an under-declared local runtime dependency rather than suspicious behavior.

Skill content
python scripts/check_structure.py <项目路径>
Recommendation

Ensure Python is installed before using the helper scripts, or follow the directory structure manually.