← ClaudeAtlas

ss-updatelisted

Update StyleSeed engine in your project — analyzes what's outdated and updates safely
ENDERMITA12/styleseed · ★ 0 · Web & Frontend · score 75
Install: claude install-skill ENDERMITA12/styleseed
# StyleSeed Update Assistant 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/current version indicator] - Skills: [count] found (latest: 12) - Golden Rules: [yes/no] - .cursorrules: [yes/no] Recommended updates: 1. ✅ [safe] Update skills (X → 12) 2. ✅ [safe] Add .cursorrules 3. ⚠️ [review] Update DESIGN-LANGUAGE.md ([old line count] → [new line count]) 4. ⚠️ [merge] Add G