@sellable/install 0.1.694 → 0.1.696-wip-reply-agent-context.1

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.694
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.902
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.695
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.903
8
8
  ARG INSTALLER_INTEGRITY
9
- ARG MCP_INTEGRITY=sha512-ZReAqnMFAqHaZh06k+MnBd9MQVi1b/AUorCUlN+LIJ8U8JUS5z4ELC62EainL6qxjKXVAcToYpFRlzgK/dOIHg==
9
+ ARG MCP_INTEGRITY=sha512-p4VjLfaV8BE1e0nwft1cdLbGz9qanltAooKh5SPczoNrgv07ZdOyh3LCWSFTycCHwD7ivnzcu9RoaPsLTJR6WQ==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.694" \
12
- && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.902" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.695" \
12
+ && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.903" \
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.694" \
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.694' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.902') 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.695' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.903') 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.694', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.902', 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.695', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.903', 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.694` is
6
+ `@sellable/install@0.1.695` is
7
7
  published:
8
8
 
9
9
  ```sh
@@ -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.902";
31
+ const MCP_VERSION = "0.1.903";
32
32
  const SAFE_COMPONENT = /^[A-Za-z0-9@._+-]+$/;
33
33
  const HERMES_EXCLUDES = new Set([".git", ".playwright", "node_modules"]);
34
34
 
@@ -6,9 +6,9 @@ USER root
6
6
 
7
7
  ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
8
8
 
9
- ARG MCP_PACKAGE=@sellable/mcp@0.1.902
10
- ARG MCP_INTEGRITY=sha512-ZReAqnMFAqHaZh06k+MnBd9MQVi1b/AUorCUlN+LIJ8U8JUS5z4ELC62EainL6qxjKXVAcToYpFRlzgK/dOIHg==
11
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.694
9
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.903
10
+ ARG MCP_INTEGRITY=sha512-p4VjLfaV8BE1e0nwft1cdLbGz9qanltAooKh5SPczoNrgv07ZdOyh3LCWSFTycCHwD7ivnzcu9RoaPsLTJR6WQ==
11
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.695
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,9 +105,9 @@ 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.694";
108
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.695";
109
109
  const MCP_PACKAGE =
110
- process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.902";
110
+ process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.903";
111
111
  const DEFAULT_PROFILE_BUNDLE_ROOT =
112
112
  "/usr/local/share/sellable-agent/default-profile-bundle";
113
113
  const DEFAULT_PROFILE_CRON_PYTHON = [
@@ -38,8 +38,8 @@ 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.694";
42
- const MCP_PACKAGE = "@sellable/mcp@0.1.902";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.695";
42
+ const MCP_PACKAGE = "@sellable/mcp@0.1.903";
43
43
  const HERMES_VERSION = "0.18.0";
44
44
  const SHA256 = /^[a-f0-9]{64}$/;
45
45
  const SHA256_16 = /^[a-f0-9]{16}$/;
@@ -1547,8 +1547,8 @@ 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.694" ||
1551
- pinned.mcpPackage !== "@sellable/mcp@0.1.902" ||
1550
+ "@sellable/install@0.1.695" ||
1551
+ pinned.mcpPackage !== "@sellable/mcp@0.1.903" ||
1552
1552
  !Array.isArray(policy.toolInclude) ||
1553
1553
  policy.toolInclude.length === 0 ||
1554
1554
  !Number.isSafeInteger(slack.generation) ||
@@ -651,6 +651,10 @@ export function mcpEndpointSessionActivated(session) {
651
651
  return endpointSessions.get(session)?.activated === true;
652
652
  }
653
653
 
654
+ function endpointSessionBody(session) {
655
+ return endpointSessions.get(session)?.body ?? null;
656
+ }
657
+
654
658
  function endpointSessionBodyMatches(left, right) {
655
659
  return ENDPOINT_EXPECTED_KEYS.every(
656
660
  (key) => stableJson(left[key]) === stableJson(right[key])
@@ -943,6 +947,22 @@ function isHermesSlackToolCall(request) {
943
947
  );
944
948
  }
945
949
 
950
+ function endpointHermesSessionId(body) {
951
+ if (body?.schemaVersion !== "sellable-agent-mcp-endpoint-run/v1") return null;
952
+ return `sellable_endpoint_${sha256(
953
+ `${body.conversationId}:${body.runId}:${body.attemptId}`
954
+ ).slice(0, 32)}`;
955
+ }
956
+
957
+ function isExactEndpointHermesSessionToolCall(request, body) {
958
+ if (!isHermesSlackToolCall(request)) return false;
959
+ const expectedSessionId = endpointHermesSessionId(body);
960
+ return Boolean(
961
+ expectedSessionId &&
962
+ request.params._meta.sellableAgent.sessionId === expectedSessionId
963
+ );
964
+ }
965
+
946
966
  function messageIdKey(id) {
947
967
  return id === undefined ? null : stableJson(id);
948
968
  }
@@ -1064,25 +1084,39 @@ export async function runMcpContextProxyStdio({
1064
1084
  for await (const line of inputLines) {
1065
1085
  const request = parseJsonRpcLine(line);
1066
1086
  if (!request) throw new Error("mcp_upstream_protocol_rejected");
1067
- // The patched Hermes bridge adds this exact request-scoped shape from its
1068
- // live Slack session ContextVar; the model controls only `arguments` and
1069
- // cannot author MCP `_meta`. Route that call directly even when this shared
1070
- // stdio transport previously served an endpoint run. The downstream
1071
- // credential boundary still verifies the Slack actor against the runtime's
1072
- // service principal and workspace identity. Endpoint calls carry no such
1073
- // metadata and remain descriptor-authorized below. Any metadata that does
1074
- // reach endpoint authorization is overwritten by the signed descriptor.
1075
- if (isHermesSlackToolCall(request)) {
1076
- await writeJsonLine(child.stdin, request);
1077
- continue;
1078
- }
1079
1087
  const candidate = existsSync(descriptorPath)
1080
1088
  ? descriptorCandidate(descriptorPath, descriptorRoot)
1081
1089
  : null;
1090
+ const activeBody = endpointSessionBody(endpointSession);
1091
+ const endpointBody =
1092
+ candidate?.body?.schemaVersion === "sellable-agent-mcp-endpoint-run/v1"
1093
+ ? candidate.body
1094
+ : activeBody?.schemaVersion === "sellable-agent-mcp-endpoint-run/v1"
1095
+ ? activeBody
1096
+ : null;
1082
1097
  const endpointMode = Boolean(
1083
- mcpEndpointSessionActivated(endpointSession) ||
1084
- candidate?.body?.schemaVersion === "sellable-agent-mcp-endpoint-run/v1"
1098
+ mcpEndpointSessionActivated(endpointSession) || endpointBody
1085
1099
  );
1100
+ // The patched Hermes bridge adds this exact request-scoped shape from its
1101
+ // live Slack session ContextVar; the model controls only `arguments` and
1102
+ // cannot author MCP `_meta`. Route genuine Slack calls directly even when
1103
+ // this shared stdio transport previously served an endpoint run. Hermes
1104
+ // also reuses its Slack-shaped ContextVar for endpoint calls, but gives
1105
+ // those calls the exact deterministic endpoint session id. Recover that
1106
+ // reserved shape through the signed endpoint authorization below so stale
1107
+ // Slack context cannot bypass the endpoint receipt path. Any unverified
1108
+ // descriptor can only select that fail-closed path; it is still validated
1109
+ // before its metadata reaches the downstream process.
1110
+ if (
1111
+ isHermesSlackToolCall(request) &&
1112
+ !(
1113
+ endpointMode &&
1114
+ isExactEndpointHermesSessionToolCall(request, endpointBody)
1115
+ )
1116
+ ) {
1117
+ await writeJsonLine(child.stdin, request);
1118
+ continue;
1119
+ }
1086
1120
  if (request.method === "tools/list" && endpointMode) {
1087
1121
  const expected = existsSync(descriptorPath)
1088
1122
  ? deriveExpectedMcpTurnBinding({
@@ -283,8 +283,8 @@ function validateDesired(desired) {
283
283
  desired.hermesCli !== "hermes" ||
284
284
  desired.hermesVersion !== "0.18.0" ||
285
285
  desired.installerPackage !==
286
- "@sellable/install@0.1.694" ||
287
- desired.mcpPackage !== "@sellable/mcp@0.1.902" ||
286
+ "@sellable/install@0.1.695" ||
287
+ desired.mcpPackage !== "@sellable/mcp@0.1.903" ||
288
288
  !Array.isArray(desired.toolInclude) ||
289
289
  desired.toolInclude.length === 0 ||
290
290
  desired.toolInclude.some((tool) => !/^[a-z][a-z0-9_]{0,127}$/.test(tool)) ||
@@ -26,8 +26,8 @@ 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.694";
30
- export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.902";
29
+ "@sellable/install@0.1.695";
30
+ export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.903";
31
31
  const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
32
32
  PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
33
33
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.694",
3
+ "version": "0.1.696-wip-reply-agent-context.1",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {