opencode-swarm-plugin 0.45.7 → 0.47.0
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/bin/cass.characterization.test.ts +400 -379
- package/bin/eval-gate.test.ts +23 -0
- package/bin/eval-gate.ts +21 -0
- package/bin/swarm.ts +485 -151
- package/dist/bin/swarm.js +2120 -971
- package/dist/cass-tools.d.ts +1 -2
- package/dist/cass-tools.d.ts.map +1 -1
- package/dist/compaction-hook.d.ts +50 -6
- package/dist/compaction-hook.d.ts.map +1 -1
- package/dist/dashboard.d.ts +5 -6
- package/dist/dashboard.d.ts.map +1 -1
- package/dist/eval-capture.d.ts +20 -10
- package/dist/eval-capture.d.ts.map +1 -1
- package/dist/eval-capture.js +54 -21
- package/dist/eval-learning.d.ts +5 -5
- package/dist/eval-learning.d.ts.map +1 -1
- package/dist/hive.d.ts +7 -0
- package/dist/hive.d.ts.map +1 -1
- package/dist/hive.js +61 -24
- package/dist/hivemind-tools.d.ts +479 -0
- package/dist/hivemind-tools.d.ts.map +1 -0
- package/dist/index.d.ts +31 -98
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1018 -467
- package/dist/observability-health.d.ts +87 -0
- package/dist/observability-health.d.ts.map +1 -0
- package/dist/observability-tools.d.ts +5 -1
- package/dist/observability-tools.d.ts.map +1 -1
- package/dist/planning-guardrails.d.ts +24 -5
- package/dist/planning-guardrails.d.ts.map +1 -1
- package/dist/plugin.js +1006 -475
- package/dist/query-tools.d.ts +23 -5
- package/dist/query-tools.d.ts.map +1 -1
- package/dist/regression-detection.d.ts +58 -0
- package/dist/regression-detection.d.ts.map +1 -0
- package/dist/swarm-orchestrate.d.ts +3 -3
- package/dist/swarm-orchestrate.d.ts.map +1 -1
- package/dist/swarm-prompts.d.ts +4 -4
- package/dist/swarm-prompts.d.ts.map +1 -1
- package/dist/swarm-prompts.js +165 -74
- package/dist/swarm-research.d.ts +0 -2
- package/dist/swarm-research.d.ts.map +1 -1
- package/dist/tool-availability.d.ts +1 -1
- package/dist/tool-availability.d.ts.map +1 -1
- package/examples/commands/swarm.md +7 -7
- package/global-skills/swarm-coordination/SKILL.md +6 -6
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ import type { Plugin } from "@opencode-ai/plugin";
|
|
|
34
34
|
* - repo-crawl:* - GitHub API tools for repository research
|
|
35
35
|
* - skills:* - Agent skills discovery, activation, and execution
|
|
36
36
|
* - mandate:* - Agent voting system for collaborative knowledge curation
|
|
37
|
-
* -
|
|
37
|
+
* - hivemind:* - Unified memory system (learnings + session history)
|
|
38
38
|
* - contributor_lookup - GitHub contributor profile lookup with changeset credit generation
|
|
39
39
|
*
|
|
40
40
|
* @param input - Plugin context from OpenCode
|
|
@@ -138,68 +138,9 @@ export { swarmTools, SwarmError, DecompositionError, formatSubtaskPrompt, format
|
|
|
138
138
|
* Each tool has an `execute` function that takes (args, ctx) and returns a string.
|
|
139
139
|
*
|
|
140
140
|
* Note: hiveTools includes both hive_* and beads_* (legacy aliases)
|
|
141
|
+
* Note: hivemindTools includes both hivemind_* and deprecated semantic-memory_* + cass_* aliases
|
|
141
142
|
*/
|
|
142
143
|
export declare const allTools: {
|
|
143
|
-
readonly cass_search: {
|
|
144
|
-
description: string;
|
|
145
|
-
args: {
|
|
146
|
-
query: import("zod").ZodString;
|
|
147
|
-
agent: import("zod").ZodOptional<import("zod").ZodString>;
|
|
148
|
-
days: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
149
|
-
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
150
|
-
fields: import("zod").ZodOptional<import("zod").ZodString>;
|
|
151
|
-
};
|
|
152
|
-
execute(args: {
|
|
153
|
-
query: string;
|
|
154
|
-
agent?: string | undefined;
|
|
155
|
-
days?: number | undefined;
|
|
156
|
-
limit?: number | undefined;
|
|
157
|
-
fields?: string | undefined;
|
|
158
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
159
|
-
};
|
|
160
|
-
readonly cass_view: {
|
|
161
|
-
description: string;
|
|
162
|
-
args: {
|
|
163
|
-
path: import("zod").ZodString;
|
|
164
|
-
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
165
|
-
};
|
|
166
|
-
execute(args: {
|
|
167
|
-
path: string;
|
|
168
|
-
line?: number | undefined;
|
|
169
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
170
|
-
};
|
|
171
|
-
readonly cass_expand: {
|
|
172
|
-
description: string;
|
|
173
|
-
args: {
|
|
174
|
-
path: import("zod").ZodString;
|
|
175
|
-
line: import("zod").ZodNumber;
|
|
176
|
-
context: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
177
|
-
};
|
|
178
|
-
execute(args: {
|
|
179
|
-
path: string;
|
|
180
|
-
line: number;
|
|
181
|
-
context?: number | undefined;
|
|
182
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
183
|
-
};
|
|
184
|
-
readonly cass_health: {
|
|
185
|
-
description: string;
|
|
186
|
-
args: {};
|
|
187
|
-
execute(args: Record<string, never>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
188
|
-
};
|
|
189
|
-
readonly cass_index: {
|
|
190
|
-
description: string;
|
|
191
|
-
args: {
|
|
192
|
-
full: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
193
|
-
};
|
|
194
|
-
execute(args: {
|
|
195
|
-
full?: boolean | undefined;
|
|
196
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
197
|
-
};
|
|
198
|
-
readonly cass_stats: {
|
|
199
|
-
description: string;
|
|
200
|
-
args: {};
|
|
201
|
-
execute(args: Record<string, never>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
202
|
-
};
|
|
203
144
|
readonly contributor_lookup: {
|
|
204
145
|
description: string;
|
|
205
146
|
args: {
|
|
@@ -293,7 +234,7 @@ export declare const allTools: {
|
|
|
293
234
|
epic_id?: string | undefined;
|
|
294
235
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
295
236
|
};
|
|
296
|
-
readonly
|
|
237
|
+
readonly hivemind_store: {
|
|
297
238
|
description: string;
|
|
298
239
|
args: {
|
|
299
240
|
information: import("zod").ZodString;
|
|
@@ -316,7 +257,7 @@ export declare const allTools: {
|
|
|
316
257
|
extractEntities?: boolean | undefined;
|
|
317
258
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
318
259
|
};
|
|
319
|
-
readonly
|
|
260
|
+
readonly hivemind_find: {
|
|
320
261
|
description: string;
|
|
321
262
|
args: {
|
|
322
263
|
query: import("zod").ZodString;
|
|
@@ -333,7 +274,7 @@ export declare const allTools: {
|
|
|
333
274
|
fts?: boolean | undefined;
|
|
334
275
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
335
276
|
};
|
|
336
|
-
readonly
|
|
277
|
+
readonly hivemind_get: {
|
|
337
278
|
description: string;
|
|
338
279
|
args: {
|
|
339
280
|
id: import("zod").ZodString;
|
|
@@ -342,7 +283,7 @@ export declare const allTools: {
|
|
|
342
283
|
id: string;
|
|
343
284
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
344
285
|
};
|
|
345
|
-
readonly
|
|
286
|
+
readonly hivemind_remove: {
|
|
346
287
|
description: string;
|
|
347
288
|
args: {
|
|
348
289
|
id: import("zod").ZodString;
|
|
@@ -351,7 +292,7 @@ export declare const allTools: {
|
|
|
351
292
|
id: string;
|
|
352
293
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
353
294
|
};
|
|
354
|
-
readonly
|
|
295
|
+
readonly hivemind_validate: {
|
|
355
296
|
description: string;
|
|
356
297
|
args: {
|
|
357
298
|
id: import("zod").ZodString;
|
|
@@ -360,48 +301,40 @@ export declare const allTools: {
|
|
|
360
301
|
id: string;
|
|
361
302
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
362
303
|
};
|
|
363
|
-
readonly
|
|
364
|
-
description: string;
|
|
365
|
-
args: {
|
|
366
|
-
collection: import("zod").ZodOptional<import("zod").ZodString>;
|
|
367
|
-
};
|
|
368
|
-
execute(args: {
|
|
369
|
-
collection?: string | undefined;
|
|
370
|
-
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
371
|
-
};
|
|
372
|
-
readonly "semantic-memory_stats": {
|
|
304
|
+
readonly hivemind_stats: {
|
|
373
305
|
description: string;
|
|
374
306
|
args: {};
|
|
375
307
|
execute(args: Record<string, never>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
376
308
|
};
|
|
377
|
-
readonly
|
|
378
|
-
description: string;
|
|
379
|
-
args: {};
|
|
380
|
-
execute(args: Record<string, never>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
381
|
-
};
|
|
382
|
-
readonly "semantic-memory_upsert": {
|
|
309
|
+
readonly hivemind_index: {
|
|
383
310
|
description: string;
|
|
384
311
|
args: {
|
|
385
|
-
|
|
386
|
-
collection: import("zod").ZodOptional<import("zod").ZodString>;
|
|
387
|
-
tags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
388
|
-
metadata: import("zod").ZodOptional<import("zod").ZodString>;
|
|
389
|
-
confidence: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
390
|
-
autoTag: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
391
|
-
autoLink: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
392
|
-
extractEntities: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
312
|
+
full: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
393
313
|
};
|
|
394
314
|
execute(args: {
|
|
395
|
-
|
|
396
|
-
collection?: string | undefined;
|
|
397
|
-
tags?: string | undefined;
|
|
398
|
-
metadata?: string | undefined;
|
|
399
|
-
confidence?: number | undefined;
|
|
400
|
-
autoTag?: boolean | undefined;
|
|
401
|
-
autoLink?: boolean | undefined;
|
|
402
|
-
extractEntities?: boolean | undefined;
|
|
315
|
+
full?: boolean | undefined;
|
|
403
316
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
404
317
|
};
|
|
318
|
+
readonly hivemind_sync: {
|
|
319
|
+
description: string;
|
|
320
|
+
args: {};
|
|
321
|
+
execute(args: Record<string, never>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
322
|
+
};
|
|
323
|
+
readonly "semantic-memory_store": any;
|
|
324
|
+
readonly "semantic-memory_find": any;
|
|
325
|
+
readonly "semantic-memory_get": any;
|
|
326
|
+
readonly "semantic-memory_remove": any;
|
|
327
|
+
readonly "semantic-memory_validate": any;
|
|
328
|
+
readonly "semantic-memory_list": any;
|
|
329
|
+
readonly "semantic-memory_stats": any;
|
|
330
|
+
readonly "semantic-memory_check": any;
|
|
331
|
+
readonly "semantic-memory_upsert": any;
|
|
332
|
+
readonly cass_search: any;
|
|
333
|
+
readonly cass_view: any;
|
|
334
|
+
readonly cass_expand: any;
|
|
335
|
+
readonly cass_health: any;
|
|
336
|
+
readonly cass_index: any;
|
|
337
|
+
readonly cass_stats: any;
|
|
405
338
|
readonly mandate_file: {
|
|
406
339
|
description: string;
|
|
407
340
|
args: {
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,OAAO,KAAK,EAAE,MAAM,EAAsB,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,OAAO,KAAK,EAAE,MAAM,EAAsB,MAAM,qBAAqB,CAAC;AAiDtE;;;;;;;;;;;;;;;;;;GAkBG;AACH,QAAA,MAAM,WAAW,EAAE,MA6ZlB,CAAC;AAEF;;;;;;;GAOG;AACH,eAAe,WAAW,CAAC;AAM3B;;GAEG;AACH,cAAc,WAAW,CAAC;AAE1B;;;;;;;;;;;GAWG;AACH,cAAc,QAAQ,CAAC;AAEvB;;;;;;;;;;;;GAYG;AACH,OAAO,EACL,cAAc,EACd,cAAc,EACd,4BAA4B,EAC5B,4BAA4B,EAC5B,oBAAoB,EACpB,4BAA4B,EAC5B,4BAA4B,EAC5B,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,KAAK,cAAc,GACpB,MAAM,cAAc,CAAC;AAEtB;;;;;;;;;;;;;;;GAeG;AACH,OAAO,EACL,cAAc,EACd,4BAA4B,EAC5B,4BAA4B,EAC5B,iBAAiB,EACjB,KAAK,cAAc,GACpB,MAAM,cAAc,CAAC;AAEtB;;;;;GAKG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAEnD;;;;;;GAMG;AACH,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,eAAe,EACf,eAAe,GAChB,MAAM,cAAc,CAAC;AAEtB;;;;;;;;;;;;;;;;GAgBG;AACH,OAAO,EACL,UAAU,EACV,UAAU,EACV,kBAAkB,EAClB,mBAAmB,EACnB,qBAAqB,EACrB,sBAAsB,EACtB,iBAAiB,EAEjB,UAAU,EACV,cAAc,EACd,wBAAwB,EACxB,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,GACxB,MAAM,SAAS,CAAC;AAMjB;;;;;;;;GAQG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|