Publish Skill Final
PassAudited by ClawScan on May 1, 2026.
Overview
This UI design skill is generally safe; its main thing to notice is an optional script that can add persistent design instructions to a project’s .cursorrules file.
Before installing, understand that the skill is mostly design reference material. If you use the optional script, it will append design guidance to the current project’s .cursorrules file, which can affect how AI tools behave later in that project.
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.
Running the command executes local code and changes a project file.
The skill documents running a local Python helper. This is disclosed and directly related to applying UI design rules, but it is still local code execution that users should choose intentionally.
python3 $WORKSPACE/skills/ui-designer-skill/scripts/apply_ui_rules.py --style ... --palette ...
Run the helper only from the project where you want design rules applied, and review the script or resulting .cursorrules change if you are unsure.
Future AI sessions in the project may follow these design preferences automatically.
The helper appends or creates .cursorrules, a persistent instruction file that may influence future AI behavior in the project.
rules_file = ".cursorrules" mode = "a" if os.path.exists(rules_file) else "w" ... f.write(rules_to_add)
Inspect .cursorrules after running the helper, keep a backup if needed, and remove the added section if you no longer want those design instructions.
