negotium 0.3.2 → 0.3.4
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/dist/agent-helpers.js +4 -4
- package/dist/agent-helpers.js.map +5 -5
- package/dist/background-bash.js +2 -2
- package/dist/background-bash.js.map +2 -2
- package/dist/browser-runtime.js +2 -2
- package/dist/browser-runtime.js.map +2 -2
- package/dist/{chunk-vvfwqxnh.js → chunk-0ynjwr50.js} +2 -2
- package/dist/{chunk-vvfwqxnh.js.map → chunk-0ynjwr50.js.map} +2 -2
- package/dist/hosted-agent.js +3 -3
- package/dist/hosted-agent.js.map +3 -3
- package/dist/main.js +4 -4
- package/dist/main.js.map +5 -5
- package/dist/mcp-factories.js +4 -4
- package/dist/mcp-factories.js.map +5 -5
- package/dist/prompts.js +3 -3
- package/dist/prompts.js.map +4 -4
- package/dist/query-runtime.js +2 -2
- package/dist/query-runtime.js.map +2 -2
- package/dist/registry.js +3 -3
- package/dist/registry.js.map +2 -2
- package/dist/rollout.js +1 -1
- package/dist/runtime/src/platform/config.ts +1 -1
- package/dist/runtime/src/prompts/builders.ts +1 -1
- package/dist/runtime/src/version.ts +1 -1
- package/dist/runtime-helpers.js +2 -2
- package/dist/runtime-helpers.js.map +2 -2
- package/dist/types/packages/core/src/platform/config.d.ts +1 -1
- package/dist/types/packages/core/src/version.d.ts +1 -1
- package/dist/vault.js +2 -2
- package/dist/vault.js.map +2 -2
- package/install-bash-rs.mjs +10 -3
- package/package.json +1 -1
package/install-bash-rs.mjs
CHANGED
|
@@ -5,16 +5,23 @@ import { chmod, mkdir, readFile, rename, rm, writeFile } from "node:fs/promises"
|
|
|
5
5
|
import { arch, homedir, platform } from "node:os";
|
|
6
6
|
import { resolve } from "node:path";
|
|
7
7
|
|
|
8
|
-
const VERSION = "v0.1.
|
|
8
|
+
const VERSION = "v0.1.7";
|
|
9
9
|
const RELEASE_BASE = `https://github.com/maestrojeong/bash-rs-mcp/releases/download/${VERSION}`;
|
|
10
10
|
const TARGETS = {
|
|
11
11
|
"darwin-arm64": {
|
|
12
12
|
asset: "bash-rs-macos-arm64",
|
|
13
|
-
sha256: "
|
|
13
|
+
sha256: "e022996e43abdf7cd9ee4f3be7589c7f640234a300c6674c9324fe566559bc16",
|
|
14
14
|
},
|
|
15
15
|
"linux-x64": {
|
|
16
16
|
asset: "bash-rs-linux-x64",
|
|
17
|
-
sha256: "
|
|
17
|
+
sha256: "7683948a77ab8dfffb732e3c019998e6510a443e504daf626b92754fe9f7857d",
|
|
18
|
+
},
|
|
19
|
+
// Linux on arm64 is what an Apple Silicon machine runs containers as, and
|
|
20
|
+
// what the cheaper cloud instances are. Until v0.1.6 published this asset,
|
|
21
|
+
// background_bash was simply absent on those hosts.
|
|
22
|
+
"linux-arm64": {
|
|
23
|
+
asset: "bash-rs-linux-arm64",
|
|
24
|
+
sha256: "1a631a4fff1d9ea9fadc37bf0e81eefb8e401e266bf6b8266bb4734f24af2c79",
|
|
18
25
|
},
|
|
19
26
|
};
|
|
20
27
|
|