Save a completed task as a reusable template. Next time you do something similar, apply the template instead of decomposing from scratch.
Complete a task
Click "Save as template"
Apply a template to a new task
POST /api/templates/:id/apply
Authorization: Bearer YOUR_KEY
Content-Type: application/json
{
"taskId": "your-task-id"
}This creates crumbs on the target task using your saved template pattern. The crumbs are created with the same titles, descriptions, order, and time estimates from the template.
Why templates matter
Over time, your templates reflect your real workflow, not generic AI output. The time estimates are based on how long things actually took you. This means:
Managing templates via API
The templates API provides full CRUD operations:
GET /api/templates -- list all your templatesGET /api/templates/:id -- get a specific template with its crumbsPOST /api/templates/:id/apply -- apply a template to a taskDELETE /api/templates/:id -- delete a templateSee the API Reference for full details.