mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
test: update snapshots for new_task tool example with todos parameter
- Updated 13 snapshot files to reflect the new tool-use example - All tests now pass with the updated example format
This commit is contained in:
parent
c1f9571e7e
commit
dc85a4a29b
13 changed files with 260 additions and 26 deletions
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -349,22 +355,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -246,22 +252,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -348,22 +354,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -398,22 +404,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -354,22 +360,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -349,22 +355,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -402,22 +408,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -349,22 +355,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -437,22 +443,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -349,22 +355,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -402,22 +408,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -398,22 +404,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ For example, to use the new_task tool:
|
|||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<todos>
|
||||
[ ] Design the feature architecture
|
||||
[ ] Implement core functionality
|
||||
[ ] Add error handling
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Always use the actual tool name as the XML tag name for proper parsing and execution.
|
||||
|
|
@ -349,22 +355,34 @@ Example: Requesting to switch to code mode
|
|||
</switch_mode>
|
||||
|
||||
## new_task
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message.
|
||||
Description: This will let you create a new task instance in the chosen mode using your provided message and optional initial todo list.
|
||||
|
||||
Parameters:
|
||||
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "debug", "architect").
|
||||
- message: (required) The initial user message or instructions for this new task.
|
||||
- todos: (optional) The initial todo list in markdown checklist format for the new task.
|
||||
|
||||
Usage:
|
||||
<new_task>
|
||||
<mode>your-mode-slug-here</mode>
|
||||
<message>Your initial instructions here</message>
|
||||
<todos>
|
||||
[ ] First task to complete
|
||||
[ ] Second task to complete
|
||||
[ ] Third task to complete
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
Example:
|
||||
<new_task>
|
||||
<mode>code</mode>
|
||||
<message>Implement a new feature for the application.</message>
|
||||
<message>Implement user authentication</message>
|
||||
<todos>
|
||||
[ ] Set up auth middleware
|
||||
[ ] Create login endpoint
|
||||
[ ] Add session management
|
||||
[ ] Write tests
|
||||
</todos>
|
||||
</new_task>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue