from typing import List def plan_tasks(goal: str) -> List[str]: """Very simple planner that decomposes a goal into actionable steps.""" steps = [ f"Clarify goal: {goal}", "Identify inputs, outputs, constraints", "Choose tool/model per subtask", "Draft solution and validate against constraints", "Iterate fixes and produce final output", ] return steps