@sellable/install 0.1.574 → 0.1.576

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.572-wip.hotfix-runtime-binding-contract.20260807222000
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.576
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-/mU9H3m5npHqz2oKINBw/NxNuQeDneE5qZeaVqFwqvKS8i3rf7xWc6jWMSdAI7anjm95TBBmgk1XKF0D8V2zVw==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.576" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000" \
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.572-wip.hotfix-runtime-
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.572-wip.hotfix-runtime-binding-contract.20260807222000' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.848-wip.phase166.anytool.20260807134000') 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.576' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.848-wip.phase166.anytool.20260807134000') 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.572-wip.hotfix-runtime-binding-contract.20260807222000', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000', 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.576', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000', 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.572-wip.hotfix-runtime-binding-contract.20260807222000` is
6
+ `@sellable/install@0.1.576` 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.572-wip.hotfix-runtime-binding-contract.20260807222000 .
12
+ --tag sellable-agent-host:0.1.576 .
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`.
@@ -4,9 +4,9 @@ FROM ${HERMES_IMAGE}
4
4
 
5
5
  USER root
6
6
 
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000
8
- ARG MCP_INTEGRITY=sha512-/mU9H3m5npHqz2oKINBw/NxNuQeDneE5qZeaVqFwqvKS8i3rf7xWc6jWMSdAI7anjm95TBBmgk1XKF0D8V2zVw==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.858
8
+ ARG MCP_INTEGRITY=sha512-8yiUhwMbBk/KxZAXGXTsEHiN8XeB/qCqNgfApew0rhViJqiLlDN8oS67pZW5iB5gdmeuv4du0jx9Lhq/blr9hQ==
9
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.576
10
10
  ARG TUS_JS_CLIENT_VERSION=4.3.1
11
11
  ARG HERMES_VERSION=0.20.0
12
12
  ARG TIRITH_VERSION=0.3.3
@@ -94,10 +94,10 @@ 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
96
  process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ??
97
- "@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000";
97
+ "@sellable/install@0.1.576";
98
98
  const MCP_PACKAGE =
99
99
  process.env.SELLABLE_AGENT_MCP_PACKAGE ??
100
- "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000";
100
+ "@sellable/mcp@0.1.858";
101
101
 
102
102
  const sha256 = (value) => createHash("sha256").update(value).digest("hex");
103
103
  const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
@@ -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.572-wip.hotfix-runtime-binding-contract.20260807222000";
42
+ "@sellable/install@0.1.576";
43
43
  const MCP_PACKAGE = "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000";
44
44
  const HERMES_VERSION = "0.18.0";
45
45
  const SHA256 = /^[a-f0-9]{64}$/;
@@ -1541,7 +1541,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
1541
1541
  pinned.hermesCli !== "hermes" ||
1542
1542
  pinned.hermesVersion !== "0.18.0" ||
1543
1543
  pinned.installerPackage !==
1544
- "@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000" ||
1544
+ "@sellable/install@0.1.576" ||
1545
1545
  pinned.mcpPackage !==
1546
1546
  "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000" ||
1547
1547
  !Array.isArray(policy.toolInclude) ||
@@ -202,7 +202,7 @@ function validateDesired(desired) {
202
202
  desired.hermesCli !== "hermes" ||
203
203
  desired.hermesVersion !== "0.18.0" ||
204
204
  desired.installerPackage !==
205
- "@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000" ||
205
+ "@sellable/install@0.1.576" ||
206
206
  desired.mcpPackage !==
207
207
  "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000" ||
208
208
  !Array.isArray(desired.toolInclude) ||
@@ -26,7 +26,7 @@ import { deriveContainedProfileId } from "./profile-materializer.mjs";
26
26
 
27
27
  export const PROVISIONING_ACTION = "PROVISION_HERMES_PROFILE";
28
28
  export const PINNED_INSTALL_PACKAGE =
29
- "@sellable/install@0.1.572-wip.hotfix-runtime-binding-contract.20260807222000";
29
+ "@sellable/install@0.1.576";
30
30
  export const PINNED_MCP_PACKAGE =
31
31
  "@sellable/mcp@0.1.848-wip.phase166.anytool.20260807134000";
32
32
 
@@ -614,7 +614,7 @@ function inspectProvisionedProfile({
614
614
  manifest.serviceCredentialReference !== serviceCredentialReference ||
615
615
  manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
616
616
  manifest.installerVersion !==
617
- "0.1.572-wip.hotfix-runtime-binding-contract.20260807222000" ||
617
+ "0.1.576" ||
618
618
  manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
619
619
  manifest.credentialKeyVersion !== credentialKeyVersion ||
620
620
  !/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
@@ -828,7 +828,7 @@ function successReceipt({
828
828
  subject: `agent-profile:${observed.profileId}`,
829
829
  cli: {
830
830
  installPackage: PINNED_INSTALL_PACKAGE,
831
- installVersion: "0.1.572-wip.hotfix-runtime-binding-contract.20260807222000",
831
+ installVersion: "0.1.576",
832
832
  mcpPackage: PINNED_MCP_PACKAGE,
833
833
  command: "hermes profile bootstrap",
834
834
  },
@@ -876,7 +876,7 @@ function failure(code, stages, extra = {}, request = null) {
876
876
  : "agent-profile:unbound",
877
877
  cli: {
878
878
  installPackage: PINNED_INSTALL_PACKAGE,
879
- installVersion: "0.1.572-wip.hotfix-runtime-binding-contract.20260807222000",
879
+ installVersion: "0.1.576",
880
880
  mcpPackage: PINNED_MCP_PACKAGE,
881
881
  command: "hermes profile bootstrap",
882
882
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.574",
3
+ "version": "0.1.576",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {
@@ -623,8 +623,11 @@ those terminal results, report **every** entry in `terminalEvidence.rows`, one
623
623
  per scoped sender/date/lane—not only the headline deferral or blocker. Include
624
624
  `targetSlots`, `takenSlots`, `remainingTargetGap`, `fillableSlotsNow`,
625
625
  `blockedGap`, `terminalClassification`, `reasonCodes`, `approvedDelta`, and
626
- `scheduledDelta`. A cumulative observation or one surfaced blocker is never a
627
- row-complete terminal summary.
626
+ `scheduledDelta`. When `reasonCodes` contains
627
+ `paid_inmail_credit_refresh_failed`, also report `paidCreditRefreshAttempt`
628
+ exactly: `attemptedAt`, `outcome`, `errorClass`, `errorDetail`, and `durationMs`.
629
+ A cumulative observation, vague "credit refresh" label, or one surfaced blocker
630
+ is never a row-complete terminal summary.
628
631
 
629
632
  Lead every row-complete terminal summary by stating that all scoped
630
633
  sender/date/lane rows were explored. Never say the workspace "stopped on" one