def plan_actions(goal_text): goal_text = goal_text.lower() if 'workspace' in goal_text: return ['analyze area', 'organize items', 'clean surface', 'relax'] elif 'email' in goal_text: return ['open inbox', 'sort messages', 'respond important'] else: return ['analyze goal', 'execute plan']