Python Script Generator

Security checks across malware telemetry and agentic risk

Overview

This appears to be a simple Python template generator with only purpose-aligned local file generation and no evidence of credential access, exfiltration, persistence, or hidden behavior.

This skill looks safe for its stated purpose, but use it in a clean project folder because it writes generated files locally and may overwrite an existing file with the same name.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

#
ASI02: Tool Misuse and Exploitation
Low
What this means

If used carelessly, it may replace an existing local file with generated template code.

Why it was flagged

The helper writes a generated Python file using a user-supplied name and makes it executable. This is expected for a script generator, but it can overwrite a same-named file in the working directory.

Skill content
cat > "$NAME.py" << 'PY' ... chmod +x "$NAME.py"
Recommendation

Run it in a dedicated project directory and choose output names carefully.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The skill may not install or run exactly as the examples imply.

Why it was flagged

The documentation references a command, while the registry states there is no install spec and the package includes a shell file. This is a packaging clarity issue, not evidence of malicious behavior.

Skill content
python-script-generator my --type cli
Recommendation

Check how the command is exposed before relying on it, and review the included shell file if invoking it manually.