Export any task as a formatted ticket for Jira, Linear, GitHub Issues, or any project management tool. Define the format once, then copy-paste.
Create a ticket template
Define your format
## {{title}}
### Description
{{description}}
### Acceptance Criteria
{{crumbs_checklist}}
**Priority:** {{priority}}
**Estimated:** {{estimated_time}} min
**Deadline:** {{deadline}}Export a task
Available Placeholders
| Placeholder | Replaced with |
|---|---|
| {{title}} | The task title |
| {{description}} | The full task description |
| {{crumbs}} | Numbered list of all crumbs with time estimates |
| {{crumbs_checklist}} | Crumbs formatted as a markdown checklist (- [ ]) |
| {{estimated_time}} | Total estimated time in minutes (sum of all crumbs) |
| {{priority}} | Task priority: low, medium, or high |
| {{deadline}} | Task deadline date, or empty if not set |
Tool-specific tips
{{crumbs_checklist}} as acceptance criteria. Jira renders markdown checklists natively.{{crumbs_checklist}} for task lists. GitHub converts - [ ] into interactive checkboxes.Export via API
Use the export templates API to generate ticket text programmatically:
GET /api/export-templates/:id/render?taskId=your-task-id
Authorization: Bearer YOUR_KEYSee the API Reference for details.