Add new-skill: styleseed design judgment engine#325
Add new-skill: styleseed design judgment engine#325bitjaru wants to merge 2 commits intorohitg00:mainfrom
Conversation
📝 WalkthroughWalkthroughThis pull request introduces a new StyleSeed skill module to the project. The changes include adding a table entry in README.md for the module and creating comprehensive documentation describing the StyleSeed design judgment engine with its visual rules, React components, and features. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment Warning |
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@README.md`:
- Line 561: The README row adding StyleSeed means the total curated skill count
and any summary strings (e.g., “35 curated skills”) are now stale; update every
occurrence of the curated-skills summary to reflect the new total (increment the
count by one wherever referenced) and ensure the table entry for "StyleSeed"
(skills/styleseed/) is consistent with the rest of the curated-skills list and
summary text.
In `@skills/styleseed/SKILL.md`:
- Around line 16-22: The quick-start in SKILL.md uses a local path that doesn't
exist; update the docs so users clone the styleseed repo before copying the
engine. Edit the section containing the cp command (the "Copy engine into your
project" block) to first run a git clone of
https://github.com/bitjaru/styleseed.git and then run cp -r styleseed/engine/*
your-project/ (or alternatively point readers to clone the repo manually),
ensuring the cp line no longer assumes an existing local styleseed/ directory.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 6a6516d6-4501-41f2-9fab-1ee270941e03
📒 Files selected for processing (2)
README.mdskills/styleseed/SKILL.md
| | WebSocket & Realtime | `skills/websocket-realtime/` | Socket.io, SSE, reconnection, scaling | | ||
| | Testing Strategies | `skills/testing-strategies/` | Contract testing, snapshot testing, property-based testing | | ||
| | Git Advanced | `skills/git-advanced/` | Worktrees, bisect, interactive rebase, hooks | | ||
| | [StyleSeed](https://github.com/bitjaru/styleseed) | `skills/styleseed/` | Design judgment: 69 visual rules, brand skins, professional UI | |
There was a problem hiding this comment.
Update curated skill counts to stay consistent after adding StyleSeed.
Since this row adds another curated skill, summary/count references (e.g., “35 curated skills”) are now likely stale and should be incremented for consistency.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@README.md` at line 561, The README row adding StyleSeed means the total
curated skill count and any summary strings (e.g., “35 curated skills”) are now
stale; update every occurrence of the curated-skills summary to reflect the new
total (increment the count by one wherever referenced) and ensure the table
entry for "StyleSeed" (skills/styleseed/) is consistent with the rest of the
curated-skills list and summary text.
| ```bash | ||
| # Copy engine into your project | ||
| cp -r styleseed/engine/* your-project/ | ||
|
|
||
| # Or just point Claude at the repo | ||
| # "Refer to https://github.com/bitjaru/styleseed — read engine/CLAUDE.md and DESIGN-LANGUAGE.md" | ||
| ``` |
There was a problem hiding this comment.
Quick-start copy path is likely broken in this repo context.
On Line 18, cp -r styleseed/engine/* your-project/ references a path that does not appear to exist in this PR, so new users can’t execute this as written.
Proposed doc fix
```bash
-# Copy engine into your project
-cp -r styleseed/engine/* your-project/
+# Clone StyleSeed, then copy engine into your project
+git clone https://github.com/bitjaru/styleseed.git
+cp -r styleseed/engine/* your-project/
# Or just point Claude at the repo
# "Refer to https://github.com/bitjaru/styleseed — read engine/CLAUDE.md and DESIGN-LANGUAGE.md"</details>
<!-- suggestion_start -->
<details>
<summary>📝 Committable suggestion</summary>
> ‼️ **IMPORTANT**
> Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
```suggestion
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@skills/styleseed/SKILL.md` around lines 16 - 22, The quick-start in SKILL.md
uses a local path that doesn't exist; update the docs so users clone the
styleseed repo before copying the engine. Edit the section containing the cp
command (the "Copy engine into your project" block) to first run a git clone of
https://github.com/bitjaru/styleseed.git and then run cp -r styleseed/engine/*
your-project/ (or alternatively point readers to clone the repo manually),
ensuring the cp line no longer assumes an existing local styleseed/ directory.
Adding StyleSeed to the Skills section.
| StyleSeed |
skills/styleseed/| Design judgment: 69 visual rules, brand skins, professional UI |What it is: Design judgment engine that teaches Claude Code the invisible rules pro designers carry — not more design data, but design judgment. 69 rules organized into 6 categories (color discipline, spatial rhythm, information hierarchy, shadow/elevation, component variance, motion/feedback).
Community traction:
Files added:
skills/styleseed/SKILL.md— skill definition with quick startREADME.md— added row to skills tableMIT licensed, no telemetry, no network calls.
Summary by CodeRabbit
New Features
Documentation