confirm_action
Request user confirmation for actions with significant impact. Provide clear descriptions of the action, its potential effects, and additional details to ensure informed decision-making.
Instructions
Ask user to confirm an action before proceeding with potentially impactful operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Description of the action to be confirmed | |
details | No | Additional details about what will happen | |
impact | No | Potential impact or consequences of this action |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Description of the action to be confirmed",
"type": "string"
},
"details": {
"description": "Additional details about what will happen",
"type": "string"
},
"impact": {
"description": "Potential impact or consequences of this action",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}