From one-horizon
See what is planned, shipped, blocked, or still open in One Horizon across roadmap work, bugs, and personal follow-ups. Use when asked "what's on my plate", "what did I ship", "show blockers", "what initiatives are active", "show open bugs", "what should I pick up next", or "what is the team working on". Requires One Horizon MCP.
npx claudepluginhub onehorizonai/skills --plugin one-horizonThis skill uses the workspace's default tool permissions.
Query work in One Horizon. Pick the right MCP tool based on what the user is asking for.
Generates hierarchical project dashboard of work items organized by container, showing IDs, tags, status, priority. Use for project status, summaries, overviews.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Query work in One Horizon. Pick the right MCP tool based on what the user is asking for.
Descriptions are trimmed in list output. Use get-task-details for full context on any task.
Call list-planned-work:
list-planned-work()
Team or member scope:
list-planned-work({ "teamId": "<teamId>", "userId": "<userId>", "includeInitiatives": true })
Planned work is the broad view. It can include roadmap initiatives, ongoing work, and linked follow-up items depending on how the workspace is used.
Call list-completed-work:
list-completed-work({
"startDate": "2024-01-20T00:00:00Z",
"endDate": "2024-01-26T23:59:59Z",
"includeInitiatives": true
})
Call list-blockers:
list-blockers({ "includeInitiatives": true })
Team scope:
list-blockers({ "teamId": "<teamId>", "includeInitiatives": true })
Call list-initiatives:
list-initiatives({
"workspaceId": "<workspaceId>",
"statuses": ["Open", "Planned", "In Progress", "In Review"],
"includeHierarchy": true
})
If statuses is omitted, defaults to active statuses (Open, Planned, In Progress, In Review).
Use this when the user is asking specifically about roadmap work rather than the broader planned-work view.
Call list-bugs:
list-bugs({
"workspaceId": "<workspaceId>",
"statuses": ["Open", "Planned", "In Progress", "In Review"],
"teamIds": ["<teamId>"],
"assigneeIds": ["<userId>"]
})
If statuses is omitted, defaults to active statuses.