Nika Skill Creator
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to do what it says—create and validate Nika skill documents—but it uses local Python scripts that write files, so output paths and overwrite options should be used carefully.
This looks safe to use for generating Nika skill documents. Run it in the intended repository, keep the default output path when possible, avoid --force unless you mean to overwrite files, and review generated skill docs before installing or using them.
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.
If run with non-default paths or --force, the script could create or overwrite local skill-document files.
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.
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")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.
The skill may not work unless Python 3 is available, and users are asked to run included local scripts.
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.
python3 scripts/init_nika_skill.py "你的目标技能中文名" ... python3 scripts/validate_nika_skill.py "skills/你的目标技能中文名"
Confirm Python 3 is available and review the included scripts before running them, especially when installing from an unknown source.
