Collect User Input Step 1 — Read the Project's AGENTS.md Check for Interactivity Mode and Interactivity Scope . This determines which form patterns apply: | Mode | Form mechanism | |------|---------------| | None (Static SSR) | with + . No , no . | | Server | with . Full interactivity — real-time validation, dynamic UI. | | WebAssembly | Same as Server, but validators needing server data must call APIs. | | Auto | Same as WebAssembly — code must work in both browser and server. | | Scope | Impact | |-------|--------| | Global | All forms are interactive. only needed when explicitly opting a p…