home / skills / nickcrew / claude-cortex / task-orchestration
This skill coordinates complex multi-step tasks with structured orchestration, enabling discovery, parallel spawning, delegation, and validated outputs.
npx playbooks add skill nickcrew/claude-cortex --skill task-orchestrationReview the files below or copy the command above to add this skill to your agents.
---
name: task-orchestration
description: Use when coordinating complex tasks with orchestration, delegation, or parallel workstreams - provides structured workflows for orchestrate:brainstorm, orchestrate:spawn, and orchestrate:task.
---
# Task Orchestration
## Overview
Coordinate complex tasks with structured orchestration: discover requirements, spawn parallel agents, and execute multi-step workflows with validation.
## When to Use
- Multi-step tasks requiring coordination or delegation
- Parallelizable workstreams
- Complex requirements discovery
Avoid when:
- The task is simple or single-file
## Quick Reference
| Task | Load reference |
| --- | --- |
| Orchestrated brainstorming | `skills/task-orchestration/references/brainstorm.md` |
| Spawn orchestration | `skills/task-orchestration/references/spawn.md` |
| Task orchestration | `skills/task-orchestration/references/task.md` |
| **Process Patterns** | `skills/task-orchestration/references/process-patterns.md` |
| **Task Decomposition** | `skills/task-orchestration/references/task-decomposition.md` |
## Workflow
1. Choose the orchestration mode (brainstorm, spawn, task).
2. Load the matching reference.
3. Execute with delegation and progress tracking.
4. Validate outputs and consolidate results.
## Output
- Orchestration summary
- Task progress and next steps
## Common Mistakes
- Spawning without clear task boundaries
- Skipping validation gates
This skill coordinates complex work by providing structured orchestration modes for brainstorming, spawning parallel agents, and executing multi-step tasks. It helps discover requirements, delegate workstreams, and consolidate validated outputs into a clear orchestration summary. Use it to move from ambiguous goals to tracked progress and actionable next steps.
Pick an orchestration mode (brainstorm, spawn, or task) that matches the problem pattern. The skill loads the relevant procedural reference, decomposes the goal into tasks, delegates or launches parallel agents where appropriate, and tracks progress through validation gates. Outputs include an orchestration summary, per-task progress, and recommended next steps for consolidation.
How do I choose between brainstorm, spawn, and task modes?
Use brainstorm for open-ended ideation, spawn when you can split work into independent parallel agents, and task for sequential, dependent workflows.
What common mistakes should I avoid?
Avoid spawning agents without clear task definitions and skipping validation gates; both lead to rework and inconsistent outputs.