Publish Skill Final

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: ui-designer-skill Version: 1.3.1 The UI Designer Skill is a legitimate toolset providing extensive documentation and a utility script (scripts/apply_ui_rules.py) to assist developers in maintaining design consistency across various UI systems. The script's primary function is to append design-related instructions to a local .cursorrules file, which aligns with its stated purpose of guiding AI-assisted development. No evidence of data exfiltration, unauthorized network access, or malicious prompt injection was found; the content is focused entirely on UI/UX principles and technical styling standards.

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

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.