AgentStack
SKILL verified MIT Self-run

One Create Task

skill-onehorizonai-skills-one-create-task · by onehorizonai

Create a One Horizon Todo or roadmap initiative when the user asks for that exact work type and the scope is clear. Prefer one-task-management for ambiguous or multi-step operational requests. For bugs or feature requests, use one-report-issue instead. Requires One Horizon MCP.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-onehorizonai-skills-one-create-task

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of One Create Task? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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-management for 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.