codemap_routine_add_item
Add a checklist item to a routine.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
routineName | string | ✅ Required | Routine name |
text | string | ✅ Required | Checklist item text |
priority | stringhigh | medium | low | ❌ Optional | Item priority (default: medium) (default: medium) |
Usage Examples
MCP Usage (for AI Agents like Claude)
json
{
"name": "codemap_routine_add_item",
"arguments": {
"routineName": "pre-commit",
"item": {
"text": "Run unit tests",
"priority": "high"
}
}
}Example Output
JSON Response
json
{
"success": true,
"message": "Added item to routine \"pre-commit\"",
"itemId": "item-1"
}