update_security_level
Modify the security level of a whitelisted macOS terminal command, setting it as safe, requiring approval, or marking it as forbidden to enhance command control and safety.
Instructions
Update the security level of a whitelisted command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The command to update | |
securityLevel | Yes | New security level for the command |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "The command to update",
"type": "string"
},
"securityLevel": {
"description": "New security level for the command",
"enum": [
"safe",
"requires_approval",
"forbidden"
],
"type": "string"
}
},
"required": [
"command",
"securityLevel"
],
"type": "object"
}