Create Workflow Command Create a command that orchestrates multi-step workflows by dispatching sub-agents with task-specific instructions stored in separate files. User Input Architecture Overview Workflow commands solve the context bloat problem : instead of embedding detailed step instructions in the main command (polluting orchestrator context), store them in separate task files that sub-agents read on-demand. Key Principles 1. Context Isolation Each sub-agent gets its own isolated context window. The main orchestrator stays lean while sub-agents load detailed instructions from files. | Co…