@sellable/install 0.1.690 → 0.1.692

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.690
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.692
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.901
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-0YBT2d3YBgZFSgEcmoDCNLz/PWMiBbqMWeZoEFArWuk63/vrYATEp/qBNzYhpy7SKClLapsb1RRagdXrvo/p9g==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.690" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.692" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.901" \
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.690" \
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.690' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.901') 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.692' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.901') 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.690', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.901', 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.692', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.901', 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,7 +3,7 @@
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.690` is
6
+ `@sellable/install@0.1.692` is
7
7
  published:
8
8
 
9
9
  ```sh
@@ -107,6 +107,7 @@ import {
107
107
  reconcileHermesModelAuth,
108
108
  } from "../model-auth-reconciler.mjs";
109
109
  import { createModelHealthReporter } from "../model-health-reporter.mjs";
110
+ import { createMcpAdminRuntimeBindingV3 } from "../mcp-runtime-binding.mjs";
110
111
  import { createAdminRuntimePhaseTelemetry } from "./admin-runtime-phase-telemetry.mjs";
111
112
  import {
112
113
  completeAdminStateReceiptRecovery,
@@ -784,6 +785,28 @@ function profilePackageReceipt(
784
785
  };
785
786
  }
786
787
 
788
+ function installAdminMcpRuntimeBinding(
789
+ profileRoot,
790
+ profileId,
791
+ agentServiceEnv
792
+ ) {
793
+ const serviceCredentialGeneration = Number(
794
+ agentServiceEnv.SELLABLE_AGENT_CREDENTIAL_GENERATION
795
+ );
796
+ const binding = createMcpAdminRuntimeBindingV3({
797
+ workspaceId: agentServiceEnv.SELLABLE_AGENT_WORKSPACE_ID,
798
+ agentId: agentServiceEnv.SELLABLE_AGENT_ID,
799
+ runtimeId: RUNTIME_ID,
800
+ profileId,
801
+ serviceCredentialGeneration,
802
+ runtimeGeneration: RUNTIME_GENERATION,
803
+ });
804
+ atomicPrivateFile(
805
+ join(profileRoot, "sellable", "runtime-binding.json"),
806
+ `${JSON.stringify(binding, null, 2)}\n`
807
+ );
808
+ }
809
+
787
810
  function installAdminModelConfig(profileRoot, modelConfig) {
788
811
  const path = join(profileRoot, "config.yaml");
789
812
  const stat = lstatSync(path);
@@ -1180,6 +1203,7 @@ async function materializeAdminProfile({
1180
1203
  installAdminModelConfig(stageRoot, modelConfig);
1181
1204
  installAdminHermesMemoryHook(stageRoot);
1182
1205
  stageAdminRuntimeTree(stageRoot);
1206
+ installAdminMcpRuntimeBinding(stageRoot, profile, agentServiceEnv);
1183
1207
  return stage;
1184
1208
  });
1185
1209
 
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
8
8
 
9
9
  ARG MCP_PACKAGE=@sellable/mcp@0.1.901
10
10
  ARG MCP_INTEGRITY=sha512-0YBT2d3YBgZFSgEcmoDCNLz/PWMiBbqMWeZoEFArWuk63/vrYATEp/qBNzYhpy7SKClLapsb1RRagdXrvo/p9g==
11
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.690
11
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.692
12
12
  ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
13
13
  ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
14
14
  ARG TUS_JS_CLIENT_VERSION=4.3.1
@@ -105,7 +105,7 @@ const RUNTIME_GENERATION = Number(
105
105
  const BOOT_SESSION_ID = randomUUID();
106
106
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.4";
107
107
  const INSTALLER_PACKAGE =
108
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.690";
108
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.692";
109
109
  const MCP_PACKAGE =
110
110
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.901";
111
111
  const DEFAULT_PROFILE_BUNDLE_ROOT =
@@ -123,6 +123,36 @@ const DEFAULT_PROFILE_CRON_PYTHON = [
123
123
  const sha256 = (value) => createHash("sha256").update(value).digest("hex");
124
124
  const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
125
125
 
126
+ function canonicalizeEndpointJson(value) {
127
+ if (
128
+ value === null ||
129
+ typeof value === "string" ||
130
+ typeof value === "boolean"
131
+ ) {
132
+ return value;
133
+ }
134
+ if (typeof value === "number") {
135
+ if (!Number.isFinite(value)) {
136
+ throw new Error("customer_endpoint_completion_output_rejected");
137
+ }
138
+ return value;
139
+ }
140
+ if (Array.isArray(value)) return value.map(canonicalizeEndpointJson);
141
+ if (value && typeof value === "object") {
142
+ return Object.fromEntries(
143
+ Object.entries(value)
144
+ .filter(([, item]) => item !== undefined)
145
+ .sort(([left], [right]) => left.localeCompare(right))
146
+ .map(([key, item]) => [key, canonicalizeEndpointJson(item)])
147
+ );
148
+ }
149
+ throw new Error("customer_endpoint_completion_output_rejected");
150
+ }
151
+
152
+ export function endpointCanonicalOutputDigest(output) {
153
+ return sha256(JSON.stringify(canonicalizeEndpointJson(output)));
154
+ }
155
+
126
156
  function customerDefaultProfileCronAdapter(profileId, profileRoot) {
127
157
  const mutate = async ({ desired, spec, existing }) => {
128
158
  const child = await run(
@@ -945,8 +975,13 @@ function endpointCompletionBody({
945
975
  hasEffectIntent = false,
946
976
  now,
947
977
  }) {
978
+ // The control plane verifies semanticRequestHash(canonicalOutput). Hermes
979
+ // preserves model key insertion order, so hashing the raw object caused a
980
+ // valid structured completion (production run 1e501766-120c-4ada-af07-01357aef516d)
981
+ // to be retried as UNCERTAIN. Keep this serializer byte-equivalent to the
982
+ // server's recursively key-sorted JSON contract.
948
983
  const canonicalOutputDigest =
949
- output === null ? null : sha256(JSON.stringify(output));
984
+ output === null ? null : endpointCanonicalOutputDigest(output);
950
985
  return {
951
986
  ...identity,
952
987
  schemaVersion: "sellable-agent-endpoint-complete/v1",
@@ -67,12 +67,26 @@ function exactObject(value) {
67
67
  return Boolean(value) && typeof value === "object" && !Array.isArray(value);
68
68
  }
69
69
 
70
- function safeTimestamp(value) {
71
- return (
70
+ function normalizedTimestamp(value) {
71
+ if (
72
72
  typeof value === "string" &&
73
73
  value.length <= 64 &&
74
74
  Number.isFinite(Date.parse(value))
75
- );
75
+ ) {
76
+ return value;
77
+ }
78
+ // Hermes 0.20.4's live /v1/runs implementation emits time.time() seconds,
79
+ // even though the captured fixture examples use ISO strings. Normalize that
80
+ // observed wire shape so known tool events do not collapse to UNKNOWN.
81
+ if (
82
+ typeof value === "number" &&
83
+ Number.isFinite(value) &&
84
+ value >= 946_684_800 &&
85
+ value <= 4_102_444_800
86
+ ) {
87
+ return new Date(value * 1_000).toISOString();
88
+ }
89
+ return null;
76
90
  }
77
91
 
78
92
  function evidence(code, value, extra = {}) {
@@ -325,13 +339,14 @@ export function sanitizeHermesRunEvent(value, options = {}) {
325
339
  if (bytes(encoded) > MAX_EVENT_BYTES || !exactObject(value)) {
326
340
  return evidence("NATIVE_EVENT_UNKNOWN", value, { ordinal });
327
341
  }
342
+ const timestamp = normalizedTimestamp(value.timestamp);
328
343
  const required = KNOWN_EVENT_KEYS[value.event];
329
344
  if (
330
345
  !required ||
331
346
  required.some((key) => !(key in value)) ||
332
347
  value.run_id !== expectedRunId ||
333
348
  !RUN_ID.test(value.run_id ?? "") ||
334
- !safeTimestamp(value.timestamp)
349
+ !timestamp
335
350
  ) {
336
351
  return evidence("NATIVE_EVENT_UNKNOWN", value, { ordinal });
337
352
  }
@@ -339,7 +354,7 @@ export function sanitizeHermesRunEvent(value, options = {}) {
339
354
  ok: true,
340
355
  event: value.event,
341
356
  runId: expectedRunId,
342
- timestamp: value.timestamp,
357
+ timestamp,
343
358
  nativeEventIdentity: sha256(`${ordinal}\n${encoded}`),
344
359
  };
345
360
  if (value.event === "approval.request") {
@@ -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.690";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.692";
42
42
  const MCP_PACKAGE = "@sellable/mcp@0.1.901";
43
43
  const HERMES_VERSION = "0.18.0";
44
44
  const SHA256 = /^[a-f0-9]{64}$/;
@@ -1547,7 +1547,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
1547
1547
  pinned.hermesCli !== "hermes" ||
1548
1548
  pinned.hermesVersion !== "0.18.0" ||
1549
1549
  pinned.installerPackage !==
1550
- "@sellable/install@0.1.690" ||
1550
+ "@sellable/install@0.1.692" ||
1551
1551
  pinned.mcpPackage !== "@sellable/mcp@0.1.901" ||
1552
1552
  !Array.isArray(policy.toolInclude) ||
1553
1553
  policy.toolInclude.length === 0 ||
@@ -20,6 +20,17 @@ const RUNTIME_BINDING_V1_KEYS = Object.freeze([
20
20
  "memberAllowlist",
21
21
  ]);
22
22
 
23
+ export const ADMIN_RUNTIME_BINDING_V3_KEYS = Object.freeze([
24
+ "schemaVersion",
25
+ "runtimeMode",
26
+ "workspaceId",
27
+ "agentId",
28
+ "runtimeId",
29
+ "profileId",
30
+ "serviceCredentialGeneration",
31
+ "runtimeGeneration",
32
+ ]);
33
+
23
34
  export const RUNTIME_BINDING_V2_KEYS = Object.freeze([
24
35
  "schemaVersion",
25
36
  "runtimeMode",
@@ -87,6 +98,28 @@ function validScope(values, { allowEmpty = false } = {}) {
87
98
  }
88
99
 
89
100
  export function validateMcpRuntimeBinding(binding) {
101
+ if (
102
+ exactKeys(binding, ADMIN_RUNTIME_BINDING_V3_KEYS) &&
103
+ binding.schemaVersion === "sellable-agent-mcp-runtime-binding/v3"
104
+ ) {
105
+ for (const key of [
106
+ "workspaceId",
107
+ "agentId",
108
+ "runtimeId",
109
+ "profileId",
110
+ ]) {
111
+ if (typeof binding[key] !== "string" || !SAFE_ID.test(binding[key])) {
112
+ return false;
113
+ }
114
+ }
115
+ return Boolean(
116
+ binding.runtimeMode === "native_admin" &&
117
+ Number.isSafeInteger(binding.serviceCredentialGeneration) &&
118
+ binding.serviceCredentialGeneration > 0 &&
119
+ Number.isSafeInteger(binding.runtimeGeneration) &&
120
+ binding.runtimeGeneration > 0
121
+ );
122
+ }
90
123
  if (
91
124
  exactKeys(binding, RUNTIME_BINDING_V2_KEYS) &&
92
125
  binding.schemaVersion === "sellable-agent-mcp-runtime-binding/v2"
@@ -152,6 +185,23 @@ export function validateMcpRuntimeBinding(binding) {
152
185
  );
153
186
  }
154
187
 
188
+ export function createMcpAdminRuntimeBindingV3(input) {
189
+ const binding = {
190
+ schemaVersion: "sellable-agent-mcp-runtime-binding/v3",
191
+ runtimeMode: "native_admin",
192
+ workspaceId: input.workspaceId,
193
+ agentId: input.agentId,
194
+ runtimeId: input.runtimeId,
195
+ profileId: input.profileId,
196
+ serviceCredentialGeneration: input.serviceCredentialGeneration,
197
+ runtimeGeneration: input.runtimeGeneration,
198
+ };
199
+ if (!validateMcpRuntimeBinding(binding)) {
200
+ throw new Error("mcp_admin_runtime_binding_v3_invalid");
201
+ }
202
+ return binding;
203
+ }
204
+
155
205
  export function createMcpRuntimeBindingV2(desired) {
156
206
  const binding = {
157
207
  schemaVersion: "sellable-agent-mcp-runtime-binding/v2",
@@ -283,7 +283,7 @@ function validateDesired(desired) {
283
283
  desired.hermesCli !== "hermes" ||
284
284
  desired.hermesVersion !== "0.18.0" ||
285
285
  desired.installerPackage !==
286
- "@sellable/install@0.1.690" ||
286
+ "@sellable/install@0.1.692" ||
287
287
  desired.mcpPackage !== "@sellable/mcp@0.1.901" ||
288
288
  !Array.isArray(desired.toolInclude) ||
289
289
  desired.toolInclude.length === 0 ||
@@ -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.690";
29
+ "@sellable/install@0.1.692";
30
30
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.901";
31
31
  const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
32
32
  PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.690",
3
+ "version": "0.1.692",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {