Beta Skill Maker

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This is a simple local skill-file generator with no evidence of credential use, network access, hidden execution, or data exfiltration.

This skill appears safe for its stated purpose. Use a fresh output folder, inspect the generated SKILL.md before publishing it, and be aware that the generated template is basic and may need manual editing.

Static analysis

No static analysis findings were reported for this release.

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 pointed at an existing folder, it may replace existing SKILL.md, README.md, or references/overview.md files.

Why it was flagged

The script creates the requested output directory and writes generated files using write mode, which can overwrite existing files with the same names. This is aligned with the skill's purpose but worth user awareness.

Skill content
os.makedirs(args.output, exist_ok=True)
with open(os.path.join(args.output, 'SKILL.md'), 'w') as f:
Recommendation

Run it in a new or empty output directory and review the generated files before publishing.