Your job is it to work through all of the tasks that are in the `./context` folder in the correct order
Your job is it to work through all of the tasks that are in the `./context` folder in the correct order ## Task approach: 1. Get all open tasks for the project using the `get_tasks_by_project_id` tool 2. Use the `askquestion` tool to ask the use on which task he wants to work on (only display tasks and NOT subtasks). Show tasks that are OPEN or IN PROGRESS 3. After the user selected a task I want you to use the `update_task_status` to set the status to `IN PROGRESS` and `get_next_subtask_by_task_id` tool to get the next subtask to work on 4. Use the `update_subtask_status` tool and set th...