Nika Skill Creator

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 with non-default paths or --force, the script could create or overwrite local skill-document files.

Why it was flagged

The helper can create files in a caller-selected output directory and overwrite existing files when --force is used. This is consistent with a skill creator, but it is still local mutation authority the user should intentionally control.

Skill content
parser.add_argument("--out-dir", default="skills", help="Output base directory (default: skills).") ... parser.add_argument("--force", action="store_true", help="Overwrite existing files if they already exist.") ... path.write_text(content, encoding="utf-8")
Recommendation

Use the default output location unless you need otherwise, inspect generated files before relying on them, and use --force only when you intentionally want to replace existing files.

What this means

The skill may not work unless Python 3 is available, and users are asked to run included local scripts.

Why it was flagged

The skill relies on local Python helper scripts, while the registry metadata lists no required binaries or install specification. The scripts are included and simple, but the runtime dependency is under-declared.

Skill content
python3 scripts/init_nika_skill.py "你的目标技能中文名" ... python3 scripts/validate_nika_skill.py "skills/你的目标技能中文名"
Recommendation

Confirm Python 3 is available and review the included scripts before running them, especially when installing from an unknown source.