@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pify/swarm",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Coordinate multiple pi agents in parallel: swarm_run fan-out with per-item auto-routing, concurrency queue, aggregated reports",
5
5
  "keywords": [
6
6
  "pi-package",