opencode-swarm-plugin 0.27.0 → 0.27.2

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.
@@ -1,9 +1,9 @@
1
1
  $ bun build ./src/index.ts --outdir ./dist --target node --external @electric-sql/pglite --external swarm-mail && bun build ./src/plugin.ts --outfile ./dist/plugin.js --target node --external @electric-sql/pglite --external swarm-mail && tsc
2
- Bundled 200 modules in 42ms
2
+ Bundled 200 modules in 36ms
3
3
 
4
4
  index.js 1.19 MB (entry point)
5
5
 
6
- Bundled 201 modules in 42ms
6
+ Bundled 201 modules in 35ms
7
7
 
8
8
  plugin.js 1.16 MB (entry point)
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # opencode-swarm-plugin
2
2
 
3
+ ## 0.27.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`50a2bf5`](https://github.com/joelhooks/swarm-tools/commit/50a2bf51c5320c038f202191d7acbfd2179f2cb3) Thanks [@joelhooks](https://github.com/joelhooks)! - Fix cells view migration not being applied
8
+
9
+ The v7 migration (cellsViewMigration) that creates the `cells` view was added after
10
+ swarm-mail@0.3.0 was published. This caused `hive_sync` to fail with
11
+ "relation cells does not exist" because the JSONL export queries the `cells` view.
12
+
13
+ This patch ensures the v7 migration is included in the published package.
14
+
15
+ - Updated dependencies [[`50a2bf5`](https://github.com/joelhooks/swarm-tools/commit/50a2bf51c5320c038f202191d7acbfd2179f2cb3)]:
16
+ - swarm-mail@0.3.2
17
+
3
18
  ## 0.27.0
4
19
 
5
20
  ### Minor Changes
package/bin/swarm.ts CHANGED
@@ -336,46 +336,8 @@ const DEPENDENCIES: Dependency[] = [
336
336
  installType: "brew",
337
337
  description: "AI coding assistant (plugin host)",
338
338
  },
339
- {
340
- name: "Beads",
341
- command: "bd",
342
- checkArgs: ["--version"],
343
- required: true,
344
- install:
345
- "curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash",
346
- installType: "curl",
347
- description: "Git-backed issue tracking",
348
- },
349
- {
350
- name: "Go",
351
- command: "go",
352
- checkArgs: ["version"],
353
- required: false,
354
- install: "brew install go",
355
- installType: "brew",
356
- description: "Required for Agent Mail",
357
- },
358
- {
359
- name: "MCP Agent Mail",
360
- command: "curl",
361
- checkArgs: [
362
- "-s",
363
- "-X",
364
- "POST",
365
- "http://localhost:8765/mcp",
366
- "-H",
367
- "Content-Type: application/json",
368
- "-d",
369
- "{}",
370
- "-o",
371
- "/dev/null",
372
- ],
373
- required: false,
374
- install: "https://github.com/Dicklesworthstone/mcp_agent_mail",
375
- installType: "manual",
376
- description:
377
- "Multi-agent coordination & file reservations (like Gmail for coding agents)",
378
- },
339
+ // Note: Beads CLI (bd) is NO LONGER required - we use HiveAdapter from swarm-mail
340
+ // which provides the same functionality programmatically without external dependencies
379
341
  {
380
342
  name: "CASS (Coding Agent Session Search)",
381
343
  command: "cass",
@@ -1136,16 +1098,10 @@ function getFixCommand(dep: Dependency): string | null {
1136
1098
  switch (dep.name) {
1137
1099
  case "OpenCode":
1138
1100
  return "brew install sst/tap/opencode";
1139
- case "Beads":
1140
- return "curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash";
1141
- case "Go":
1142
- return "brew install go (or visit https://go.dev/dl/)";
1143
1101
  case "semantic-memory":
1144
1102
  return "npm install -g semantic-memory";
1145
1103
  case "Redis":
1146
1104
  return "brew install redis && brew services start redis";
1147
- case "MCP Agent Mail":
1148
- return "See: https://github.com/Dicklesworthstone/mcp_agent_mail";
1149
1105
  case "CASS (Coding Agent Session Search)":
1150
1106
  return "See: https://github.com/Dicklesworthstone/coding_agent_session_search";
1151
1107
  case "UBS (Ultimate Bug Scanner)":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm-plugin",
3
- "version": "0.27.0",
3
+ "version": "0.27.2",
4
4
  "description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,7 +33,7 @@
33
33
  "@opencode-ai/plugin": "^1.0.134",
34
34
  "gray-matter": "^4.0.3",
35
35
  "ioredis": "^5.4.1",
36
- "swarm-mail": "0.3.0",
36
+ "swarm-mail": "0.3.2",
37
37
  "zod": "4.1.8"
38
38
  },
39
39
  "devDependencies": {