@sellable/install 0.1.612 → 0.1.613-wip.phase187.20260812.2

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.612
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.613-wip.phase187.20260812.2
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.867
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-8acJ5MfqgXiu9ylK65LlQ7LUBN5GN5fEXOwDTArxYAN7nBvVLhdz0nTGMERc6qCFNBbILTKvo4IErJOnAcJTDA==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.612" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.613-wip.phase187.20260812.2" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.867" \
13
13
  && test -n "${INSTALLER_INTEGRITY}" \
14
14
  && test "$(npm view "${INSTALLER_PACKAGE}" dist.integrity)" = "${INSTALLER_INTEGRITY}" \
@@ -25,7 +25,7 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.612" \
25
25
  && npm install --prefix /opt/sellable-agent/mcp-root --omit=dev --ignore-scripts --no-audit --no-fund "${MCP_PACKAGE}" \
26
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.609-wip.hermes-desktop.20260811160530' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.867') 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.612', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.867', 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.613-wip.phase187.20260812.2', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.867', 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.612` is
6
+ `@sellable/install@0.1.613-wip.phase187.20260812.2` is
7
7
  published:
8
8
 
9
9
  ```sh
@@ -15,6 +15,7 @@ import {
15
15
  existsSync,
16
16
  lstatSync,
17
17
  mkdirSync,
18
+ mkdtempSync,
18
19
  openSync,
19
20
  readFileSync,
20
21
  readdirSync,
@@ -611,6 +612,24 @@ function productMcpContextProxyEnvironment(layout) {
611
612
  };
612
613
  }
613
614
 
615
+ // Inventory proof must exercise the real context proxy, but it must not share
616
+ // the live gateway's turn descriptor. A live endpoint run intentionally
617
+ // projects `tools/list` to its signed allowlist; treating that narrow view as
618
+ // package drift makes profile materialization race with ordinary Hermes work.
619
+ // Give each proof an unguessable private, descriptor-free context root instead.
620
+ function productMcpInventoryProofEnvironment() {
621
+ const root = mkdtempSync(join(SECRET_ROOT, "mcp-inventory-proof-"));
622
+ privateDirectory(root);
623
+ privateDirectory(join(root, "consumed"));
624
+ return {
625
+ root,
626
+ env: {
627
+ SELLABLE_AGENT_TURN_DESCRIPTOR_PATH: join(root, "turn-context.json"),
628
+ SELLABLE_AGENT_TURN_CONSUMED_ROOT: join(root, "consumed"),
629
+ },
630
+ };
631
+ }
632
+
614
633
  function profilePackageReceipt(
615
634
  profileContract,
616
635
  alias,
@@ -916,20 +935,30 @@ async function materializeAdminProfile({
916
935
  verifyMcp: async ({ kind, profileRoot, config }) => {
917
936
  const alias = kind === "admin" ? "sellable-admin" : "sellable";
918
937
  const server = config.mcp_servers[alias];
919
- const proof = await inspectMcp({
920
- alias,
921
- command: server.command,
922
- args: server.args,
923
- env: {
924
- HOME: profileRoot,
925
- HERMES_HOME: profileRoot,
926
- ...adminToolEnv(layout),
927
- ...agentServiceEnv,
928
- SELLABLE_CONFIG_PATH: productConfigPath,
929
- ...(server.env ?? {}),
930
- },
931
- packageProof: profileContract.packages[alias].mcp,
932
- });
938
+ const inventoryProof =
939
+ alias === "sellable" ? productMcpInventoryProofEnvironment() : null;
940
+ let proof;
941
+ try {
942
+ proof = await inspectMcp({
943
+ alias,
944
+ command: server.command,
945
+ args: server.args,
946
+ env: {
947
+ HOME: profileRoot,
948
+ HERMES_HOME: profileRoot,
949
+ ...adminToolEnv(layout),
950
+ ...agentServiceEnv,
951
+ SELLABLE_CONFIG_PATH: productConfigPath,
952
+ ...(server.env ?? {}),
953
+ ...(inventoryProof?.env ?? {}),
954
+ },
955
+ packageProof: profileContract.packages[alias].mcp,
956
+ });
957
+ } finally {
958
+ if (inventoryProof) {
959
+ rmSync(inventoryProof.root, { recursive: true, force: true });
960
+ }
961
+ }
933
962
  if (
934
963
  JSON.stringify(proof.tools) !==
935
964
  JSON.stringify(profileContract.tools[alias])
@@ -2515,6 +2544,7 @@ export async function runAdminCanary() {
2515
2544
  })}\n`,
2516
2545
  "config-state.json": `${JSON.stringify({
2517
2546
  sellable: { workspaceIds: [], workspaceNames: {} },
2547
+ opportunitySequences: { notificationSlackUserId: "U00000000" },
2518
2548
  })}\n`,
2519
2549
  };
2520
2550
  for (const [name, value] of Object.entries(fixtureFiles)) {
@@ -2815,6 +2845,7 @@ export async function runAdminCanary() {
2815
2845
  profileFactory: "stageAdminProfile",
2816
2846
  profileDigest: profileContract.digest,
2817
2847
  servers: profile.servers,
2848
+ opportunitySequencesCron: profile.opportunitySequencesCron,
2818
2849
  workspaceAuthority: {
2819
2850
  agentKind: canaryClaim.agentKind,
2820
2851
  workspaceLockPresent:
@@ -6,7 +6,7 @@ USER root
6
6
 
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.867
8
8
  ARG MCP_INTEGRITY=sha512-8acJ5MfqgXiu9ylK65LlQ7LUBN5GN5fEXOwDTArxYAN7nBvVLhdz0nTGMERc6qCFNBbILTKvo4IErJOnAcJTDA==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.612
9
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.613-wip.phase187.20260812.2
10
10
  ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
11
11
  ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
12
12
  ARG TUS_JS_CLIENT_VERSION=4.3.1
@@ -96,7 +96,7 @@ const RUNTIME_GENERATION = Number(
96
96
  const BOOT_SESSION_ID = randomUUID();
97
97
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
98
98
  const INSTALLER_PACKAGE =
99
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.612";
99
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.613-wip.phase187.20260812.2";
100
100
  const MCP_PACKAGE =
101
101
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.867";
102
102
 
@@ -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.612";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.613-wip.phase187.20260812.2";
42
42
  const MCP_PACKAGE = "@sellable/mcp@0.1.867";
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.612" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.613-wip.phase187.20260812.2" ||
1550
1550
  pinned.mcpPackage !== "@sellable/mcp@0.1.867" ||
1551
1551
  !Array.isArray(policy.toolInclude) ||
1552
1552
  policy.toolInclude.length === 0 ||
@@ -278,7 +278,7 @@ function validateDesired(desired) {
278
278
  desired.serviceCredentialGeneration < 1 ||
279
279
  desired.hermesCli !== "hermes" ||
280
280
  desired.hermesVersion !== "0.18.0" ||
281
- desired.installerPackage !== "@sellable/install@0.1.612" ||
281
+ desired.installerPackage !== "@sellable/install@0.1.613-wip.phase187.20260812.2" ||
282
282
  desired.mcpPackage !== "@sellable/mcp@0.1.867" ||
283
283
  !Array.isArray(desired.toolInclude) ||
284
284
  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.612";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.613-wip.phase187.20260812.2";
29
29
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.867";
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.612",
3
+ "version": "0.1.613-wip.phase187.20260812.2",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {