AI CSS Animations

Docs

Every page below is the actual SKILL.md file, rendered. Not a summary of it. What you read here is byte for byte what the agent loads when the skill fires, which is the only way docs like this stay true.

1172 lines across 10 skills.

Pipeline

design-system 46 lines

Runs the five-phase pipeline that builds and enforces a design system: measure existing values, settle the decisions with the user, write tokens, migrate the codebase, install a linter. Use when the user wants a design system, says their UI is inconsistent, or asks to standardize spacing, type or color.

design-extract 95 lines

Inventories every spacing, type, color, radius, shadow and motion value used in a codebase, then reports collisions, near-duplicates and how many values a proposed scale would absorb. Produces .design/drift.json. Use as phase 0 of design-system, or when the user asks how inconsistent their UI is.

design-grill 102 lines, 1 reference, 1 asset

Interviews the user to settle every design system decision, in dependency order, writing a rendered HTML preview for each round so choices are made by looking rather than reading numbers. Produces .design/decisions.json. Use as phase 1 of design-system, after design-extract.

design-ratify 106 lines

Writes settled design decisions into theme tokens, a DESIGN.md reference, and decision records for choices that are expensive to reverse. Use as phase 2 of design-system, after design-grill.

design-apply 58 lines

Migrates a codebase onto ratified design tokens in four batches, ordered by risk: exact matches, sub-threshold snaps, palette-to-role mapping, then everything else. Commits each batch separately. Use as phase 3 of design-system, after design-ratify.

design-enforce 96 lines, 1 reference, 1 asset

Installs a framework-agnostic lint script that flags arbitrary values, raw hex, off-scale spacing and type, and raw palette classes. Generates its config from the ratified tokens, sets a baseline, and optionally aligns shadcn components. Use as phase 4 of design-system, after design-apply.

Passes