Frontend Builder

PassAudited by ClawScan on May 10, 2026.

Overview

This appears to be a coherent instruction-only frontend generator, with the main caution that it asks users to run npm and ClawHub setup commands that can change local projects and installed skills.

This skill looks reasonable for generating React UI code. Before using its setup instructions, review the npx commands, run them only in the intended project, and be cautious with `clawhub update --all` because it may update unrelated installed skills.

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 these commands can change the user's OpenClaw skill environment, including skills unrelated to this frontend builder.

Why it was flagged

The skill relies on additional upstream skills and recommends latest-version ClawHub install/update commands, including a broad update of all installed skills.

Skill content
npx -y clawhub@latest install frontend-design-ultimate ... npx -y clawhub@latest update --all
Recommendation

Install only the needed upstream skills when possible, review what will be updated, and avoid `update --all` unless you intend to refresh all installed skills.

What this means

If copied into a terminal, these commands can add files, dependencies, and configuration to the user's frontend project.

Why it was flagged

The skill tells the assistant to include npx setup commands for shadcn components; these are purpose-aligned but execute package-managed setup code and modify the project.

Skill content
npx shadcn@latest init
npx shadcn@latest add card button badge tabs table sheet sidebar
Recommendation

Run setup commands only inside the intended project, preferably with version control enabled, and review file changes afterward.