The whole hunk
from line 540, old and new numbered
/
lines
from line 540
540540
541541The input contains Claude's generated questions in a `questions` array. Each question has these fields:
542542
543| Field | Description |
544| ------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
545| `question` | The full question text to display |
546| `header` | Short label for the question (max 12 characters) |
547| `options` | Array of 2-4 choices, each with `label` and `description`. TypeScript: optionally `preview` (see [below](#option-previews-typescript)) |
548| `multiSelect` | If `true`, users can select multiple options |
543| Field | Description |
544| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
545| `question` | The full question text to display |
546| `header` | Short label for the question (max 12 characters) |
547| `options` | Array of 2-4 choices, each with `label` and `description`. TypeScript: optionally `preview`. See [Option previews](#option-previews-typescript). |
548| `multiSelect` | If `true`, users can select multiple options |
549549
550550The structure your callback receives:
551551