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
* Load a skill's full instructions when relevant to the current task. Skills are loaded on-demand - only load them when you need their specific guidance.
253
+
*/
254
+
exportinterfaceSkillParams{
255
+
/** The name of the skill to load */
256
+
name: string
257
+
}
258
+
249
259
/**
250
260
* Spawn multiple agents and send a prompt and/or parameters to each of them. These agents will run in parallel. Note that that means they will run independently. If you need to run agents sequentially, use spawn_agents with one agent at a time instead.
* Load a skill's full instructions when relevant to the current task. Skills are loaded on-demand - only load them when you need their specific guidance.
253
+
*/
254
+
exportinterfaceSkillParams{
255
+
/** The name of the skill to load */
256
+
name: string
257
+
}
258
+
216
259
/**
217
260
* Spawn multiple agents and send a prompt and/or parameters to each of them. These agents will run in parallel. Note that that means they will run independently. If you need to run agents sequentially, use spawn_agents with one agent at a time instead.
@@ -309,13 +309,13 @@ Use the tools below to complete the user request, if applicable.
309
309
Tool calls use a specific XML and JSON-like format. Adhere *precisely* to this nested element structure:
310
310
311
311
${getToolCallString(
312
-
'tool_name',
313
-
{
314
-
parameter1: 'value1',
315
-
parameter2: 123,
316
-
},
317
-
false,
318
-
)}
312
+
'tool_name',
313
+
{
314
+
parameter1: 'value1',
315
+
parameter2: 123,
316
+
},
317
+
false,
318
+
)}
319
319
320
320
Important: You only have access to the tools below. Do not use any other tools -- they are not available to you, instead they may have been previously used by other agents.
321
321
@@ -327,13 +327,12 @@ export async function getToolSet(params: {
0 commit comments