codemap_routine_remove_item
Remove a checklist item from a routine.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
routineName | string | ✅ Required | Routine name |
itemId | string | ✅ Required | Checklist item ID to remove |
Usage Examples
MCP Usage (for AI Agents like Claude)
json
{
"name": "codemap_routine_remove_item",
"arguments": {
"routineName": "pre-commit",
"itemId": "item-123"
}
}Example Output
JSON Response
json
{
"success": true,
"message": "Removed item from routine"
}