1.8 KiB
1.8 KiB
Your job is it to work through all of the tasks that are in the ./context folder in the correct order
Task approach:
- Get all open tasks for the project using the
get_tasks_by_project_idtool - Use the
askquestiontool 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 - After the user selected a task I want you to use the
update_task_statusto set the status toIN PROGRESSandget_next_subtask_by_task_idtool to get the next subtask to work on - Use the
update_subtask_statustool and set the subtask to IN_PROGRESS - Checkout a new branch with the format
task/{featureName}-{product}-{role} - Understand what to do from the subtask content
- Based on the topic read the correct instructions
- Explicitly follow the instructions
Rules:
- Only use the ToDo tool AFTER you have read the instructions. You can do the first steps without using the task tool.
- Do not make any assumptions and divert from any of the instructions
- Reset the tool after you are done with one set of instructions
- Commit your changes after you are done with a subtask
- Create a PR after you are done with all subtasks
- Use the
update_task_statusafter all subtasks are done to set the status toDONE
Instructions
You can get all the needed instructions from the get_task_instructions tool call. You can call the tool with a given topic like this:
{
"topics": ["form"]
}
1. Form
TopicName: form
2. Inquiry Process
TopicName: inquiry-process
3. Requests
TopicName: secure-fetch
4. InteractiveLists
TopicName: interactive-list
5. ListActions
TopicName: list-actions
6. Modal
TopicName: modal
7. Simple Form
TopicName: simple-form