Sweep 22 Sep 2026 · 15:52Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
Reading a new release v2.1.280 Building the pages · 4/6 1043 findings $36.88 so far
Tool description

AskUserQuestion, as sent

CLI Claude Code, interactive mode, v2.1.270. 27 model strings share this prompt. 1 line differs between them; everything else is identical.

Lines181,531 characters
Moved+0−0 against v2.1.269
Reach27model strings receive this description
Copies1distinct descriptions under this name
Parameters41 of them required Tools in captureall of themevery description on this arm
Plain text · sha256 827f2eb864a0

The description, line by line

18 lines Line numbers are v2.1.269 on the left and this capture on the right.
1 1 Use this tool only when you are blocked on a decision that is genuinely the user's to make: one you cannot resolve from the request, the code, or sensible defaults.
2 2
3 3 Usage notes:
4 4 - Users will always be able to select "Other" to provide custom text input
5 5 - Use multiSelect: true to allow multiple answers to be selected for a question
6 6 - If you recommend a specific option, make that the first option in the list and add "(Recommended)" at the end of the label
7 7
8 8 Plan mode note: To switch into plan mode, use EnterPlanMode (not this tool). Once in plan mode, use this tool to clarify requirements or choose between approaches BEFORE finalizing your plan. Do NOT use this tool to ask "Is my plan ready?", "Should I proceed?", or otherwise reference "the plan" in questions — the user cannot see the plan until you call ExitPlanMode for approval.
9 9 2 model variants
(unset), claude-fable-5, claude-mythos-5, claude-opus-4-0, claude-opus-4-1, claude-opus-4-8, claude-opus-5, claude-opus-5[1m], default, opus, extra line hereReserve this for decisions where the user's answer changes what you do next — not for choices with a conventional default or facts you can verify in the codebase yourself. In those cases pick the obvious option, mention it in your response, and proceed.
(unset), claude-fable-5, claude-mythos-5, claude-opus-4-0, claude-opus-4-1, claude-opus-4-8, claude-opus-5, claude-opus-5[1m], default, opus, extra line here
10 10 Preview feature:
11 11 Use the optional `preview` field on options when presenting concrete artifacts that users need to visually compare:
12 12 - ASCII mockups of UI layouts or components
13 13 - Code snippets showing different implementations
14 14 - Diagram variations
15 15 - Configuration examples
16 16
17 17 Preview content is rendered as markdown in a monospace box. Multi-line text with newlines is supported. When any option has a preview, the UI switches to a side-by-side layout with a vertical option list on the left and preview on the right. Do not use previews for simple preference questions where labels and descriptions suffice. Note: previews are only supported for single-select questions (not multiSelect).
18 18

What it accepts

4 parameters The JSON parameter schema sent beside this description, 3,713 characters of it. Name, type, then whether the client marked it required.
annotations object optional Optional per-question annotations from the user (e.g., notes on preview selections). Keyed by question text.
answers object optional User answers collected by the permission component
metadata object optional Optional metadata for tracking and analytics purposes. Not displayed to user.
questions object[] required Questions to ask the user (1-4 questions)

sha256 c85672df4104 · the schema as the client sent it:

{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "annotations": { "additionalProperties": { "additionalProperties": false, "properties": { "notes": { "description": "Free-text notes the user added to their selection.", "type": "string" }, "preview": { "description": "The preview content of the selected option, if the question used previews.", "type": "string" } }, "type": "object" }, "description": "Optional per-question annotations from the user (e.g., notes on preview selections). Keyed by question text.", "propertyNames": { "type": "string" }, "type": "object" }, "answers": { "additionalProperties": { "type": "string" }, "description": "User answers collected by the permission component", "propertyNames": { "type": "string" }, "type": "object" }, "metadata": { "additionalProperties": false, "description": "Optional metadata for tracking and analytics purposes. Not displayed to user.", "properties": { "source": { "description": "Optional identifier for the source of this question (e.g., \"remember\" for /remember command). Used for analytics tracking.", "type": "string" } }, "type": "object" }, "questions": { "description": "Questions to ask the user (1-4 questions)", "items": { "additionalProperties": false, "properties": { "header": { "description": "Very short label displayed as a chip/tag (max 12 chars). Examples: \"Auth method\", \"Library\", \"Approach\".", "type": "string" }, "multiSelect": { "default": false, "description": "Set to true to allow the user to select multiple options instead of just one. Use when choices are not mutually exclusive.", "type": "boolean" }, "options": { "description": "The available choices for this question. Must have 2-4 options. Each option should be a distinct, mutually exclusive choice (unless multiSelect is enabled). There should be no 'Other' option, that will be provided automatically.", "items": { "additionalProperties": false, "properties": { "description": { "description": "Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.", "type": "string" }, "label": { "description": "The display text for this option that the user will see and select. Should be concise (1-5 words) and clearly describe the choice.", "type": "string" }, "preview": { "description": "Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.", "type": "string" } }, "required": [ "label", "description" ], "type": "object" }, "maxItems": 4, "minItems": 2, "type": "array" }, "question": { "description": "The complete question to ask the user. Should be clear, specific, and end with a question mark. Example: \"Which library should we use for date formatting?\" If multiSelect is true, phrase it accordingly, e.g. \"Which features do you want to enable?\"", "type": "string" } }, "required": [ "question", "header", "options", "multiSelect" ], "type": "object" }, "maxItems": 4, "minItems": 1, "type": "array" } }, "required": [ "questions" ], "type": "object" }