request_action_confirmation
Request confirmation before applying changes to ensure informed architectural decisions, detailing the action, its impact, and supporting information.
Instructions
Request confirmation before applying research-based changes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Description of the action to be performed | |
details | Yes | Detailed information about the action | |
impact | No | Impact level of the action | medium |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Description of the action to be performed",
"type": "string"
},
"details": {
"description": "Detailed information about the action",
"type": "string"
},
"impact": {
"default": "medium",
"description": "Impact level of the action",
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string"
}
},
"required": [
"action",
"details"
],
"type": "object"
}