opencode-swarm-plugin 0.18.0 → 0.19.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/.beads/issues.jsonl +71 -61
- package/.github/workflows/ci.yml +5 -1
- package/README.md +48 -4
- package/dist/index.js +6643 -6326
- package/dist/plugin.js +2726 -2404
- package/package.json +1 -1
- package/src/agent-mail.ts +13 -0
- package/src/anti-patterns.test.ts +1167 -0
- package/src/anti-patterns.ts +29 -11
- package/src/pattern-maturity.ts +51 -13
- package/src/plugin.ts +15 -3
- package/src/schemas/bead.ts +35 -4
- package/src/schemas/evaluation.ts +18 -6
- package/src/schemas/index.ts +25 -2
- package/src/schemas/task.ts +49 -21
- package/src/streams/debug.ts +101 -3
- package/src/streams/index.ts +58 -1
- package/src/streams/migrations.ts +46 -4
- package/src/streams/store.integration.test.ts +110 -0
- package/src/streams/store.ts +311 -126
- package/src/structured.test.ts +1046 -0
- package/src/structured.ts +74 -27
- package/src/swarm-decompose.ts +912 -0
- package/src/swarm-orchestrate.ts +1869 -0
- package/src/swarm-prompts.ts +756 -0
- package/src/swarm-strategies.ts +407 -0
- package/src/swarm.ts +23 -3876
- package/src/tool-availability.ts +29 -6
- package/test-bug-fixes.ts +86 -0
package/package.json
CHANGED
package/src/agent-mail.ts
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Agent Mail Module - MCP client for multi-agent coordination
|
|
3
3
|
*
|
|
4
|
+
* ⚠️ DEPRECATED: This MCP-based implementation is deprecated as of v0.14.0.
|
|
5
|
+
*
|
|
6
|
+
* Use the embedded Swarm Mail implementation instead:
|
|
7
|
+
* - swarmmail_* tools in src/streams/swarm-mail.ts
|
|
8
|
+
* - No external MCP server required
|
|
9
|
+
* - Embedded PGLite with event sourcing
|
|
10
|
+
* - Better error messages and recovery
|
|
11
|
+
*
|
|
12
|
+
* This file remains for backward compatibility and will be removed in v1.0.0.
|
|
13
|
+
* See README.md "Migrating from MCP Agent Mail" section for migration guide.
|
|
14
|
+
*
|
|
15
|
+
* ---
|
|
16
|
+
*
|
|
4
17
|
* This module provides type-safe wrappers around the Agent Mail MCP server.
|
|
5
18
|
* It enforces context-preservation defaults to prevent session exhaustion.
|
|
6
19
|
*
|