You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -180,7 +180,7 @@ Workflow step definitions - provide ONLY on initial call.
180
180
);
181
181
182
182
constactionDescription=
183
-
"Specifies the action to be performed from the enum. Based on the value chosen for 'action', the corresponding sibling property (which shares the same name as the action value and contains its specific parameters) **MUST** also be provided in this object. For example, if 'action' is 'get_weather', then the 'get_weather' parameter object is mandatory.";
183
+
`Specifies the action to be performed from the enum. **⚠️ When setting \`action: "example_action"\`, you MUST also provide \`"example_action": { ... }\`**`;
184
184
185
185
constbaseProperties={
186
186
[ACTION_KEY]: {
@@ -192,7 +192,7 @@ Workflow step definitions - provide ONLY on initial call.
192
192
type: "string",
193
193
enum: allToolNames,
194
194
description:
195
-
"Specify the next action to execute only when the user's request requires additional steps. If no next action is needed, this property **MUST BE OMITTED** from the object.",
195
+
"Optional: Specify the next action to execute. Only include this when you know additional actions are needed after the current one completes.",
text: `No matches found for: "${args.pattern}"\n\nTry:\n- **Simpler/ pattern** or \`*\`\n- Check if files exist in: ${searchPath}\n- Use specific file path`,
129
+
text:
130
+
`No matches found for: "${args.pattern}"\n\nTry:\n- **Simpler pattern** or \`*\`\n- Check if files exist in: ${searchPath}\n- Use specific file path`,
129
131
},
130
132
],
131
133
};
132
134
}
133
135
134
136
// Build output and check size
135
137
constmatches=result.matches.slice(0,limit);
136
-
letoutput=`Found ${result.matches.length} matches (showing up to ${matches.length}):\n\n`;
138
+
letoutput=
139
+
`Found ${result.matches.length} matches (showing up to ${matches.length}):\n\n`;
0 commit comments