Back to skill
v1.0.0

Lucky Skill Creator

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 8:21 AM.

Analysis

This skill appears to be a legitimate skill-building helper whose local file creation and packaging behavior is expected for its purpose.

GuidanceThis looks safe to install for creating and packaging skills. Use it on trusted skill directories, review generated templates and archives before sharing them, and avoid packaging folders that contain secrets or unrelated private files.

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.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
scripts/package_skill.py
for file_path in skill_path.rglob("*"):
...
zipf.write(file_path, arcname)

The packaging helper recursively includes files from the user-selected skill directory into a .skill archive. This is expected for a packager, but selecting the wrong directory could bundle unintended files.

User impactA user could accidentally package private files if they point the tool at a directory that contains them.
RecommendationRun the packager only on intended skill folders and inspect the generated .skill archive before publishing or sharing it.
Unexpected Code Execution
SeverityInfoConfidenceHighStatusNote
scripts/init_skill.py
example_script.write_text(EXAMPLE_SCRIPT.format(skill_name=skill_name))
example_script.chmod(0o755)

The initializer can create an executable example script as part of a new skill template. This is disclosed and aligned with the skill-creation purpose, but generated executable placeholders should be reviewed.

User impactGenerated skill templates may include executable helper files that could later be run or modified.
RecommendationReview, replace, or delete generated example scripts before packaging or installing a created skill.