codemap_routine_remove_item

Remove a checklist item from a routine.

routinechecklistworkflow

Parameters

NameTypeRequiredDescription
routineNamestring✅ RequiredRoutine name
itemIdstring✅ RequiredChecklist 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"
}