II.
ToolDescriptor JSON
Structured · livetool-descriptor:ask-user-question
AskUserQuestion json
Inspect the normalized record payload exactly as the atlas UI reads it.
{
"id": "tool-descriptor:ask-user-question",
"_kind": "ToolDescriptor",
"_file": "extensions/tool-descriptors/claude-code-extended-tools.yaml",
"_cluster": "extensions",
"attributes": {
"schema": "{}",
"displayName": "AskUserQuestion",
"description": "Asks multiple-choice questions to gather requirements or clarify\nambiguity from the user. Permission: not required.\n",
"inputSchema": {
"type": "object",
"required": [
"questions"
],
"properties": {
"questions": {
"type": "array",
"items": {
"type": "object",
"required": [
"question",
"header",
"options"
],
"properties": {
"question": {
"type": "string"
},
"header": {
"type": "string"
},
"options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
}
}
}
},
"multiSelect": {
"type": "boolean"
}
}
}
},
"answers": {
"type": "object",
"description": "Answers map; populated by the host UI on resolve."
}
}
},
"mode": "normal",
"streamable": false,
"timeoutMs": 600000
},
"outgoingEdges": [],
"incomingEdges": [
{
"from": "agent-runtime-impl:claude-code.runtime@1.x",
"to": "tool-descriptor:ask-user-question",
"kind": "bundles",
"attributes": {}
}
]
}