iiRecord
Agentic AI Atlas · AskUserQuestion
tool-descriptor:ask-user-questiona5c.ai
II.
ToolDescriptor JSON

tool-descriptor:ask-user-question

Structured · live

AskUserQuestion json

Inspect the normalized record payload exactly as the atlas UI reads it.

File · extensions/tool-descriptors/claude-code-extended-tools.yamlCluster · extensions
Record JSON
{
  "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": {}
    }
  ]
}