Skip to content

Commit 3e56f86

Browse files
committed
Fix: update parameter names in new task description for consistency
1 parent 42c1f5f commit 3e56f86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/prompts/tools/new-task.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ export function getNewTaskDescription(args: ToolArgs): string {
55
Description: Create a new task with a specified starting mode and initial message. This tool instructs the system to create a new Cline instance in the given mode with the provided message.
66
77
Parameters:
8-
- mode: (required) The slug of the mode to start the new task in (e.g., "code", "ask", "architect").
8+
- mode_slug: (required) The slug of the mode to start the new task in (e.g., "code", "ask", "architect").
99
- message: (required) The initial user message or instructions for this new task.
1010
1111
Usage:
1212
<new_task>
13-
<mode>your-mode-slug-here</mode>
13+
<mode_slug>your-mode-slug-here</mode_slug>
1414
<message>Your initial instructions here</message>
1515
</new_task>
1616
1717
Example:
1818
<new_task>
19-
<mode>code</mode>
19+
<mode_slug>code</mode_slug>
2020
<message>Implement a new feature for the application.</message>
2121
</new_task>
2222
`

0 commit comments

Comments
 (0)