validate_action
Ensures actions adhere to critical safety rules by validating input actions and target files within structured development workflows.
Instructions
Check if an action follows critical safety rules
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | The action you want to take | |
| targetFile | Yes | The file you want to act on |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The action you want to take",
"type": "string"
},
"targetFile": {
"description": "The file you want to act on",
"type": "string"
}
},
"required": [
"action",
"targetFile"
],
"type": "object"
}