confirm_command
Confirm or cancel the execution of a dangerous command in Windows Subsystem for Linux (WSL) using a secure validation system to prevent vulnerabilities and ensure safe operation.
Instructions
Confirm execution of a dangerous command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | Yes | Whether to proceed with the command execution | |
confirmation_id | Yes | Confirmation ID received from execute_command |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"description": "Whether to proceed with the command execution",
"type": "boolean"
},
"confirmation_id": {
"description": "Confirmation ID received from execute_command",
"type": "string"
}
},
"required": [
"confirmation_id",
"confirm"
],
"type": "object"
}