A collection of Agent Skills that give AI coding assistants CSS engineering judgment. Skills are deterministic rule systems — closer to an ESLint config or an architecture RFC than a tutorial.
| Skill | Role | Description |
|---|---|---|
| css-engineer | Generate | Write new modern native CSS: decision engine for layout/responsive/color/animation choices, cascade layers, tokens, logical properties, self-review checklist. |
| css-reviewer | Audit | Review existing CSS and report structured findings (Issue / Severity / Location / Problem / Why / Fix / Example) across architecture, modern CSS, accessibility, and performance. |
| css-refactor | Modernize | Refactor existing CSS without changing rendering: literals→tokens, physical→logical, Sass→native, unlayered→layered, with cascade-safety verification and a risk-rated change list. |
All three route into one shared knowledge base, so the rules cannot drift between roles.
skills/
├── shared/
│ └── references/ # single source of truth, loaded on demand
│ ├── browser-profiles.md # profiles, capability map, stability, @supports
│ ├── prohibited-patterns.md # canonical never-generate list + per-role handling
│ ├── rules-architecture.md
│ ├── rules-layout.md
│ ├── rules-color-typography.md
│ ├── rules-a11y-performance.md
│ ├── rules-forms.md
│ └── rules-advanced.md
├── css-engineer/SKILL.md
├── css-reviewer/SKILL.md
└── css-refactor/SKILL.md
Each SKILL.md is a lean core (philosophy, workflow, checklists) that references ../shared/references/ for topic rules.
Copy or symlink all skill directories and shared/ into your skills folder — the role skills resolve rules via ../shared/references/:
# per project
cp -r skills/css-engineer skills/css-reviewer skills/css-refactor skills/shared .claude/skills/
# or globally, via symlinks (stay in sync with this repo)
ln -s "$PWD"/skills/css-engineer "$PWD"/skills/css-reviewer "$PWD"/skills/css-refactor "$PWD"/skills/shared ~/.claude/skills/The right skill activates automatically: "style a card" → css-engineer, "review this CSS" → css-reviewer, "modernize this stylesheet" → css-refactor.
- Agents that support the Agent Skills format: point them at the
skills/directory. - Agents that use a single rules file (
.cursor/rules,AGENTS.md,.github/copilot-instructions.md): concatenate a role skill with the shared rules:
cat skills/css-engineer/SKILL.md skills/shared/references/*.md > css-rules.mdTools like skills.sh install a skill as a single standalone SKILL.md file, not the directory it lives in. That breaks these skills: each one resolves its actual rule content through relative links into ../shared/references/, and a single-file install has no shared/ to link to. Use the Claude Code or Other agents instructions above (copy/symlink the whole skills/ tree, shared/ included) instead of a single-file CLI installer.
Every skill resolves a browser profile per project before acting: explicit instruction → browserslist config → default evergreen. Profiles (modern, evergreen, enterprise, legacy) and per-feature capabilities are defined in browser-profiles.md and can be overridden per project.