From task-orchestrator
Checks MCP for existing work and stalled items, discovers note schemas from .taskorchestrator/config.yaml, and identifies gate requirements to set definition floor before plan mode.
npx claudepluginhub jpicklyk/task-orchestrator --plugin task-orchestratorThis skill uses the workspace's default tool permissions.
When entering plan mode, use the MCP to set the **definition floor** before writing your plan.
Provides interactive onboarding for MCP Task Orchestrator by detecting workspace state and guiding through plan mode, persistent tracking, and workflow integration.
Generates executable Markdown implementation plans for multi-step tasks from context briefs, resolving ambiguities, ordering dependencies, and enabling parallel worker execution.
Manages ExecPlan lifecycle for multi-step work: creates formatted plans, enforces progress updates, handles active-to-completed transitions. For tasks >1 session or >3 files.
Share bugs, ideas, or general feedback.
When entering plan mode, use the MCP to set the definition floor before writing your plan.
The definition floor is the baseline of existing work, documentation requirements, and gate constraints that the plan must account for.
If MCP is unreachable: Proceed with planning based on conversation context. Note in the plan that MCP state could not be verified — existing work may overlap. Re-check after MCP reconnects.
Call the health check to see what's already tracked:
get_context()
If active or stalled items exist:
get_context(itemId=...) to inspect:
If no items exist (clean slate):
Read .taskorchestrator/config.yaml in the project root (this is a file read, not an MCP call):
feature-implementation, bug-fix) is a tag that items can carry to activate gate enforcementguidancePointer values from get_context(itemId=...) on existing items to understand how to author each noteIf no config file exists, the project has no note schemas — items will be schema-free with no gate enforcement. Proceed with planning normally.
Use schemas to inform the plan: When a schema applies, each planned task should:
tags: "feature-implementation")BLOCKS edges)Structure the plan knowing it will be materialized into MCP items after approval:
BLOCKS edges)The prerequisite is complete. Now proceed with plan mode's normal workflow — explore the codebase, understand existing patterns, and design your implementation approach. Use the definition floor from Steps 1-3 to inform your plan.
Once the plan is approved, the post-plan hook will guide you through materialization and implementation dispatch. Do not materialize before approval.