ss-update

Solid

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

Web & Frontend 369 stars 42 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# StyleSeed Update Assistant ## 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. ## 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 find . -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" ``` Report what was found and where. ### Step 2: Check StyleSeed Version Clone or pull latest styleseed: ```bash if [ -d "/tmp/styleseed" ]; then cd /tmp/styleseed && git pull else git clone https://github.com/bitjaru/styleseed.git /tmp/styleseed fi ``` Compare versions: - Check if DESIGN-LANGUAGE.md has the Table of Contents (new version does) - Check if Golden Rules exist in CLAUDE.md - Count skills (latest = 12) - Check if .cursorrules exists ### Step 3: Report & Ask Show the user what needs updating: ``` StyleSeed Update Report: Current state: - DESIGN-LANGUAGE.md: [location] — [old/c...

Details

Author
bitjaru
Repository
bitjaru/styleseed
Created
1 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category