@sellable/install 0.1.765 → 0.1.767

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.765
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.767
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.941
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.765" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.767" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.941" \
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.765" \
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.765' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.941') 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.767' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.941') 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.765', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.941', 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.767', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.941', 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.765` is
6
+ `@sellable/install@0.1.767` is
7
7
  published:
8
8
 
9
9
  ```sh
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
8
8
 
9
9
  ARG MCP_PACKAGE=@sellable/mcp@0.1.941
10
10
  ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
11
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.765
11
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.767
12
12
  ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.202
13
13
  ARG ADMIN_MCP_INTEGRITY=sha512-ym3aye/0vQ8tfULJlKz9JFOxvIQsl1G+n3np+TTgK/tecwNblBo/j3AkTnRqH9iomKzPbZzP+n4tEQsvsU8ByA==
14
14
  ARG TUS_JS_CLIENT_VERSION=4.3.1
@@ -122,7 +122,7 @@ const RUNTIME_GENERATION = Number(
122
122
  const BOOT_SESSION_ID = randomUUID();
123
123
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.21.3";
124
124
  const INSTALLER_PACKAGE =
125
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.765";
125
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.767";
126
126
  const MCP_PACKAGE =
127
127
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.941";
128
128
  export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
@@ -751,6 +751,7 @@ def _sellable_agent_call_meta():
751
751
  "HERMES_SESSION_CHAT_ID",
752
752
  "HERMES_SESSION_USER_ID",
753
753
  "HERMES_SESSION_MESSAGE_ID",
754
+ "HERMES_CRON_SESSION",
754
755
  )
755
756
  if any(os.getenv(name) for name in legacy_names):
756
757
  raise RuntimeError("Sellable MCP identity must not come from process-global session variables")
@@ -760,6 +761,10 @@ def _sellable_agent_call_meta():
760
761
  if not session_id:
761
762
  raise RuntimeError("Sellable endpoint MCP calls require a bound Hermes session")
762
763
  return {"sellableEndpoint": {"sessionId": session_id}}
764
+ if not platform and get_session_env("HERMES_CRON_SESSION", "").strip() == "1":
765
+ # Native _CronRunScope clears human routing and sets this task-local flag
766
+ # (Phase207 ADMIN766 smoke). The API still enforces service/workspace gates.
767
+ return None
763
768
  if platform != "slack":
764
769
  descriptor_path = os.getenv("SELLABLE_AGENT_TURN_DESCRIPTOR_PATH", "")
765
770
  if descriptor_path.startswith("/"):
@@ -2468,7 +2473,7 @@ export const HERMES_AGENT_BRIDGE_DEDICATED_V020_CONTRACT = normalizeContract({
2468
2473
  sourceSha256:
2469
2474
  "8ce75e7f2d999edf6554a8f5a037289c885bc9427263da1cd6e3448e608fe20f",
2470
2475
  patchedSha256:
2471
- "2a32c22e499bdb16f31ddd77f143b8f4907df9f4972553b07129fc2a9607b174",
2476
+ "e4bf77633c8333d1f79310768c0824e8eaed87938ec7ffd2478050f12f5d36a6",
2472
2477
  },
2473
2478
  {
2474
2479
  path: "gateway/run.py",
@@ -2543,7 +2548,7 @@ export const HERMES_AGENT_BRIDGE_DEDICATED_V021_CONTRACT = normalizeContract({
2543
2548
  "path": "tools/mcp_tool_handlers.py",
2544
2549
  "patchKind": "mcp-tool-endpoint-v021",
2545
2550
  "sourceSha256": "e6af250f0fbfeb12a936c340a46f40f8d40332ed8bbc4eb63fded66e37aaa7bf",
2546
- "patchedSha256": "2dae40d821eb6b8986251d10161dbcc9de009628041f282cc6fc2b4d0787a765"
2551
+ "patchedSha256": "6c4765aad3074b6f8ad6951299edafa36cf536c9a9f0b57a48bdd541e3209790"
2547
2552
  },
2548
2553
  {
2549
2554
  "path": "gateway/run.py",
@@ -2609,7 +2614,7 @@ export const HERMES_AGENT_BRIDGE_DEDICATED_V0213_CONTRACT = normalizeContract({
2609
2614
  "path": "tools/mcp_tool_handlers.py",
2610
2615
  "patchKind": "mcp-tool-endpoint-v021",
2611
2616
  "sourceSha256": "c4713aa289c7ca17b53c0ae53ceb6a276321f6d36e259084974e8b5738b6a4dd",
2612
- "patchedSha256": "c672577617f467ac3a2894b13e11d684c43ef929e102dfb9468a6c4f5b1f7b25"
2617
+ "patchedSha256": "1bd801ebf1c6e17a0d81899b2ee0401f038ae4d1a493552f021a1b66fccf0e98"
2613
2618
  },
2614
2619
  {
2615
2620
  "path": "gateway/run.py",
@@ -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.765";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.767";
42
42
  const MCP_PACKAGE = "@sellable/mcp@0.1.941";
43
43
  const HERMES_VERSION = "0.18.0";
44
44
  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.765" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.767" ||
1550
1550
  pinned.mcpPackage !== "@sellable/mcp@0.1.941" ||
1551
1551
  !Array.isArray(policy.toolInclude) ||
1552
1552
  policy.toolInclude.length === 0 ||
@@ -312,7 +312,7 @@ function validateDesired(desired) {
312
312
  desired.serviceCredentialGeneration < 1 ||
313
313
  desired.hermesCli !== "hermes" ||
314
314
  desired.hermesVersion !== "0.18.0" ||
315
- desired.installerPackage !== "@sellable/install@0.1.765" ||
315
+ desired.installerPackage !== "@sellable/install@0.1.767" ||
316
316
  desired.mcpPackage !== "@sellable/mcp@0.1.941" ||
317
317
  !Array.isArray(desired.toolInclude) ||
318
318
  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.765";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.767";
29
29
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.941";
30
30
  const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
31
31
  PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.765",
3
+ "version": "0.1.767",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {