The docs are becoming the single source of truth for both people and coding agents. Every page now renders to clean Markdown, a new Craft section holds the house rules that used to live only inside the agent skill, and six components that shipped without a page finally have one.
New pages
Six components were installable from the registry but had no documentation. They do now.
- Simulated Cursor — a synthetic cursor that travels between waypoints and fires a click ripple, for narrating a UI on screen
- Strikethrough Replace — strikes through the old text and fades the new text in beneath it
- AI Prompt Flow — a full prompt-to-answer scene, from typing through loading skeleton to the ready toast
- Onboarding Stepper Flow — a stepper advancing through three form panels to a success state
- Field — the static layout family for labeled form controls
- Skeleton Block — the single shimmer rectangle underneath
skeleton - Chat to Preview Layout — a two-column split where the chat column shrinks as the preview expands
New section
Craft collects the rules that decide whether a generated video looks machine-made:
- Design defaults — restraint rules for the text and chrome you add yourself, plus the palette and fonts the library already uses
- Motion principles — the eight classic principles that matter when you assemble scenes from prebuilt blocks
- Anti-patterns — the dozen recurring mistakes with the fix beside each
Improvements
- Appending
.mdto any docs URL now returns real Markdown. Install commands, prop tables and callouts were previously emitted as raw JSX — the install command was invisible entirely, and heading levels were lost. All of it now renders as headings, fenced code blocks, Markdown tables and blockquotes. - New
/llms-components.txt— every installable component in one table with its use and avoid signal, natural length, vibe, tier and dependencies, linking to each component's full page. It is the entry point for an agent picking components for a scene. /llms.txtpoints at the new component index.- Every component page now carries that selection metadata, so the index covers the whole catalogue rather than a sample of it.
- CI now fails when a registry component has no docs page, when a page is missing its metadata, or when a page recommends a component that does not exist. The catalogue had drifted silently before this: ten shipped components were missing from the agent's view entirely.
- The agent skill no longer bundles a copy of the catalogue — it reads these docs live. A component added today is visible to an agent whose skill was installed months ago, and a prop can no longer go stale in two places at once. The skill keeps what does not change per component: the two tiers, timing rules, and the recipes for composing a video.