get_modification_actions
Retrieve recommended actions to execute after modifying a file, ensuring compliance with project guidelines and safety protocols. Input the file path to generate actionable steps.
Instructions
Get actions that should be taken after modifying a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}