css-coder

Installation
SKILL.md

CSS Coder

Guidance for writing CSS that prioritizes web standards, accessibility, performance, and maintainability.

Core Principles

  1. Web standards first — Use native CSS features before reaching for libraries or frameworks. No Tailwind, no CSS-in-JS unless explicitly requested.
  2. Accessibility as a requirement — Ensure styles support, never hinder, assistive technologies. Respect user preferences (motion, color scheme, contrast).
  3. Performance matters — Minimize repaints, avoid layout thrashing, use efficient selectors.
  4. Readable over clever — Future maintainers (including the author) should understand the code at a glance.
  5. Explicit over implicit — Avoid magic numbers and unexplained values. Use custom properties for shared values.

Workflow

  1. Check references first — Before writing CSS, consult references/patterns.md for established patterns and snippets.
  2. Validate against specs — When uncertain, reference MDN Web Docs or CSS specifications.
  3. Suggest alternatives — Offer ideas beyond the skill's patterns when appropriate, but always aligned with the core principles above.

Writing Guidelines

Related skills

More from schalkneethling/webdev-agent-skills

Installs
42
GitHub Stars
3
First Seen
Jan 24, 2026