Agent skill · Code Review & Quality

ss-lint

Quick automated lint — detects common design system violations in seconds

kiwiman852★ · +42/wk · 1 repos on radarProfile →
claude-codecodexcursorcan modify filesMIT
Install
npx skills add bitjaru/styleseed --skill ss-lint --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadGrepGlobBash
Path: engine/.claude/skills/ss-lint/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 867 · +15 this week
Language: TypeScript
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

# Design Lint (Quick Check) Read `.styleseed/effective-rules.md` and `.styleseed/manifest.json`; invoke `/ss-resolve` or `$ss-resolve` first when they are missing or stale. Lint detects deterministic drift; it must not flag an exact grammar/recipe/profile/adapter contract as a violation or let an arbitrary lock value create an exception. ## When NOT to use - For deeper review of design judgment (composition, hierarchy, rhythm) → use `/ss-review` - For accessibility specifically → use `/ss-a11y` - For Nielsen UX heuristics → use `/ss-audit` - For applying refactors — this only flags violations; use `/ss-review` to fix Target: **$ARGUMENTS** ## What This Does Fast, grep-based scan for common design violations. Runs in seconds (unlike /ss-review which is a deep manual audit). Run this after every file change. ## Checks ### 1. Hardcoded Colors Search for hex colors in className strings that should be semantic tokens: ```bash grep -n '#[0-9a-fA-F]\{3,8\}' [file] | grep -v 'theme.css\|tokens\|\.json' ``` **Violation:** `text-[#3C3C3C]`, `bg-[#3182F6]` **Fix:** `text-text-primary`, `bg-brand` ### 2. Raw Pixel Values in Tailwind ```bash grep -n 'p-\[.*px\]\|m-\[.*px\]\|gap-\[.*px\]' [file]

What's inside
Steps it walks through
  1. When NOT to use
  2. What This Does
  3. Checks
  4. 1. Hardcoded Colors
  5. 2. Raw Pixel Values in Tailwind
  6. 3. Old Width/Height Syntax
  7. 4. Physical Properties (LTR-only)
  8. 5. Uncontracted Hard Black
  9. 6. Missing data-slot
  10. 7. Font Size CSS Variables (CRITICAL — Tailwind v4 conflict)
  11. 8. className Without cn()
  12. 9. Universal Soft-card Drift
  13. Output Format
Commands it runs
grep -n '#[0-9a-fA-F]\{3,8\}' [file] | grep -v 'theme.css\|tokens\|\.json'
grep -n 'p-\[.*px\]\|m-\[.*px\]\|gap-\[.*px\]' [file]
grep -n 'w-[0-9] h-[0-9]\|w-\[.*\] h-\[' [file]
grep -n ' ml-\| mr-\| pl-\| pr-' [file]
grep -n 'text-black\|bg-black\|#000000\|#000"' [file]
grep -n 'function [A-Z]' [file] # find components
grep -n 'data-slot' [file]       # check if present
grep -n 'text-\[var(--' [file]
grep -n '\-\-text-.*px\|--fs-.*px' [file]
grep -n 'className={`' [file]
More from styleseed
All skills →
About this skill
What does the ss-lint skill do?

Quick automated lint — detects common design system violations in seconds

How do I install it?

Run `npx skills add bitjaru/styleseed --skill ss-lint --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 bitjaru/styleseed, a repository with 867 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