@sellable/install 0.1.480 → 0.1.482
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/container/Dockerfile +4 -4
- package/container/README.md +2 -2
- package/lib/sellable-agent/fly-admin-image/Dockerfile +2 -2
- package/lib/sellable-agent/fly-admin-image/admin-runtime.mjs +5 -5
- package/lib/sellable-agent/fly-customer-image/Dockerfile +6 -6
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +3 -3
- package/lib/sellable-agent/fly-runtime-identity.mjs +1 -1
- package/lib/sellable-agent/hermes-bridge.mjs +28 -0
- package/lib/sellable-agent/hermes-memory-snapshot.mjs +1 -1
- package/lib/sellable-agent/host-bootstrap.mjs +1 -1
- package/lib/sellable-agent/host-worker.mjs +1 -1
- package/lib/sellable-agent/profile-materializer.mjs +2 -2
- package/lib/sellable-agent/provisioning-adapter.mjs +4 -4
- package/package.json +1 -1
package/container/Dockerfile
CHANGED
|
@@ -3,12 +3,12 @@ FROM ${HERMES_IMAGE}
|
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
6
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.482
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.760-wip.phase143.20260727100513
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-muNXHuRnLTfsnW+MQUvK+p0VBZETDKeevr70iRliXyqE3/SLrZQJLL1laJzMo+qiUs9jMXMHdKOQfQqLiwJvtg==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.482" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.760-wip.phase143.20260727100513" \
|
|
13
13
|
&& test -n "${INSTALLER_INTEGRITY}" \
|
|
14
14
|
&& test "$(npm view "${INSTALLER_PACKAGE}" dist.integrity)" = "${INSTALLER_INTEGRITY}" \
|
|
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.479" \
|
|
|
23
23
|
&& mkdir -p /opt/sellable-agent/install-root /opt/sellable-agent/mcp-root \
|
|
24
24
|
&& npm install --prefix /opt/sellable-agent/install-root --omit=dev --ignore-scripts --no-audit --no-fund "${INSTALLER_PACKAGE}" \
|
|
25
25
|
&& npm install --prefix /opt/sellable-agent/mcp-root --omit=dev --ignore-scripts --no-audit --no-fund "${MCP_PACKAGE}" \
|
|
26
|
-
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.
|
|
26
|
+
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.482' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.760-wip.phase143.20260727100513') throw new Error('package identity rejected');" \
|
|
27
27
|
&& node --input-type=module -e "import { buildExternalRuntimeClosure } from '/opt/sellable-agent/install-root/node_modules/@sellable/install/lib/sellable-agent/external-runtime-builder.mjs'; const built = buildExternalRuntimeClosure({ mcpPackageRoot: '/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp', mcpNodeModulesRoot: '/opt/sellable-agent/mcp-root/node_modules', hermesSourceRoot: '/opt/hermes', ownerUid: 0, ownerGid: 0 }); if (!built.closureDigest) throw new Error('runtime closure rejected');" \
|
|
28
|
-
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.
|
|
28
|
+
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.482', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.760-wip.phase143.20260727100513', mcpIntegrity: process.argv[2] }; writeFileSync('/opt/sellable-agent/release.json', JSON.stringify(release) + '\\n', { mode: 0o444 }); chmodSync('/opt/sellable-agent/release.json', 0o444);" "${INSTALLER_INTEGRITY}" "${MCP_INTEGRITY}" \
|
|
29
29
|
&& npm cache clean --force
|
|
30
30
|
|
|
31
31
|
COPY entrypoint.sh /usr/local/bin/sellable-agent-container-entrypoint
|
package/container/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
This image is a dedicated Agent worker/runtime boundary beside an existing Hermes dashboard. It never replaces or reconfigures the dashboard container.
|
|
4
4
|
|
|
5
5
|
Build from this directory after
|
|
6
|
-
`@sellable/install@0.1.
|
|
6
|
+
`@sellable/install@0.1.482` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
docker build --platform linux/amd64 \
|
|
11
11
|
--build-arg INSTALLER_INTEGRITY='sha512-…' \
|
|
12
|
-
--tag sellable-agent-host:0.1.
|
|
12
|
+
--tag sellable-agent-host:0.1.482 .
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Create a private `bootstrap/` directory owned by root with mode `0700`. It must contain `bootstrap.json`, `provider-auth`, and `slack-app`, each owned by root with mode `0600`. `bootstrap.json` contains only non-secret identities, hashes, package integrities, and the control-plane URL. The other two files contain the provider JSON and global Slack app token whose hashes are pinned by `bootstrap.json`.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ARG HERMES_IMAGE=nousresearch/hermes-agent@sha256:
|
|
1
|
+
ARG HERMES_IMAGE=nousresearch/hermes-agent@sha256:c0cab4e3711bcb27a312be1b3776254fc06fd50d5f7a6b8017915fc7171cb39e
|
|
2
2
|
FROM ${HERMES_IMAGE}
|
|
3
3
|
|
|
4
4
|
USER root
|
|
@@ -86,7 +86,7 @@ COPY hermes-memory-reconcile.sh /opt/sellable/share/hermes-memory-reconcile.sh
|
|
|
86
86
|
COPY fly-admin-image/rootfs/ /
|
|
87
87
|
|
|
88
88
|
RUN node --input-type=module -e \
|
|
89
|
-
'import { installHermesAgentBridge,
|
|
89
|
+
'import { installHermesAgentBridge, HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT } from "/usr/local/lib/sellable-agent/hermes-bridge.mjs"; installHermesAgentBridge({ sourceRoot: "/opt/hermes", contract: HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT });' \
|
|
90
90
|
&& node --input-type=module -e \
|
|
91
91
|
'await import("/usr/local/lib/sellable-agent/fly-runtime-identity.mjs");' \
|
|
92
92
|
&& chmod 0755 /etc \
|
|
@@ -1796,14 +1796,14 @@ async function flushHermesSnapshot({ client, profileId, profileRoot }) {
|
|
|
1796
1796
|
profileId,
|
|
1797
1797
|
profileRoot,
|
|
1798
1798
|
hermesRoot: DATA_ROOT,
|
|
1799
|
-
hermesVersion: "0.
|
|
1799
|
+
hermesVersion: "0.20.0",
|
|
1800
1800
|
debounceMs: 0,
|
|
1801
1801
|
upload: ({ archiveDigest, archiveBytes, sourceProfileId, bytes }) =>
|
|
1802
1802
|
client.putMemorySnapshot(
|
|
1803
1803
|
{
|
|
1804
1804
|
archiveDigest,
|
|
1805
1805
|
archiveBytes,
|
|
1806
|
-
hermesVersion: "0.
|
|
1806
|
+
hermesVersion: "0.20.0",
|
|
1807
1807
|
sourceProfileId,
|
|
1808
1808
|
},
|
|
1809
1809
|
bytes
|
|
@@ -2426,13 +2426,13 @@ async function runAdminProduction() {
|
|
|
2426
2426
|
profileId: activeLaunch.profile.profile,
|
|
2427
2427
|
profileRoot: activeLaunch.profile.profileHome,
|
|
2428
2428
|
hermesRoot: DATA_ROOT,
|
|
2429
|
-
hermesVersion: "0.
|
|
2429
|
+
hermesVersion: "0.20.0",
|
|
2430
2430
|
upload: ({ archiveDigest, archiveBytes, sourceProfileId, bytes }) =>
|
|
2431
2431
|
client.putMemorySnapshot(
|
|
2432
2432
|
{
|
|
2433
2433
|
archiveDigest,
|
|
2434
2434
|
archiveBytes,
|
|
2435
|
-
hermesVersion: "0.
|
|
2435
|
+
hermesVersion: "0.20.0",
|
|
2436
2436
|
sourceProfileId,
|
|
2437
2437
|
},
|
|
2438
2438
|
bytes
|
|
@@ -2554,7 +2554,7 @@ async function runAdminProduction() {
|
|
|
2554
2554
|
profileId: basename(profileContract.profileHome),
|
|
2555
2555
|
profileRoot: profileContract.profileHome,
|
|
2556
2556
|
hermesRoot: DATA_ROOT,
|
|
2557
|
-
hermesVersion: "0.
|
|
2557
|
+
hermesVersion: "0.20.0",
|
|
2558
2558
|
fetchLatest: () => client.getMemorySnapshot(),
|
|
2559
2559
|
});
|
|
2560
2560
|
if (!memoryRestore.ok) throw new Error(memoryRestore.code);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
ARG HERMES_IMAGE=nousresearch/hermes-agent@sha256:
|
|
1
|
+
ARG HERMES_IMAGE=nousresearch/hermes-agent@sha256:c0cab4e3711bcb27a312be1b3776254fc06fd50d5f7a6b8017915fc7171cb39e
|
|
2
2
|
FROM ${HERMES_IMAGE}
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG MCP_PACKAGE=@sellable/mcp@0.1.
|
|
7
|
-
ARG MCP_INTEGRITY=sha512-
|
|
8
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
6
|
+
ARG MCP_PACKAGE=@sellable/mcp@0.1.805
|
|
7
|
+
ARG MCP_INTEGRITY=sha512-ULMGwWalb14SaMgxLeeiOWjavXpnONhdD8kAkvp7rJFdiL7s30VwXX+1j/aNwijiWXqqNQ1wcsXUPqk4eWpslg==
|
|
8
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.482
|
|
9
9
|
ARG TUS_JS_CLIENT_VERSION=4.3.1
|
|
10
|
-
ARG HERMES_VERSION=0.
|
|
10
|
+
ARG HERMES_VERSION=0.20.0
|
|
11
11
|
ARG MCP_TRUST_ROOT_B64
|
|
12
12
|
ARG TIRITH_VERSION=0.3.3
|
|
13
13
|
ARG PLAYWRIGHT_VERSION=1.61.1
|
|
@@ -63,7 +63,7 @@ COPY fly-customer-image/customer-runtime.mjs /usr/local/lib/sellable-agent/fly-c
|
|
|
63
63
|
COPY fly-customer-image/rootfs/ /
|
|
64
64
|
|
|
65
65
|
RUN node --input-type=module -e \
|
|
66
|
-
'import { installHermesAgentBridge,
|
|
66
|
+
'import { installHermesAgentBridge, HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT } from "/usr/local/lib/sellable-agent/hermes-bridge.mjs"; installHermesAgentBridge({ sourceRoot: "/opt/hermes", contract: HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT });' \
|
|
67
67
|
&& node --input-type=module -e \
|
|
68
68
|
'await import("/usr/local/lib/sellable-agent/fly-runtime-identity.mjs");' \
|
|
69
69
|
&& chmod 0555 /usr/local/lib/sellable-agent/*.mjs \
|
|
@@ -67,12 +67,12 @@ const RUNTIME_GENERATION = Number(
|
|
|
67
67
|
"0"
|
|
68
68
|
);
|
|
69
69
|
const BOOT_SESSION_ID = randomUUID();
|
|
70
|
-
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.
|
|
70
|
+
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
|
|
71
71
|
const INSTALLER_PACKAGE =
|
|
72
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
72
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.482";
|
|
73
73
|
const MCP_PACKAGE =
|
|
74
74
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ??
|
|
75
|
-
"@sellable/mcp@0.1.
|
|
75
|
+
"@sellable/mcp@0.1.805";
|
|
76
76
|
|
|
77
77
|
const sha256 = (value) => createHash("sha256").update(value).digest("hex");
|
|
78
78
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
@@ -810,7 +810,7 @@ export function createFlyCustomerControlClient({
|
|
|
810
810
|
Number.isSafeInteger(value?.archiveBytes) &&
|
|
811
811
|
value.archiveBytes > 0 &&
|
|
812
812
|
value.archiveBytes <= 128 * 1024 * 1024 &&
|
|
813
|
-
value.hermesVersion === "0.
|
|
813
|
+
value.hermesVersion === "0.20.0" &&
|
|
814
814
|
/^[A-Za-z0-9][A-Za-z0-9_-]{0,127}$/.test(value?.sourceProfileId ?? "");
|
|
815
815
|
const signedUrlAccepted = (value) => {
|
|
816
816
|
try {
|
|
@@ -1011,6 +1011,34 @@ export const HERMES_AGENT_BRIDGE_DEDICATED_V019_CONTRACT = normalizeContract({
|
|
|
1011
1011
|
],
|
|
1012
1012
|
});
|
|
1013
1013
|
|
|
1014
|
+
export const HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT = normalizeContract({
|
|
1015
|
+
hermesVersion: "0.20.0",
|
|
1016
|
+
versionFile: {
|
|
1017
|
+
path: "hermes_cli/__init__.py",
|
|
1018
|
+
sha256: "e4c421279251971d07f84628d1d59222f0368ab297ce8fd0dff10e5938fe971e",
|
|
1019
|
+
},
|
|
1020
|
+
files: [
|
|
1021
|
+
{
|
|
1022
|
+
path: "gateway/config.py",
|
|
1023
|
+
patchKind: "gateway-config-dedicated-v019",
|
|
1024
|
+
sourceSha256: "c5138c0dce57ee148399b01fc4ec56f6cf1d8d0229b16c338b01254b59816e7f",
|
|
1025
|
+
patchedSha256: "6970e3fec4c0fbe3357f8f8e03950f129e3f1c98178308bfb7f2ab99dfbc020e",
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
path: "plugins/platforms/slack/adapter.py",
|
|
1029
|
+
patchKind: "slack-adapter-dedicated-v019",
|
|
1030
|
+
sourceSha256: "2fa41bb753b7c855c6aadaacbfdaec36d1cadb580afe47a8ee1cfecbb185dedf",
|
|
1031
|
+
patchedSha256: "846fe4865e42dca3a52aae66132db2a2ba8fdfbca74eca026c28881a7d1a59c5",
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
path: "tools/mcp_tool.py",
|
|
1035
|
+
patchKind: "mcp-tool",
|
|
1036
|
+
sourceSha256: "f9d50eec7b98819fa91b8ce640c8a32eff0726e0f349832763852bd82bbbb958",
|
|
1037
|
+
patchedSha256: "a59146b2cce167591858a37a6f2c4d7be0d504fcbe73c8bb517388c826975cf0",
|
|
1038
|
+
},
|
|
1039
|
+
],
|
|
1040
|
+
});
|
|
1041
|
+
|
|
1014
1042
|
function assertRelativeContractPath(path) {
|
|
1015
1043
|
if (!path || isAbsolute(path) || path.split(/[\\/]+/).some((part) => part === ".." || part === "")) {
|
|
1016
1044
|
throw new HermesAgentBridgeError("HERMES_BRIDGE_UNSAFE_PATH", "Bridge contract path is unsafe", { path });
|
|
@@ -45,7 +45,7 @@ export const HERMES_SNAPSHOT_CRON = Object.freeze({
|
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
const HERMES = "/opt/hermes/.venv/bin/hermes";
|
|
48
|
-
const VERSION = "0.
|
|
48
|
+
const VERSION = "0.20.0";
|
|
49
49
|
const ID = /^[A-Za-z0-9][A-Za-z0-9_-]{0,127}$/;
|
|
50
50
|
const SHA256 = /^[a-f0-9]{64}$/;
|
|
51
51
|
const MAX_BYTES = 128 * 1024 * 1024;
|
|
@@ -38,7 +38,7 @@ import { installAgentHostServices } from "./service-installer.mjs";
|
|
|
38
38
|
const PACKAGE_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "../..");
|
|
39
39
|
const VERSION = "sellable-agent-host-bootstrap/v1";
|
|
40
40
|
const RECEIPT_VERSION = "sellable-agent-host-registration/v1";
|
|
41
|
-
const INSTALLER_PACKAGE = "@sellable/install@0.1.
|
|
41
|
+
const INSTALLER_PACKAGE = "@sellable/install@0.1.482";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.760-wip.phase143.20260727100513";
|
|
43
43
|
const HERMES_VERSION = "0.18.0";
|
|
44
44
|
const SHA256 = /^[a-f0-9]{64}$/;
|
|
@@ -1540,7 +1540,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
|
|
|
1540
1540
|
]) ||
|
|
1541
1541
|
pinned.hermesCli !== "hermes" ||
|
|
1542
1542
|
pinned.hermesVersion !== "0.18.0" ||
|
|
1543
|
-
pinned.installerPackage !== "@sellable/install@0.1.
|
|
1543
|
+
pinned.installerPackage !== "@sellable/install@0.1.482" ||
|
|
1544
1544
|
pinned.mcpPackage !==
|
|
1545
1545
|
"@sellable/mcp@0.1.760-wip.phase143.20260727100513" ||
|
|
1546
1546
|
!Array.isArray(policy.toolInclude) ||
|
|
@@ -197,7 +197,7 @@ function validateDesired(desired) {
|
|
|
197
197
|
desired.serviceCredentialGeneration < 1 ||
|
|
198
198
|
desired.hermesCli !== "hermes" ||
|
|
199
199
|
desired.hermesVersion !== "0.18.0" ||
|
|
200
|
-
desired.installerPackage !== "@sellable/install@0.1.
|
|
200
|
+
desired.installerPackage !== "@sellable/install@0.1.482" ||
|
|
201
201
|
desired.mcpPackage !==
|
|
202
202
|
"@sellable/mcp@0.1.760-wip.phase143.20260727100513" ||
|
|
203
203
|
!Array.isArray(desired.toolInclude) ||
|
|
@@ -2081,7 +2081,7 @@ function validateNativeSlackDesired(desired) {
|
|
|
2081
2081
|
!SHA256.test(desired.policyHash ?? "") ||
|
|
2082
2082
|
!SHA256.test(desired.accessPolicyHash ?? "") ||
|
|
2083
2083
|
!SHA256.test(desired.runtimeDesiredHash ?? "") ||
|
|
2084
|
-
desired.hermesVersion !== "0.
|
|
2084
|
+
desired.hermesVersion !== "0.20.0" ||
|
|
2085
2085
|
!/^@sellable\/install@\d+\.\d+\.\d+(?:[-.A-Za-z0-9]+)?$/.test(
|
|
2086
2086
|
desired.installerPackage ?? ""
|
|
2087
2087
|
) ||
|
|
@@ -25,7 +25,7 @@ import { fileURLToPath } from "node:url";
|
|
|
25
25
|
import { deriveContainedProfileId } from "./profile-materializer.mjs";
|
|
26
26
|
|
|
27
27
|
export const PROVISIONING_ACTION = "PROVISION_HERMES_PROFILE";
|
|
28
|
-
export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.
|
|
28
|
+
export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.482";
|
|
29
29
|
export const PINNED_MCP_PACKAGE =
|
|
30
30
|
"@sellable/mcp@0.1.760-wip.phase143.20260727100513";
|
|
31
31
|
|
|
@@ -612,7 +612,7 @@ function inspectProvisionedProfile({
|
|
|
612
612
|
!matchesReadback(manifest, request) ||
|
|
613
613
|
manifest.serviceCredentialReference !== serviceCredentialReference ||
|
|
614
614
|
manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
|
|
615
|
-
manifest.installerVersion !== "0.1.
|
|
615
|
+
manifest.installerVersion !== "0.1.482" ||
|
|
616
616
|
manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
|
|
617
617
|
manifest.credentialKeyVersion !== credentialKeyVersion ||
|
|
618
618
|
!/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
|
|
@@ -826,7 +826,7 @@ function successReceipt({
|
|
|
826
826
|
subject: `agent-profile:${observed.profileId}`,
|
|
827
827
|
cli: {
|
|
828
828
|
installPackage: PINNED_INSTALL_PACKAGE,
|
|
829
|
-
installVersion: "0.1.
|
|
829
|
+
installVersion: "0.1.482",
|
|
830
830
|
mcpPackage: PINNED_MCP_PACKAGE,
|
|
831
831
|
command: "hermes profile bootstrap",
|
|
832
832
|
},
|
|
@@ -874,7 +874,7 @@ function failure(code, stages, extra = {}, request = null) {
|
|
|
874
874
|
: "agent-profile:unbound",
|
|
875
875
|
cli: {
|
|
876
876
|
installPackage: PINNED_INSTALL_PACKAGE,
|
|
877
|
-
installVersion: "0.1.
|
|
877
|
+
installVersion: "0.1.482",
|
|
878
878
|
mcpPackage: PINNED_MCP_PACKAGE,
|
|
879
879
|
command: "hermes profile bootstrap",
|
|
880
880
|
},
|