agentswarm-cli 1.4.24 → 1.4.26

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.
Files changed (3) hide show
  1. package/LICENSE +1 -0
  2. package/bin/agentswarm +2 -9
  3. package/package.json +13 -13
package/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
3
  Copyright (c) 2025 opencode
4
+ Copyright (c) 2026 VRSEN
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/bin/agentswarm CHANGED
@@ -176,17 +176,10 @@ function findBinary(startDir) {
176
176
  }
177
177
  }
178
178
 
179
- function findBuiltBinary(startDir) {
180
- for (const name of names) {
181
- const candidate = path.join(startDir, "..", "dist", name, "bin", binary)
182
- if (fs.existsSync(candidate)) return candidate
183
- }
184
- }
185
-
186
- const resolved = findBinary(scriptDir) ?? findBuiltBinary(scriptDir)
179
+ const resolved = findBinary(scriptDir)
187
180
  if (!resolved) {
188
181
  console.error(
189
- "It seems that your package manager failed to install the right version of the agentswarm-cli package for your platform. If this is a local source install, build the current checkout first with \"bun run build -- --single\" before running \"npm install -g .\". Otherwise you can try manually installing " +
182
+ "It seems that your package manager failed to install the right version of the agentswarm-cli package for your platform. You can try manually installing " +
190
183
  packageNames.map((name) => `"${name}"`).join(" or ") +
191
184
  " package",
192
185
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentswarm-cli",
3
- "version": "1.4.24",
3
+ "version": "1.4.26",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Agent Swarm CLI for the terminal.",
@@ -23,18 +23,18 @@
23
23
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@vrsen/agentswarm-cli-linux-arm64-musl": "1.4.24",
27
- "@vrsen/agentswarm-cli-windows-x64": "1.4.24",
28
- "@vrsen/agentswarm-cli-windows-arm64": "1.4.24",
29
- "@vrsen/agentswarm-cli-darwin-x64": "1.4.24",
30
- "@vrsen/agentswarm-cli-linux-x64": "1.4.24",
31
- "@vrsen/agentswarm-cli-darwin-arm64": "1.4.24",
32
- "@vrsen/agentswarm-cli-linux-x64-musl": "1.4.24",
33
- "@vrsen/agentswarm-cli-linux-x64-baseline": "1.4.24",
34
- "@vrsen/agentswarm-cli-linux-x64-baseline-musl": "1.4.24",
35
- "@vrsen/agentswarm-cli-darwin-x64-baseline": "1.4.24",
36
- "@vrsen/agentswarm-cli-linux-arm64": "1.4.24",
37
- "@vrsen/agentswarm-cli-windows-x64-baseline": "1.4.24"
26
+ "@vrsen/agentswarm-cli-linux-arm64-musl": "1.4.26",
27
+ "@vrsen/agentswarm-cli-windows-x64": "1.4.26",
28
+ "@vrsen/agentswarm-cli-windows-arm64": "1.4.26",
29
+ "@vrsen/agentswarm-cli-darwin-x64": "1.4.26",
30
+ "@vrsen/agentswarm-cli-linux-x64": "1.4.26",
31
+ "@vrsen/agentswarm-cli-darwin-arm64": "1.4.26",
32
+ "@vrsen/agentswarm-cli-linux-x64-musl": "1.4.26",
33
+ "@vrsen/agentswarm-cli-linux-x64-baseline": "1.4.26",
34
+ "@vrsen/agentswarm-cli-linux-x64-baseline-musl": "1.4.26",
35
+ "@vrsen/agentswarm-cli-darwin-x64-baseline": "1.4.26",
36
+ "@vrsen/agentswarm-cli-linux-arm64": "1.4.26",
37
+ "@vrsen/agentswarm-cli-windows-x64-baseline": "1.4.26"
38
38
  },
39
39
  "platformScope": "@vrsen",
40
40
  "publishConfig": {