Task Decomposer Breaks natural-language problems into sub-tasks suitable for DAG nodes. The first step of the meta-DAG: before you can build or execute a DAG, you need to understand what the pieces are. --- When to Use ✅ Use for : - Breaking a vague problem into concrete sub-tasks - Identifying phases, dependencies, and parallelization opportunities - Determining which sub-tasks are concrete vs. vague (pluripotent) - Selecting the appropriate domain meta-skill for decomposition ❌ NOT for : - Building the DAG structure from sub-tasks (use ) - Executing the tasks (use ) - Assigning skills to ta…