codemap_routine_remove_file
Remove a file or directory reference from a routine.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
routineName | string | ✅ Required | Routine name |
filePath | string | ✅ Required | File or directory path to remove |
Usage Examples
MCP Usage (for AI Agents like Claude)
json
{
"name": "codemap_routine_remove_file",
"arguments": {
"routineName": "deploy",
"filePath": "old-config.json"
}
}Example Output
JSON Response
json
{
"success": true,
"message": "Removed file reference"
}