What problem does it solve?
Embedding detailed step instructions directly in a command file bloats the orchestrator's context window and degrades agent performance. This Skill solves the context bloat problem by generating workflow commands that keep the orchestrator lean while sub-agents load detailed instructions from separate task files on demand.
Core Features & Use Cases
- Context-Isolated Orchestration: Generates a lean orchestrator command (~50-100 tokens per step) that dispatches sub-agents, while detailed instructions (~500+ tokens) live in separate task files.
- Multiple Execution Patterns: Supports sequential steps, parallel independent steps, and stateful multi-step workflows using the resume parameter.
- Complete Scaffolding: Creates the tasks/ directory structure, per-step task files with goals and success criteria, the orchestrator command with frontmatter, and optional custom agents.
- Use Case: You want a feature-implementation workflow with research, architecture, and coding phases. This Skill generates the orchestrator command plus three self-contained task files that sub-agents read and execute in isolated contexts.
Quick Start
Ask the agent to create a workflow command named feature-implementation that runs research, architecture, and implementation steps through sub-agents.