create-todo
Original:🇺🇸 English
Translated
Create a TODO task in One Horizon, with optional initiative linking. Use when asked to "log this task", "create a todo", "track this small task", or "connect this task to initiative X". Do not use for creating initiatives, bugs, or feature-request intake tasks. Requires One Horizon MCP.
7installs
Sourceonehorizonai/skills
Added on
NPX Install
npx skill4agent add onehorizonai/skills create-todoTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Create Todo
Create a day-level TODO task.
Instructions
Call .
create-todojson
create-todo({
"title": "Implement HubSpot OAuth callback handler",
"description": "Handle auth code exchange and token persistence",
"status": "Planned",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})Use when the task should be linked via relation.
initiativeIdPART_OFFor implementation write-back, prefer a completed task linked to the initiative:
json
create-todo({
"title": "Implemented HubSpot lead sync auth + sync",
"description": "## Changes\n- What changed: Built OAuth callback flow, sync worker, and retry handling\n- Why: Enable stable end-to-end HubSpot lead sync flow",
"status": "Completed",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})Use in new TODO descriptions only when the TODO represents completed external implementation work.
Changes/Why