@sellable/install 0.1.523-wip.phase166.20260806003733 → 0.1.526

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.
@@ -3,13 +3,13 @@ FROM ${HERMES_IMAGE}
3
3
 
4
4
  USER root
5
5
 
6
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.523-wip.phase166.20260806003733
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.830-wip.phase166.20260806003733
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.526
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.760-wip.phase143.20260727100513
8
8
  ARG INSTALLER_INTEGRITY
9
- ARG MCP_INTEGRITY=sha512-F10IHQTvgRYPlbGRx8j3FRdUP4rR9cgrigN8bkjhB+6akE63iDXcCbYNmG7b2ShsPlMhxhgvXDa/A4//CoIRWQ==
9
+ ARG MCP_INTEGRITY=sha512-muNXHuRnLTfsnW+MQUvK+p0VBZETDKeevr70iRliXyqE3/SLrZQJLL1laJzMo+qiUs9jMXMHdKOQfQqLiwJvtg==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.523-wip.phase166.20260806003733" \
12
- && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.830-wip.phase166.20260806003733" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.526" \
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}" \
15
15
  && test "$(npm view "${MCP_PACKAGE}" dist.integrity)" = "${MCP_INTEGRITY}" \
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.523-wip.phase166.202608
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.523-wip.phase166.20260806003733' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.830-wip.phase166.20260806003733') throw new Error('package identity rejected');" \
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.526' || 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.523-wip.phase166.20260806003733', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.830-wip.phase166.20260806003733', 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}" \
28
+ && node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.526', 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
@@ -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.523-wip.phase166.20260806003733` is
6
+ `@sellable/install@0.1.526` 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.523-wip.phase166.20260806003733 .
12
+ --tag sellable-agent-host:0.1.526 .
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`.
@@ -28,7 +28,7 @@ import {
28
28
 
29
29
  const MANIFEST_VERSION = "sellable-agent-external-runtime-closure/v1";
30
30
  const MCP_PACKAGE = "@sellable/mcp";
31
- const MCP_VERSION = "0.1.830-wip.phase166.20260806003733";
31
+ const MCP_VERSION = "0.1.760-wip.phase143.20260727100513";
32
32
  const SAFE_COMPONENT = /^[A-Za-z0-9@._+-]+$/;
33
33
  const HERMES_EXCLUDES = new Set([".git", ".playwright", "node_modules"]);
34
34
 
@@ -1,21 +1,20 @@
1
- # syntax=docker/dockerfile:1.7
2
1
  ARG HERMES_IMAGE=nousresearch/hermes-agent@sha256:c0cab4e3711bcb27a312be1b3776254fc06fd50d5f7a6b8017915fc7171cb39e
3
2
  FROM ${HERMES_IMAGE}
4
3
 
5
4
  USER root
6
5
 
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.830-wip.phase166.20260806003733
8
- ARG MCP_INTEGRITY=sha512-F10IHQTvgRYPlbGRx8j3FRdUP4rR9cgrigN8bkjhB+6akE63iDXcCbYNmG7b2ShsPlMhxhgvXDa/A4//CoIRWQ==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.523-wip.phase166.20260806003733
6
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.811-wip.phase169.20260805145230
7
+ ARG MCP_INTEGRITY=sha512-ygNtAiYCdMM3dlTZHMiaAo5aasw4cuhphkxHSvHzF4T9FRFgR3BQodKCsqYz7EfN0nHrDUnsrzcjWedYFQUT0A==
8
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.526
10
9
  ARG TUS_JS_CLIENT_VERSION=4.3.1
11
10
  ARG HERMES_VERSION=0.20.0
11
+ ARG MCP_TRUST_ROOT_B64
12
12
  ARG TIRITH_VERSION=0.3.3
13
13
  ARG PLAYWRIGHT_VERSION=1.62.1
14
14
  ARG PLAYWRIGHT_BROWSER_REVISION=1234
15
15
  ARG TIRITH_ARCHIVE_SHA256=6cdbe35e8f9ccf42e70ad95b501c93cd218ac18201c3df958d54f6ba0d995ce2
16
16
 
17
- RUN --mount=type=secret,id=mcp_trust_root,required=true \
18
- test -s /run/secrets/mcp_trust_root \
17
+ RUN test -n "${MCP_TRUST_ROOT_B64}" \
19
18
  && mkdir -p /usr/local/lib/sellable-agent/external-runtime/mcp \
20
19
  /usr/local/share/sellable-agent \
21
20
  && test "$(npm view "${MCP_PACKAGE}" dist.integrity)" = "${MCP_INTEGRITY}" \
@@ -29,8 +28,9 @@ RUN --mount=type=secret,id=mcp_trust_root,required=true \
29
28
  && ln -s ../node_modules/.bin/sellable-mcp \
30
29
  /usr/local/lib/sellable-agent/external-runtime/mcp/bin/sellable-mcp \
31
30
  && test -x /usr/local/lib/sellable-agent/external-runtime/mcp/bin/sellable-mcp \
32
- && install -o root -g root -m 0444 /run/secrets/mcp_trust_root \
33
- /usr/local/share/sellable-agent/mcp-turn-trust-root.pem \
31
+ && printf '%s' "${MCP_TRUST_ROOT_B64}" | base64 -d \
32
+ > /usr/local/share/sellable-agent/mcp-turn-trust-root.pem \
33
+ && chmod 0444 /usr/local/share/sellable-agent/mcp-turn-trust-root.pem \
34
34
  && npm install --prefix /usr/local/lib/sellable-agent/external-runtime/playwright \
35
35
  --omit=dev --ignore-scripts --no-audit --no-fund "playwright@${PLAYWRIGHT_VERSION}" \
36
36
  && ln -s /usr/local/lib/sellable-agent/external-runtime/playwright/node_modules/.bin/playwright \
@@ -63,18 +63,14 @@ COPY mcp-context-proxy.mjs fly-customer-model.mjs fly-customer-worker.mjs profil
63
63
  /usr/local/lib/sellable-agent/
64
64
  COPY hermes-memory-dirty.mjs /opt/sellable/bin/hermes-memory-dirty
65
65
  COPY hermes-memory-reconcile.sh /opt/sellable/share/hermes-memory-reconcile.sh
66
- COPY fly-customer-image/model-auth-store.mjs /usr/local/lib/sellable-agent/fly-customer-image/model-auth-store.mjs
67
- COPY fly-customer-image/hermes-runs-client.mjs /usr/local/lib/sellable-agent/fly-customer-image/hermes-runs-client.mjs
68
- COPY fly-customer-image/endpoint-uat-completion-gate.mjs /usr/local/lib/sellable-agent/fly-customer-image/endpoint-uat-completion-gate.mjs
69
66
  COPY fly-customer-image/customer-runtime.mjs /usr/local/lib/sellable-agent/fly-customer-image/customer-runtime.mjs
67
+ COPY fly-customer-image/model-auth-store.mjs /usr/local/lib/sellable-agent/fly-customer-image/model-auth-store.mjs
70
68
  COPY fly-customer-image/rootfs/ /
71
69
 
72
70
  RUN node --input-type=module -e \
73
71
  '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 });' \
74
72
  && node --input-type=module -e \
75
73
  'await import("/usr/local/lib/sellable-agent/fly-runtime-identity.mjs");' \
76
- && node --input-type=module -e \
77
- 'await import("/usr/local/lib/sellable-agent/fly-customer-image/customer-runtime.mjs");' \
78
74
  && printf '%s\n' \
79
75
  '#!/usr/bin/env node' \
80
76
  'import("file:///usr/local/lib/sellable-agent/fly-soul-bridge.mjs").then(({ runSoulBridgeCli }) => runSoulBridgeCli());' \
@@ -97,7 +93,6 @@ RUN node --input-type=module -e \
97
93
 
98
94
  LABEL io.sellable.runtime.kind="customer" \
99
95
  io.sellable.runtime.listener="native-dedicated-slack" \
100
- io.sellable.runtime.api-server="authenticated-loopback-127.0.0.1:8642" \
101
96
  io.sellable.runtime.installers="build-only"
102
97
 
103
98
  ENV HOME=/opt/data \