Clawhub Skill Creator

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is coherent for creating and packaging Clawhub skills, with only expected cautions around local scripts and publishing commands.

This skill appears safe for its stated purpose. Before installing or using it, be aware that its examples and scripts can create files, package directories, and publish or install Clawhub skills; review generated files and confirm your active Clawhub account before running publish/install commands.

Findings (3)

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

If run without review, the agent could publish a skill version or update registry content using the user's Clawhub context.

Why it was flagged

The skill documents a registry publishing command. This is expected for a skill-creation workflow, but publishing can make content public or update registry state.

Skill content
clawhub publish . --version X.Y.Z --changelog "Description"
Recommendation

Review the generated skill and explicitly approve any publish or install command before it is run.

What this means

Registry commands may act under the user's current Clawhub account permissions.

Why it was flagged

The workflow uses Clawhub CLI account operations such as inspect, list, publish, and install. These are purpose-aligned, but may rely on an already-authenticated local Clawhub identity.

Skill content
clawhub inspect skill-name --json | grep version
Recommendation

Confirm which Clawhub account is active before publishing or installing skills.

What this means

The packaging helper may fail if jq or zip are missing, and it will include files from the chosen skill directory unless excluded.

Why it was flagged

The helper script depends on local jq and zip binaries and packages the selected skill directory. This is appropriate for packaging, but the registry requirements do not declare these helper-tool dependencies.

Skill content
if ! jq . "$SKILL_PATH/_meta.json" > /dev/null 2>&1; then ... cd "$SKILL_PATH" && zip -r "$OLDPWD/$PACKAGE_FILE" .
Recommendation

Install required local tools if using the helper script, and inspect the directory/package before publishing.