@pify/swarm 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions/swarm.ts +2 -0
- package/package.json +1 -1
package/extensions/swarm.ts
CHANGED
|
@@ -332,6 +332,7 @@ export default function swarm(pi: ExtensionAPI) {
|
|
|
332
332
|
pi.registerTool({
|
|
333
333
|
name: "swarm_run",
|
|
334
334
|
label: "Run swarm",
|
|
335
|
+
promptSnippet: "Run many independent items through child agents at once",
|
|
335
336
|
description:
|
|
336
337
|
`Fan out 1-${MAX_ITEMS} independent task items to parallel child agents (concurrency ${DEFAULT_CONCURRENCY}). ` +
|
|
337
338
|
"Each item auto-routes to an agent type via its match_patterns/match_keywords, falling back to the " +
|
|
@@ -451,6 +452,7 @@ export default function swarm(pi: ExtensionAPI) {
|
|
|
451
452
|
pi.registerTool({
|
|
452
453
|
name: "swarm_status",
|
|
453
454
|
label: "Swarm status",
|
|
455
|
+
promptSnippet: "Progress of a running swarm",
|
|
454
456
|
description: "Progress of a swarm run (default: the latest). Returns the full report when finished.",
|
|
455
457
|
parameters: Type.Object({
|
|
456
458
|
runId: Type.Optional(Type.String()),
|
package/package.json
CHANGED