@sellable/install 0.1.483 → 0.1.484

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.483
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.484
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.760-wip.phase143.20260727100513
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-muNXHuRnLTfsnW+MQUvK+p0VBZETDKeevr70iRliXyqE3/SLrZQJLL1laJzMo+qiUs9jMXMHdKOQfQqLiwJvtg==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.483" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.484" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.760-wip.phase143.20260727100513" \
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.483" \
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.483' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.760-wip.phase143.20260727100513') 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.484' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.760-wip.phase143.20260727100513') 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.483', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.760-wip.phase143.20260727100513', 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.484', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.760-wip.phase143.20260727100513', 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.483` is
6
+ `@sellable/install@0.1.484` 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.483 .
12
+ --tag sellable-agent-host:0.1.484 .
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.805
7
7
  ARG MCP_INTEGRITY=sha512-ULMGwWalb14SaMgxLeeiOWjavXpnONhdD8kAkvp7rJFdiL7s30VwXX+1j/aNwijiWXqqNQ1wcsXUPqk4eWpslg==
8
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.483
8
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.484
9
9
  ARG TUS_JS_CLIENT_VERSION=4.3.1
10
10
  ARG HERMES_VERSION=0.20.0
11
11
  ARG MCP_TRUST_ROOT_B64
@@ -61,6 +61,7 @@ COPY mcp-context-proxy.mjs fly-customer-model.mjs fly-customer-worker.mjs profil
61
61
  COPY hermes-memory-dirty.mjs /opt/sellable/bin/hermes-memory-dirty
62
62
  COPY hermes-memory-reconcile.sh /opt/sellable/share/hermes-memory-reconcile.sh
63
63
  COPY fly-customer-image/customer-runtime.mjs /usr/local/lib/sellable-agent/fly-customer-image/customer-runtime.mjs
64
+ COPY fly-customer-image/model-auth-store.mjs /usr/local/lib/sellable-agent/fly-customer-image/model-auth-store.mjs
64
65
  COPY fly-customer-image/rootfs/ /
65
66
 
66
67
  RUN node --input-type=module -e \
@@ -48,6 +48,7 @@ import {
48
48
  materializeNativeSlackCustomerProfile,
49
49
  validateNativeSlackCustomerProfile,
50
50
  } from "../profile-materializer.mjs";
51
+ import { reconcileHermesRootModelAuth } from "./model-auth-store.mjs";
51
52
 
52
53
  const DATA_ROOT = "/opt/data";
53
54
  const PROFILES_ROOT = join(DATA_ROOT, "profiles");
@@ -69,7 +70,7 @@ const RUNTIME_GENERATION = Number(
69
70
  const BOOT_SESSION_ID = randomUUID();
70
71
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
71
72
  const INSTALLER_PACKAGE =
72
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.483";
73
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.484";
73
74
  const MCP_PACKAGE =
74
75
  process.env.SELLABLE_AGENT_MCP_PACKAGE ??
75
76
  "@sellable/mcp@0.1.805";
@@ -400,24 +401,13 @@ function writeRuntimeHermesConfig({
400
401
  const runtimeConfigRoot = profileRoot;
401
402
  mkdirSync(runtimeConfigRoot, { recursive: true, mode: 0o700 });
402
403
  chmodSync(runtimeConfigRoot, 0o700);
403
- const priorIdentityPath = join(runtimeConfigRoot, "runtime-identity.json");
404
- let priorModelCredentialGeneration = null;
405
- if (existsSync(priorIdentityPath)) {
406
- try {
407
- const priorIdentity = JSON.parse(readFileSync(priorIdentityPath, "utf8"));
408
- if (
409
- Number.isSafeInteger(priorIdentity.modelCredentialGeneration) &&
410
- priorIdentity.modelCredentialGeneration > 0
411
- ) {
412
- priorModelCredentialGeneration =
413
- priorIdentity.modelCredentialGeneration;
414
- }
415
- } catch {
416
- priorModelCredentialGeneration = null;
417
- }
418
- }
419
404
  const localHermesAuthStorePath = join(runtimeConfigRoot, "auth.json");
420
405
  const hermesRootAuthStorePath = join(DATA_ROOT, "auth.json");
406
+ const hermesRootAuthMarkerPath = join(
407
+ DATA_ROOT,
408
+ ".sellable-agent",
409
+ "model-auth-source.json"
410
+ );
421
411
  if (existsSync(localHermesAuthStorePath)) {
422
412
  const localAuthStore = lstatSync(localHermesAuthStorePath);
423
413
  if (localAuthStore.isSymbolicLink() || !localAuthStore.isFile()) {
@@ -425,17 +415,6 @@ function writeRuntimeHermesConfig({
425
415
  }
426
416
  unlinkSync(localHermesAuthStorePath);
427
417
  }
428
- if (
429
- priorModelCredentialGeneration !== null &&
430
- priorModelCredentialGeneration !== desired.modelCredentialGeneration &&
431
- existsSync(hermesRootAuthStorePath)
432
- ) {
433
- const authStore = lstatSync(hermesRootAuthStorePath);
434
- if (authStore.isSymbolicLink() || !authStore.isFile()) {
435
- throw new Error("customer_model_auth_store_rejected");
436
- }
437
- unlinkSync(hermesRootAuthStorePath);
438
- }
439
418
  const mcpConfig = JSON.parse(
440
419
  readFileSync(join(profileRoot, "sellable", "mcp.json"), "utf8")
441
420
  );
@@ -480,19 +459,12 @@ function writeRuntimeHermesConfig({
480
459
  const modelCredential = parseFlyCustomerModelCredential(secrets.modelCodex);
481
460
  const modelAuthPath = join(secretRoot, "auth.json");
482
461
  atomicFile(modelAuthPath, modelCredential.authJson, 0o600);
483
- if (!existsSync(hermesRootAuthStorePath)) {
484
- atomicFile(
485
- hermesRootAuthStorePath,
486
- modelCredential.hermesRootAuthJson,
487
- 0o600
488
- );
489
- } else {
490
- const authStore = lstatSync(hermesRootAuthStorePath);
491
- if (authStore.isSymbolicLink() || !authStore.isFile()) {
492
- throw new Error("customer_model_auth_store_rejected");
493
- }
494
- chmodSync(hermesRootAuthStorePath, 0o600);
495
- }
462
+ const modelAuthState = reconcileHermesRootModelAuth({
463
+ authStorePath: hermesRootAuthStorePath,
464
+ markerPath: hermesRootAuthMarkerPath,
465
+ modelCredential,
466
+ generation: desired.modelCredentialGeneration,
467
+ });
496
468
  atomicJson(runtimeConfigPath, {
497
469
  ...baseConfig,
498
470
  ...(testModelOrigin
@@ -572,6 +544,8 @@ function writeRuntimeHermesConfig({
572
544
  gatesPath,
573
545
  modelAuthPath,
574
546
  hermesRootAuthStorePath,
547
+ hermesRootAuthMarkerPath,
548
+ modelAuthSourceFingerprint: modelAuthState.sourceFingerprint,
575
549
  modelCredential,
576
550
  };
577
551
  }
@@ -785,8 +759,10 @@ async function proveProvisionedApplication({
785
759
  "from hermes_cli.auth import resolve_codex_runtime_credentials",
786
760
  "value = resolve_codex_runtime_credentials(refresh_if_expiring=False)",
787
761
  'root_auth = get_default_hermes_root() / "auth.json"',
762
+ 'root_auth_marker = get_default_hermes_root() / ".sellable-agent" / "model-auth-source.json"',
788
763
  'local_auth = get_hermes_home() / "auth.json"',
789
- 'print(json.dumps({"provider": value.get("provider"), "source": value.get("source"), "source_class": "root_fallback" if root_auth.is_file() and not local_auth.exists() else "unexpected", "auth_mode": value.get("auth_mode"), "credential_present": bool(value.get("api_key")), "local_auth_entry_count": 0 if not local_auth.exists() else 1}))',
764
+ "marker = json.loads(root_auth_marker.read_text()) if root_auth_marker.is_file() else {}",
765
+ 'print(json.dumps({"provider": value.get("provider"), "source": value.get("source"), "source_class": "root_fallback" if root_auth.is_file() and not local_auth.exists() else "unexpected", "auth_mode": value.get("auth_mode"), "credential_present": bool(value.get("api_key")), "local_auth_entry_count": 0 if not local_auth.exists() else 1, "source_fingerprint": marker.get("sourceFingerprint"), "credential_generation": marker.get("generation")}))',
790
766
  ].join(";"),
791
767
  ],
792
768
  {
@@ -801,7 +777,10 @@ async function proveProvisionedApplication({
801
777
  } catch {
802
778
  modelAuthReadback = null;
803
779
  }
804
- const modelAuthVerdict = evaluateModelAuthReadback(modelAuthReadback);
780
+ const modelAuthVerdict = evaluateModelAuthReadback(modelAuthReadback, {
781
+ sourceFingerprint: runtimeConfig.modelAuthSourceFingerprint,
782
+ generation: desired.modelCredentialGeneration,
783
+ });
805
784
  if (modelAuth.status !== 0 || !modelAuthVerdict.accepted) {
806
785
  // Name the failed invariant: a bare rejection sent the 2026-07-28 outage
807
786
  // hunting the credential itself when the credential was valid and only its
@@ -0,0 +1,143 @@
1
+ import { createHash, randomUUID } from "node:crypto";
2
+ import {
3
+ chmodSync,
4
+ existsSync,
5
+ lstatSync,
6
+ mkdirSync,
7
+ readFileSync,
8
+ renameSync,
9
+ writeFileSync,
10
+ } from "node:fs";
11
+ import { dirname } from "node:path";
12
+
13
+ const MARKER_VERSION = 1;
14
+ const MARKER_KEYS = ["generation", "sourceFingerprint", "version"];
15
+
16
+ const sha256 = (value) => createHash("sha256").update(value).digest("hex");
17
+
18
+ function assertRegularFileOrMissing(path) {
19
+ if (!existsSync(path)) return;
20
+ const entry = lstatSync(path);
21
+ if (entry.isSymbolicLink() || !entry.isFile()) {
22
+ throw new Error("customer_model_auth_store_rejected");
23
+ }
24
+ }
25
+
26
+ function atomicPrivateFile(path, bytes) {
27
+ mkdirSync(dirname(path), { recursive: true, mode: 0o700 });
28
+ const temporary = `${path}.${process.pid}.${randomUUID()}.tmp`;
29
+ writeFileSync(temporary, bytes, { flag: "wx", mode: 0o600 });
30
+ chmodSync(temporary, 0o600);
31
+ renameSync(temporary, path);
32
+ chmodSync(path, 0o600);
33
+ }
34
+
35
+ function readMarker(path) {
36
+ assertRegularFileOrMissing(path);
37
+ if (!existsSync(path)) return null;
38
+ try {
39
+ const marker = JSON.parse(readFileSync(path, "utf8"));
40
+ if (
41
+ !marker ||
42
+ typeof marker !== "object" ||
43
+ Array.isArray(marker) ||
44
+ Object.keys(marker).sort().join("\0") !==
45
+ [...MARKER_KEYS].sort().join("\0") ||
46
+ marker.version !== MARKER_VERSION ||
47
+ !Number.isSafeInteger(marker.generation) ||
48
+ marker.generation < 1 ||
49
+ !/^[a-f0-9]{16}$/.test(marker.sourceFingerprint)
50
+ ) {
51
+ return null;
52
+ }
53
+ return marker;
54
+ } catch {
55
+ return null;
56
+ }
57
+ }
58
+
59
+ function usableHermesRootAuth(path) {
60
+ if (!existsSync(path)) return false;
61
+ try {
62
+ const value = JSON.parse(readFileSync(path, "utf8"));
63
+ const provider = value?.providers?.["openai-codex"];
64
+ const pool = value?.credential_pool?.["openai-codex"];
65
+ return Boolean(
66
+ value?.active_provider === "openai-codex" &&
67
+ provider?.auth_mode === "chatgpt" &&
68
+ provider.tokens &&
69
+ ["id_token", "access_token", "refresh_token", "account_id"].every(
70
+ (key) =>
71
+ typeof provider.tokens[key] === "string" &&
72
+ provider.tokens[key].length > 0
73
+ ) &&
74
+ Array.isArray(pool) &&
75
+ pool.length > 0
76
+ );
77
+ } catch {
78
+ return false;
79
+ }
80
+ }
81
+
82
+ /**
83
+ * Reconcile Hermes' persistent root auth store with the sealed control-plane
84
+ * credential without undoing a later in-place OAuth refresh.
85
+ *
86
+ * The marker is written only after the matching auth store is durable. A
87
+ * missing or mismatched marker therefore means the root store must be reseeded,
88
+ * even when runtime-identity.json already records the new generation after an
89
+ * interrupted or overlapping reconciliation.
90
+ */
91
+ export function reconcileHermesRootModelAuth({
92
+ authStorePath,
93
+ markerPath,
94
+ modelCredential,
95
+ generation,
96
+ }) {
97
+ if (
98
+ typeof authStorePath !== "string" ||
99
+ !authStorePath ||
100
+ typeof markerPath !== "string" ||
101
+ !markerPath ||
102
+ !Number.isSafeInteger(generation) ||
103
+ generation < 1 ||
104
+ !modelCredential ||
105
+ typeof modelCredential.authJson !== "string" ||
106
+ typeof modelCredential.hermesRootAuthJson !== "string"
107
+ ) {
108
+ throw new Error("customer_model_auth_store_rejected");
109
+ }
110
+
111
+ assertRegularFileOrMissing(authStorePath);
112
+ const sourceFingerprint = sha256(modelCredential.authJson).slice(0, 16);
113
+ const priorMarker = readMarker(markerPath);
114
+ const markerMatches =
115
+ priorMarker?.generation === generation &&
116
+ priorMarker.sourceFingerprint === sourceFingerprint;
117
+ const authStoreUsable = usableHermesRootAuth(authStorePath);
118
+
119
+ if (!markerMatches || !authStoreUsable) {
120
+ atomicPrivateFile(authStorePath, modelCredential.hermesRootAuthJson);
121
+ atomicPrivateFile(
122
+ markerPath,
123
+ `${JSON.stringify(
124
+ {
125
+ version: MARKER_VERSION,
126
+ generation,
127
+ sourceFingerprint,
128
+ },
129
+ null,
130
+ 2
131
+ )}\n`
132
+ );
133
+ } else {
134
+ chmodSync(authStorePath, 0o600);
135
+ chmodSync(markerPath, 0o600);
136
+ }
137
+
138
+ return Object.freeze({
139
+ sourceFingerprint,
140
+ generation,
141
+ reseeded: !markerMatches || !authStoreUsable,
142
+ });
143
+ }
@@ -30,8 +30,11 @@ const TRUSTED_MODEL_AUTH_SOURCES = ["hermes-auth-store", "credential_pool"];
30
30
  * Decide whether the runtime's model-auth readback proves a usable, isolated
31
31
  * Codex credential. Returns the first failed invariant so boot failures name
32
32
  * the actual cause instead of a generic rejection.
33
+ *
34
+ * @param {unknown} readback
35
+ * @param {{ sourceFingerprint: string, generation: number } | null} [expected]
33
36
  */
34
- export function evaluateModelAuthReadback(readback) {
37
+ export function evaluateModelAuthReadback(readback, expected = null) {
35
38
  const reject = (rejection) => ({ accepted: false, rejection });
36
39
  if (!readback || typeof readback !== "object" || Array.isArray(readback)) {
37
40
  return reject("readback_unparsable");
@@ -54,6 +57,12 @@ export function evaluateModelAuthReadback(readback) {
54
57
  if (readback.credential_present !== true) {
55
58
  return reject("credential_absent");
56
59
  }
60
+ if (expected && readback.source_fingerprint !== expected.sourceFingerprint) {
61
+ return reject("source_fingerprint_mismatch");
62
+ }
63
+ if (expected && readback.credential_generation !== expected.generation) {
64
+ return reject("credential_generation_mismatch");
65
+ }
57
66
  return { accepted: true, rejection: null };
58
67
  }
59
68
 
@@ -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.483";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.484";
42
42
  const MCP_PACKAGE = "@sellable/mcp@0.1.760-wip.phase143.20260727100513";
43
43
  const HERMES_VERSION = "0.18.0";
44
44
  const SHA256 = /^[a-f0-9]{64}$/;
@@ -1540,7 +1540,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
1540
1540
  ]) ||
1541
1541
  pinned.hermesCli !== "hermes" ||
1542
1542
  pinned.hermesVersion !== "0.18.0" ||
1543
- pinned.installerPackage !== "@sellable/install@0.1.483" ||
1543
+ pinned.installerPackage !== "@sellable/install@0.1.484" ||
1544
1544
  pinned.mcpPackage !==
1545
1545
  "@sellable/mcp@0.1.760-wip.phase143.20260727100513" ||
1546
1546
  !Array.isArray(policy.toolInclude) ||
@@ -197,7 +197,7 @@ function validateDesired(desired) {
197
197
  desired.serviceCredentialGeneration < 1 ||
198
198
  desired.hermesCli !== "hermes" ||
199
199
  desired.hermesVersion !== "0.18.0" ||
200
- desired.installerPackage !== "@sellable/install@0.1.483" ||
200
+ desired.installerPackage !== "@sellable/install@0.1.484" ||
201
201
  desired.mcpPackage !==
202
202
  "@sellable/mcp@0.1.760-wip.phase143.20260727100513" ||
203
203
  !Array.isArray(desired.toolInclude) ||
@@ -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.483";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.484";
29
29
  export const PINNED_MCP_PACKAGE =
30
30
  "@sellable/mcp@0.1.760-wip.phase143.20260727100513";
31
31
 
@@ -612,7 +612,7 @@ function inspectProvisionedProfile({
612
612
  !matchesReadback(manifest, request) ||
613
613
  manifest.serviceCredentialReference !== serviceCredentialReference ||
614
614
  manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
615
- manifest.installerVersion !== "0.1.483" ||
615
+ manifest.installerVersion !== "0.1.484" ||
616
616
  manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
617
617
  manifest.credentialKeyVersion !== credentialKeyVersion ||
618
618
  !/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
@@ -826,7 +826,7 @@ function successReceipt({
826
826
  subject: `agent-profile:${observed.profileId}`,
827
827
  cli: {
828
828
  installPackage: PINNED_INSTALL_PACKAGE,
829
- installVersion: "0.1.483",
829
+ installVersion: "0.1.484",
830
830
  mcpPackage: PINNED_MCP_PACKAGE,
831
831
  command: "hermes profile bootstrap",
832
832
  },
@@ -874,7 +874,7 @@ function failure(code, stages, extra = {}, request = null) {
874
874
  : "agent-profile:unbound",
875
875
  cli: {
876
876
  installPackage: PINNED_INSTALL_PACKAGE,
877
- installVersion: "0.1.483",
877
+ installVersion: "0.1.484",
878
878
  mcpPackage: PINNED_MCP_PACKAGE,
879
879
  command: "hermes profile bootstrap",
880
880
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.483",
3
+ "version": "0.1.484",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {