@sellable/install 0.1.586 → 0.1.588

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,12 +3,12 @@ FROM ${HERMES_IMAGE}
3
3
 
4
4
  USER root
5
5
 
6
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.586
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.588
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.860
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.586" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.588" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.860" \
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.586" \
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.586' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.860') 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.588' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.860') 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.586', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.860', 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.588', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.860', 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.586` is
6
+ `@sellable/install@0.1.588` 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.586 .
12
+ --tag sellable-agent-host:0.1.588 .
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`.
@@ -6,8 +6,9 @@ USER root
6
6
 
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.860
8
8
  ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.586
9
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.588
10
10
  ARG TUS_JS_CLIENT_VERSION=4.3.1
11
+ ARG YAML_VERSION=2.9.0
11
12
  ARG HERMES_VERSION=0.20.0
12
13
  ARG TIRITH_VERSION=0.3.3
13
14
  ARG PLAYWRIGHT_VERSION=1.62.1
@@ -23,8 +24,10 @@ RUN --mount=type=secret,id=mcp_trust_root,required=true \
23
24
  --omit=dev --ignore-scripts --no-audit --no-fund "${MCP_PACKAGE}" \
24
25
  && test "$(node -p "require('/usr/local/lib/sellable-agent/external-runtime/mcp/node_modules/@sellable/mcp/package.json').version")" = "${MCP_PACKAGE##*@}" \
25
26
  && npm install --prefix /usr/local/lib/sellable-agent \
26
- --omit=dev --ignore-scripts --no-audit --no-fund "tus-js-client@${TUS_JS_CLIENT_VERSION}" \
27
+ --omit=dev --ignore-scripts --no-audit --no-fund \
28
+ "tus-js-client@${TUS_JS_CLIENT_VERSION}" "yaml@${YAML_VERSION}" \
27
29
  && test "$(node -p "require('/usr/local/lib/sellable-agent/node_modules/tus-js-client/package.json').version")" = "${TUS_JS_CLIENT_VERSION}" \
30
+ && test "$(node -p "require('/usr/local/lib/sellable-agent/node_modules/yaml/package.json').version")" = "${YAML_VERSION}" \
28
31
  && mkdir -p /usr/local/lib/sellable-agent/external-runtime/mcp/bin \
29
32
  && ln -s ../node_modules/.bin/sellable-mcp \
30
33
  /usr/local/lib/sellable-agent/external-runtime/mcp/bin/sellable-mcp \
@@ -93,7 +93,7 @@ const RUNTIME_GENERATION = Number(
93
93
  const BOOT_SESSION_ID = randomUUID();
94
94
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
95
95
  const INSTALLER_PACKAGE =
96
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.586";
96
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.588";
97
97
  const MCP_PACKAGE =
98
98
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.860";
99
99
 
@@ -238,15 +238,23 @@ function inspectGatewayPid(
238
238
  if (["ENOENT", "ESRCH", "EACCES"].includes(error?.code)) return null;
239
239
  throw error;
240
240
  }
241
+ const gatewayRunIndex = argv.findIndex(
242
+ (entry, index) => entry === "gateway" && argv[index + 1] === "run"
243
+ );
241
244
  const looksLikeGateway =
242
- argv.includes(pinnedHermesLauncher) &&
243
- argv.at(-2) === "gateway" &&
244
- argv.at(-1) === "run";
245
+ argv.includes(pinnedHermesLauncher) && gatewayRunIndex >= 0;
245
246
  if (!looksLikeGateway) return null;
246
- const profileId = argv.at(-3);
247
- const prefix = argv.slice(0, -4);
247
+ // Customer and Admin lifecycle refreshes intentionally launch Hermes with
248
+ // `--replace` so one same-profile singleton can atomically supersede a
249
+ // stale process. Accept that one exact optional suffix while retaining the
250
+ // closed argv shape for every other gateway process.
251
+ const replaceOffset = argv.at(-1) === "--replace" ? 1 : 0;
252
+ const profileId = argv.at(-3 - replaceOffset);
253
+ const prefix = argv.slice(0, -4 - replaceOffset);
248
254
  if (
249
- argv.at(-4) !== "--profile" ||
255
+ argv.at(-4 - replaceOffset) !== "--profile" ||
256
+ argv.at(-2 - replaceOffset) !== "gateway" ||
257
+ argv.at(-1 - replaceOffset) !== "run" ||
250
258
  !PROFILE_ID.test(profileId ?? "") ||
251
259
  prefix.length !== 2 ||
252
260
  prefix[1] !== pinnedHermesLauncher
@@ -39,7 +39,7 @@ 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
41
  const INSTALLER_PACKAGE =
42
- "@sellable/install@0.1.586";
42
+ "@sellable/install@0.1.588";
43
43
  const MCP_PACKAGE = "@sellable/mcp@0.1.860";
44
44
  const HERMES_VERSION = "0.18.0";
45
45
  const SHA256 = /^[a-f0-9]{64}$/;
@@ -1546,7 +1546,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
1546
1546
  ]) ||
1547
1547
  pinned.hermesCli !== "hermes" ||
1548
1548
  pinned.hermesVersion !== "0.18.0" ||
1549
- pinned.installerPackage !== "@sellable/install@0.1.586" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.588" ||
1550
1550
  pinned.mcpPackage !== "@sellable/mcp@0.1.860" ||
1551
1551
  !Array.isArray(policy.toolInclude) ||
1552
1552
  policy.toolInclude.length === 0 ||
@@ -202,7 +202,7 @@ function validateDesired(desired) {
202
202
  desired.serviceCredentialGeneration < 1 ||
203
203
  desired.hermesCli !== "hermes" ||
204
204
  desired.hermesVersion !== "0.18.0" ||
205
- desired.installerPackage !== "@sellable/install@0.1.586" ||
205
+ desired.installerPackage !== "@sellable/install@0.1.588" ||
206
206
  desired.mcpPackage !== "@sellable/mcp@0.1.860" ||
207
207
  !Array.isArray(desired.toolInclude) ||
208
208
  desired.toolInclude.length === 0 ||
@@ -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.586";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.588";
29
29
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.860";
30
30
 
31
31
  export function deriveAgentProfileId(workspaceId, agentId, hostId) {
@@ -611,7 +611,7 @@ function inspectProvisionedProfile({
611
611
  !matchesReadback(manifest, request) ||
612
612
  manifest.serviceCredentialReference !== serviceCredentialReference ||
613
613
  manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
614
- manifest.installerVersion !== "0.1.586" ||
614
+ manifest.installerVersion !== "0.1.588" ||
615
615
  manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
616
616
  manifest.credentialKeyVersion !== credentialKeyVersion ||
617
617
  !/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
@@ -825,7 +825,7 @@ function successReceipt({
825
825
  subject: `agent-profile:${observed.profileId}`,
826
826
  cli: {
827
827
  installPackage: PINNED_INSTALL_PACKAGE,
828
- installVersion: "0.1.586",
828
+ installVersion: "0.1.588",
829
829
  mcpPackage: PINNED_MCP_PACKAGE,
830
830
  command: "hermes profile bootstrap",
831
831
  },
@@ -873,7 +873,7 @@ function failure(code, stages, extra = {}, request = null) {
873
873
  : "agent-profile:unbound",
874
874
  cli: {
875
875
  installPackage: PINNED_INSTALL_PACKAGE,
876
- installVersion: "0.1.586",
876
+ installVersion: "0.1.588",
877
877
  mcpPackage: PINNED_MCP_PACKAGE,
878
878
  command: "hermes profile bootstrap",
879
879
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.586",
3
+ "version": "0.1.588",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {