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.

What this means

Running the command executes local code and changes a project file.

Why it was flagged

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.

Skill content
python3 $WORKSPACE/skills/ui-designer-skill/scripts/apply_ui_rules.py --style ... --palette ...
Recommendation

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.

What this means

Future AI sessions in the project may follow these design preferences automatically.

Why it was flagged

The helper appends or creates .cursorrules, a persistent instruction file that may influence future AI behavior in the project.

Skill content
rules_file = ".cursorrules"
mode = "a" if os.path.exists(rules_file) else "w"
...
f.write(rules_to_add)
Recommendation

Inspect .cursorrules after running the helper, keep a backup if needed, and remove the added section if you no longer want those design instructions.