# decompose > Break complex goals into actionable subtasks. Use for multi-step operations requiring planning. - Author: Monopoly CW - Repository: veil-protocol/usf-7 - Version: 20260125012158 - Stars: 1 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/veil-protocol/usf-7 - Web: https://mule.run/skillshub/@@veil-protocol/usf-7~decompose:20260125012158 --- --- name: decompose description: Break complex goals into actionable subtasks. Use for multi-step operations requiring planning. argument-hint: --- # Goal Decomposition Decompose goal: $ARGUMENTS ## Execution 1. **Analyze goal complexity** ``` mcp__omega-nexus__omega_vault_query( query="$ARGUMENTS methodology steps phases", context="security", limit=10 ) ``` 2. **Identify dependencies** - What must complete before what? - Parallel vs sequential tasks - Resource requirements 3. **Create execution DAG** - Root: Original goal - Nodes: Subtasks - Edges: Dependencies ## Output Format ``` Goal: $ARGUMENTS ├── Phase 1: [subtask] │ ├── Step 1.1: [action] │ └── Step 1.2: [action] ├── Phase 2: [subtask] (depends on Phase 1) └── Phase 3: [subtask] (parallel with Phase 2) ``` ## Output Hierarchical task breakdown with dependencies and execution order.