Install
$ agentstack add skill-onehorizonai-skills-one-create-task ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Create Task
Create a new Todo or roadmap initiative.
Work type boundary
- Initiative: use for roadmap-first planned work that should tie back to product goals, companies, components, or team progress.
- Todo: use for simple personal follow-up that only the owner needs to track.
- Do not use this skill to guess between initiative, bug, ongoing work, and Todo from a vague request. Use
one-task-managementfor that. - Do not use Todos as a substitute for roadmap work.
- If the user needs help writing or structuring the initiative first, use
one-initiative-brief.
Instructions
Todo
Call create-todo for personal follow-up work. Use initiativeId to link it back to a roadmap initiative via PART_OF relation when the Todo represents a delivered slice of initiative work:
create-todo({
"title": "Implement HubSpot OAuth callback handler",
"description": "Handle auth code exchange and token persistence",
"status": "Planned",
"topic": "Auth",
"workspaceId": "",
"initiativeId": ""
})
For completed implementation write-back, create the Todo, then add a comment with what changed:
create-todo({
"title": "Implemented HubSpot lead sync auth + sync",
"status": "Completed",
"topic": "Integrations",
"workspaceId": "",
"initiativeId": ""
})
add-task-comment({
"taskId": "",
"source": "skill",
"workspaceId": "",
"content": "**Changes**\n- What changed: Built OAuth callback flow, sync worker, and retry handling\n- Why: Enable stable end-to-end HubSpot lead sync flow"
})
Roadmap initiative
Call create-initiative for planned product work that belongs on the roadmap. Supports parentInitiativeId and taxonomyLabelIds:
create-initiative({
"title": "Build HubSpot lead sync integration",
"description": "OAuth, sync jobs, task mapping, and observability",
"status": "Open",
"workspaceId": "",
"assigneeIds": [""],
"teamIds": [""],
"parentInitiativeId": "",
"taxonomyLabelIds": [""]
})
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: onehorizonai
- Source: onehorizonai/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.