Skill Creator

Security checks across malware telemetry and agentic risk

Overview

This is a coherent skill-authoring helper with user-directed local file and packaging actions, and the artifacts show no hidden network, credential, or destructive behavior.

Install if you want a helper for creating and packaging AgentSkills. Run its scripts only on intended directories, review generated or modified skills before enabling them, and avoid placing secrets or private files inside skill folders that may be packaged.

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.

#
ASI05: Unexpected Code Execution
Low
What this means

Running the helper scripts can create skill directories and package files on the local filesystem.

Why it was flagged

The skill instructs the user or agent to run bundled local helper scripts. This is central to creating and packaging skills, but it still means local code will create or modify files.

Skill content
Run the init script:
```bash
scripts/init_skill.py <skill-name> --path <output-directory> [--resources scripts,references,assets]
```
Recommendation

Run the scripts only in directories you control, with paths you intended to use, and review the generated skill before installing it.

#
ASI02: Tool Misuse and Exploitation
Low
What this means

If a user leaves secrets, private notes, or unintended files inside a skill folder, they may be bundled into the .skill package.

Why it was flagged

The packager walks the skill directory and archives regular files under it. This is expected for packaging, and the script includes symlink and path-containment checks, but files placed inside the skill folder may be included.

Skill content
for file_path in skill_path.rglob("*"):
...
zipf.write(file_path, arcname)
Recommendation

Keep credentials and private files out of skill directories, and inspect package contents before distributing a generated .skill file.

#
ASI06: Memory and Context Poisoning
Info
What this means

A generated skill could persist data across runs if the user chooses to include this pattern.

Why it was flagged

The skill teaches authors how to add persistent memory to other skills. This is an advanced, disclosed design pattern, not hidden behavior in this skill, but generated memory-enabled skills need clear scope and retention rules.

Skill content
Skills can include memory by storing data within them:
...
This skill stores data in `~/.my-skill/data.json`.
Recommendation

Only add memory to generated skills when needed, document what is stored, where it is stored, and when it should be deleted.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

Users have less external context about the publisher or upstream source of the helper scripts.

Why it was flagged

The registry metadata provides limited provenance for a skill that includes executable helper scripts. The scripts are present in the artifacts and appear purpose-aligned, so this is a provenance notice rather than a concern.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included scripts before use and prefer installing from publishers or repositories you trust.