request_user_input
Prompt users for input via a pop-up command prompt to clarify requirements, resolve ambiguity, or confirm actions before proceeding with significant changes.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The specific question for the user (appears in the prompt) | |
predefinedOptions | No | Predefined options for the user to choose from (optional) | |
projectName | Yes | Identifies the context/project making the request (used in prompt formatting) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "The specific question for the user (appears in the prompt)",
"type": "string"
},
"predefinedOptions": {
"description": "Predefined options for the user to choose from (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"projectName": {
"description": "Identifies the context/project making the request (used in prompt formatting)",
"type": "string"
}
},
"required": [
"projectName",
"message"
],
"type": "object"
}