# Plan Template Every plan written by `improve-animations` follows this structure. The executor may be a less capable model with zero context and zero taste — the plan must contain everything, exactly. No references to "the audit above" or "the easing we discussed." ```markdown # NNN — - **Status**: TODO - **Commit**: - **Severity**: HIGH | MEDIUM | LOW - **Category**: - **Estimated scope**: ## Problem What is wrong, where, and why it matters to how the product feels. Cite every location as `path/to/file.tsx:123` and include the current code verbatim: ​```css /* src/components/dropdown.css:14 — current */ .dropdown { transition: all 400ms ease-in; } ​``` ## Target The exact end state. Every value spelled out — curves, durations, spring configs, media queries. Never "use a nicer easing": ​```css /* target */ .dropdown { transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out); transform-origin: var(--transform-origin); } ​``` ## Repo conventions to follow How this codebase already does it, with one exemplar the executor should imitate (token names, file placement, prop patterns): - Easing tokens live in `src/styles/tokens.css`; add new curves there, e.g. `--ease-out: cubic-bezier(0.23, 1, 0.32, 1);` - ## Steps 1. 2. … ## Boundaries - Do NOT touch . - Do NOT change markup/structure — motion properties only (unless a step says otherwise). - Do NOT add new dependencies. - If a step doesn't match the code you find (drift since the commit stamp), STOP and report instead of improvising. ## Verification - **Mechanical**: . - **Feel check**: run the UI, trigger , and confirm: - - - In DevTools, set playback to 10% (Animations panel) and confirm . - Toggle `prefers-reduced-motion` (Rendering panel) and confirm movement is dropped but opacity feedback remains. - **Done when**: . ``` ## Notes for the plan author - One plan per finding. If two findings share every file and the same fix pattern (e.g. the same easing token swap across components), they may merge into one plan. - Pull every value from [AUDIT.md](AUDIT.md) — never approximate from memory. - The feel check is not optional. Motion can be mechanically correct and still feel wrong; give the executor (or the human reviewing the executor's diff) concrete things to watch for in slow motion. - After writing plans, create or update `plans/README.md` with: a table of plans (number, title, severity, status), the recommended execution order, and any dependencies between plans.