opencode-swarm-plugin 0.28.0 → 0.28.1
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +10 -0
- package/bin/swarm.ts +5 -1
- package/package.json +4 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -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
|
|
2
|
+
Bundled 200 modules in 34ms
|
|
3
3
|
|
|
4
4
|
index.js 1.20 MB (entry point)
|
|
5
5
|
|
|
6
|
-
Bundled 201 modules in
|
|
6
|
+
Bundled 201 modules in 34ms
|
|
7
7
|
|
|
8
8
|
plugin.js 1.16 MB (entry point)
|
|
9
9
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# opencode-swarm-plugin
|
|
2
2
|
|
|
3
|
+
## 0.28.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0ee4f65`](https://github.com/joelhooks/swarm-tools/commit/0ee4f656c2fb2cf62d3ef06d329d9e093d124c33) Thanks [@joelhooks](https://github.com/joelhooks)! - Add postinstall hint and update repo URL
|
|
8
|
+
|
|
9
|
+
- Show "Run swarm setup" hint after npm install
|
|
10
|
+
- Update repo URL to github.com/joelhooks/swarm-tools
|
|
11
|
+
- Add "Get started" commands to version output
|
|
12
|
+
|
|
3
13
|
## 0.28.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/bin/swarm.ts
CHANGED
|
@@ -1966,7 +1966,11 @@ async function version() {
|
|
|
1966
1966
|
console.log(dim(" " + TAGLINE));
|
|
1967
1967
|
console.log();
|
|
1968
1968
|
console.log(" Version: " + VERSION);
|
|
1969
|
-
console.log(" Docs: https://github.com/joelhooks/
|
|
1969
|
+
console.log(" Docs: https://github.com/joelhooks/swarm-tools");
|
|
1970
|
+
console.log();
|
|
1971
|
+
console.log(cyan(" Get started:"));
|
|
1972
|
+
console.log(" swarm setup " + dim("Configure OpenCode integration"));
|
|
1973
|
+
console.log(" swarm doctor " + dim("Check dependencies"));
|
|
1970
1974
|
console.log();
|
|
1971
1975
|
|
|
1972
1976
|
// Check for updates (non-blocking)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm-plugin",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.1",
|
|
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",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"test:all": "bun test --timeout 60000 src/",
|
|
27
27
|
"test:watch": "bun test --watch src/",
|
|
28
28
|
"typecheck": "tsc --noEmit",
|
|
29
|
-
"publish:pkg": "npm publish --access public --provenance"
|
|
29
|
+
"publish:pkg": "npm publish --access public --provenance",
|
|
30
|
+
"postinstall": "node -e \"console.log('\\n\\x1b[33m Run \\x1b[36mswarm setup\\x1b[33m to configure OpenCode integration\\x1b[0m\\n')\""
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
33
|
"@clack/prompts": "^0.11.0",
|
|
@@ -65,6 +66,6 @@
|
|
|
65
66
|
"license": "MIT",
|
|
66
67
|
"repository": {
|
|
67
68
|
"type": "git",
|
|
68
|
-
"url": "https://github.com/joelhooks/
|
|
69
|
+
"url": "https://github.com/joelhooks/swarm-tools"
|
|
69
70
|
}
|
|
70
71
|
}
|