@sellable/install 0.1.416 → 0.1.417

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.416
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.417
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.644
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-Q2+bBeQCKy/tZ9hMslOZ1Tw/kTLKBjiv77zQqX38IFrNevLiOhRG4rsxvVPqfHkOIIOSKFl/ECTgFD0pcmhAXg==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.416" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.417" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.644" \
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.416" \
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.416' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.644') 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.417' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.644') 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.416', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.644', 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.417', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.644', 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.416` is
6
+ `@sellable/install@0.1.417` 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.416 .
12
+ --tag sellable-agent-host:0.1.417 .
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`.
@@ -5,7 +5,7 @@ USER root
5
5
 
6
6
  ARG MCP_PACKAGE=@sellable/mcp@0.1.754
7
7
  ARG MCP_INTEGRITY=sha512-eCCEZdwjTdd6EHxsuIL2ELf/cu2RJvNM77/8Y78hdvrsVww0BfhhxPPf+dcGcd07lPrDYr7AXEcEDoyEGlA1ag==
8
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.416
8
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.417
9
9
  ARG HERMES_VERSION=0.19.0
10
10
  ARG MCP_TRUST_ROOT_B64
11
11
  ARG TIRITH_VERSION=0.3.3
@@ -62,7 +62,7 @@ const RUNTIME_GENERATION = Number(
62
62
  const BOOT_SESSION_ID = randomUUID();
63
63
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.19.0";
64
64
  const INSTALLER_PACKAGE =
65
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.416";
65
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.417";
66
66
  const MCP_PACKAGE =
67
67
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.754";
68
68
 
@@ -388,6 +388,14 @@ function writeRuntimeHermesConfig({
388
388
  const sellable = baseConfig.mcp_servers?.sellable;
389
389
  if (!sellable?.env) throw new Error("customer_mcp_config_rejected");
390
390
  atomicFile(join(runtimeConfigRoot, "SOUL.md"), desired.soul, 0o444);
391
+ // Hermes reads the identity slot from HERMES_HOME, not from the profile:
392
+ // prompt_builder.py does `soul_path = get_hermes_home() / "SOUL.md"` and
393
+ // notes it "is independent and always included when present". HERMES_HOME is
394
+ // DATA_ROOT, so without this the base image's own
395
+ // "You are Hermes Agent, ... created by Nous Research" SOUL.md is what gets
396
+ // injected and the profile copy is never read as identity. Write the same
397
+ // server-owned soul there so the customer agent is a Sellable agent.
398
+ atomicFile(join(DATA_ROOT, "SOUL.md"), desired.soul, 0o444);
391
399
  atomicFile(
392
400
  join(runtimeConfigRoot, "skills", "sellable", "SKILL.md"),
393
401
  desired.skill,
@@ -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.416";
42
+ "@sellable/install@0.1.417";
43
43
  const MCP_PACKAGE = "@sellable/mcp@0.1.644";
44
44
  const HERMES_VERSION = "0.18.0";
45
45
  const SHA256 = /^[a-f0-9]{64}$/;
@@ -1514,7 +1514,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
1514
1514
  pinned.hermesCli !== "hermes" ||
1515
1515
  pinned.hermesVersion !== "0.18.0" ||
1516
1516
  pinned.installerPackage !==
1517
- "@sellable/install@0.1.416" ||
1517
+ "@sellable/install@0.1.417" ||
1518
1518
  pinned.mcpPackage !== "@sellable/mcp@0.1.644" ||
1519
1519
  !Array.isArray(policy.toolInclude) ||
1520
1520
  policy.toolInclude.length === 0 ||
@@ -193,7 +193,7 @@ function validateDesired(desired) {
193
193
  desired.hermesCli !== "hermes" ||
194
194
  desired.hermesVersion !== "0.18.0" ||
195
195
  desired.installerPackage !==
196
- "@sellable/install@0.1.416" ||
196
+ "@sellable/install@0.1.417" ||
197
197
  desired.mcpPackage !== "@sellable/mcp@0.1.644" ||
198
198
  !Array.isArray(desired.toolInclude) ||
199
199
  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.416";
29
+ "@sellable/install@0.1.417";
30
30
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.644";
31
31
 
32
32
  export function deriveAgentProfileId(workspaceId, agentId, hostId) {
@@ -613,7 +613,7 @@ function inspectProvisionedProfile({
613
613
  manifest.serviceCredentialReference !== serviceCredentialReference ||
614
614
  manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
615
615
  manifest.installerVersion !==
616
- "0.1.416" ||
616
+ "0.1.417" ||
617
617
  manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
618
618
  manifest.credentialKeyVersion !== credentialKeyVersion ||
619
619
  !/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
@@ -827,7 +827,7 @@ function successReceipt({
827
827
  subject: `agent-profile:${observed.profileId}`,
828
828
  cli: {
829
829
  installPackage: PINNED_INSTALL_PACKAGE,
830
- installVersion: "0.1.416",
830
+ installVersion: "0.1.417",
831
831
  mcpPackage: PINNED_MCP_PACKAGE,
832
832
  command: "hermes profile bootstrap",
833
833
  },
@@ -875,7 +875,7 @@ function failure(code, stages, extra = {}, request = null) {
875
875
  : "agent-profile:unbound",
876
876
  cli: {
877
877
  installPackage: PINNED_INSTALL_PACKAGE,
878
- installVersion: "0.1.416",
878
+ installVersion: "0.1.417",
879
879
  mcpPackage: PINNED_MCP_PACKAGE,
880
880
  command: "hermes profile bootstrap",
881
881
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.416",
3
+ "version": "0.1.417",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {