Skill Creator

PassAudited by ClawScan on May 1, 2026.

Overview

This skill coherently scaffolds new skill files locally and shows no credential use, network access, hidden persistence, or destructive behavior.

This appears safe for its intended use: scaffolding a new skill. Before installing, be aware that it runs a local Python script to create files, use a safe output directory, and review generated content before publishing.

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 skill can create a new skill folder and template files on your machine.

Why it was flagged

The bundled tool creates persistent local files in a user-selected parent directory. This is purpose-aligned and scoped, with overwrite protection, but users should notice that it mutates the local filesystem.

Skill content
skill_dir = output_dir / name
if skill_dir.exists():
    raise FileExistsError(...)
skill_dir.mkdir(parents=True)
(skill_dir / "SKILL.md").write_text(...)
Recommendation

Choose the output directory deliberately and review the generated files before editing, testing, or publishing them.

What this means

You have less external information about the publisher, repository, or maintenance history.

Why it was flagged

The package includes reviewable code and no remote installer, but it does not provide an external source or homepage for provenance verification.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included files and install only if you trust the registry publisher or have verified the package contents.