agent-project-structure

PassAudited by VirusTotal on May 8, 2026.

Overview

Type: OpenClaw Skill Name: agent-project-structure Version: 1.0.1 The skill bundle is a project organization utility designed to create and verify a standardized directory structure. The included Python scripts (check_structure.py and create_structure.py) perform routine filesystem operations such as directory creation and existence checks, which are entirely consistent with the stated purpose in SKILL.md and PROJECT_STRUCTURE.md. There are no indicators of data exfiltration, malicious execution, or harmful prompt injection.

Findings (0)

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.