Agent skill · Frontend

ui-update

Update StyleSeed engine in your project — analyzes what's outdated and updates safely

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill ui-update --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ui-update/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# StyleSeed Update Assistant ## When to Use Use this skill when you need update StyleSeed engine in your project — analyzes what's outdated and updates safely. ## When NOT to use - For first-time setup → use `/ss-setup` - For just one new component or skin — copy that file manually - For projects that have heavily diverged from upstream — manual diff review first - For updating user code/components — this updates engine files only, not your custom UI Automatically detect and update StyleSeed files in the current project. ## Set expectations accurately An update changes project and agent-instruction files and may break local customizations. State that risk plainly. Require a clean worktree or user-approved backup, show the proposed diff, and obtain explicit approval before copying any file. Use a scoped backup or revert only the files changed by this update; preserve unrelated user work. ## Instructions ### Step 1: Detect Current Setup Scan the project to find where StyleSeed files are: ```bash # Find DESIGN-LANGUAGE.md find . -name "DESIGN-LANGUAGE.md" -not -path "*/node_modules/*" # Find CLAUDE.md find . -name "CLAUDE.md" -not -path "*/node_modules/*" # Find skills (ss-* is curren

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to use
  3. Set expectations accurately
  4. Instructions
  5. Step 1: Detect Current Setup
  6. Step 2: Check StyleSeed Version
  7. Step 3: Report & Ask
  8. Step 4: Execute Updates
  9. Step 5: Summary
  10. Important
  11. Limitations
Commands it runs
Find DESIGN-LANGUAGE.md
find . -name "DESIGN-LANGUAGE.md" -not -path "*/node_modules/*"
Find CLAUDE.md
find . -name "CLAUDE.md" -not -path "*/node_modules/*"
Find skills (ss-* is current; ui-*/ux-* are legacy names to migrate from)
find . -path "*/.claude/skills/ss-*" -o -path "*/.claude/skills/ui-*" -o -path "*/.claude/skills/ux-*" | head -20
Find theme.css
find . -name "theme.css" -not -path "*/node_modules/*"
Find .cursorrules
find . -name ".cursorrules"
More from agentic-awesome-skills
All skills →
About this skill
What does the ui-update skill do?

Update StyleSeed engine in your project — analyzes what's outdated and updates safely

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill ui-update --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going