@sellable/install 0.1.605 → 0.1.606

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.605
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.606
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.864
8
8
  ARG INSTALLER_INTEGRITY
9
9
  ARG MCP_INTEGRITY=sha512-UevVd71zQL2FgnqYaeHBkTi73iUV0Lg5BchM5JNhUbvaFxAFQ2M1n9uSS18qVuM9Km0aGZ7a0k8M9e2AVPboAw==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.605" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.606" \
12
12
  && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.864" \
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.605" \
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.605-wip.hermes-desktop.20260811160530' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.864') 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.606-wip.hermes-desktop.20260811160530' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.864') 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.605', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.864', 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.606', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.864', 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.605` is
6
+ `@sellable/install@0.1.606` 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.605-wip.hermes-desktop.20260811160530 .
12
+ --tag sellable-agent-host:0.1.606-wip.hermes-desktop.20260811160530 .
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`.
@@ -795,6 +795,45 @@ function mergeAdminLiveSkillsConfig(sourceRoot, targetRoot) {
795
795
  atomicPrivateFile(targetPath, targetDocument.toString());
796
796
  }
797
797
 
798
+ function installWritableAdminSlackChannelPolicy(stageRoot, slack) {
799
+ const envPath = join(stageRoot, ".env");
800
+ if (!existsSync(envPath)) {
801
+ throw new Error("admin_runtime_slack_environment_rejected");
802
+ }
803
+ const stat = lstatSync(envPath);
804
+ if (stat.isSymbolicLink() || !stat.isFile()) {
805
+ throw new Error("admin_runtime_slack_environment_rejected");
806
+ }
807
+ if (
808
+ !Array.isArray(slack?.selectedChannelIds) ||
809
+ slack.selectedChannelIds.length < 1 ||
810
+ !slack.selectedChannelIds.includes(slack.primaryChannel?.id)
811
+ ) {
812
+ throw new Error("admin_runtime_slack_contract_rejected");
813
+ }
814
+
815
+ let allowedPolicyCount = 0;
816
+ let readOnlyPolicyCount = 0;
817
+ const updated = readFileSync(envPath, "utf8")
818
+ .split("\n")
819
+ .map((line) => {
820
+ if (line.startsWith("SLACK_ALLOWED_CHANNELS=")) {
821
+ allowedPolicyCount += 1;
822
+ return `SLACK_ALLOWED_CHANNELS=${slack.selectedChannelIds.join(",")}`;
823
+ }
824
+ if (line.startsWith("SLACK_READ_ONLY_CHANNELS=")) {
825
+ readOnlyPolicyCount += 1;
826
+ return "SLACK_READ_ONLY_CHANNELS=";
827
+ }
828
+ return line;
829
+ })
830
+ .join("\n");
831
+ if (allowedPolicyCount !== 1 || readOnlyPolicyCount !== 1) {
832
+ throw new Error("admin_runtime_slack_environment_rejected");
833
+ }
834
+ atomicPrivateFile(envPath, updated);
835
+ }
836
+
798
837
  async function materializeAdminProfile({
799
838
  profileContract,
800
839
  settingsRoot,
@@ -899,6 +938,7 @@ async function materializeAdminProfile({
899
938
  return { ok: true, ...proof };
900
939
  },
901
940
  });
941
+ if (slack) installWritableAdminSlackChannelPolicy(stageRoot, slack);
902
942
  installAdminModelConfig(stageRoot, modelConfig);
903
943
  installAdminHermesMemoryHook(stageRoot);
904
944
  stageAdminRuntimeTree(stageRoot);
@@ -1644,9 +1684,10 @@ function nativeSlackProfileInput(claim, installed) {
1644
1684
  id: primary.channelId,
1645
1685
  name: primary.channelName ?? primary.channelId,
1646
1686
  },
1647
- secondaryReadChannelIds: bindings
1648
- .filter((binding) => binding.id !== primary.id)
1649
- .map((binding) => binding.channelId),
1687
+ selectedChannelIds: [
1688
+ ...new Set(bindings.map((binding) => binding.channelId)),
1689
+ ].sort(),
1690
+ secondaryReadChannelIds: [],
1650
1691
  allowedSlackUserIds: [...slack.memberAllowlist],
1651
1692
  slackApp: {
1652
1693
  appId: slack.appId,
@@ -6,7 +6,7 @@ USER root
6
6
 
7
7
  ARG MCP_PACKAGE=@sellable/mcp@0.1.864
8
8
  ARG MCP_INTEGRITY=sha512-UevVd71zQL2FgnqYaeHBkTi73iUV0Lg5BchM5JNhUbvaFxAFQ2M1n9uSS18qVuM9Km0aGZ7a0k8M9e2AVPboAw==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.605
9
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.606
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
@@ -95,7 +95,7 @@ const RUNTIME_GENERATION = Number(
95
95
  const BOOT_SESSION_ID = randomUUID();
96
96
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
97
97
  const INSTALLER_PACKAGE =
98
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.605";
98
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.606";
99
99
  const MCP_PACKAGE =
100
100
  process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.864";
101
101
 
@@ -62,17 +62,18 @@ const VERSION = "0.20.0";
62
62
  const ID = /^[A-Za-z0-9][A-Za-z0-9_-]{0,127}$/;
63
63
  const SHA256 = /^[a-f0-9]{64}$/;
64
64
  const MAX_BYTES = 128 * 1024 * 1024;
65
- // Portable snapshots contain only user-authored/customizable state. If native
66
- // Hermes cannot package that bounded set within two minutes, abort the helper
67
- // and let the persistent retry scheduler back off instead of contending with
68
- // the live Slack gateway for a full ten minutes.
65
+ // Portable snapshots contain user-authored/customizable state plus the compact
66
+ // Hermes session database and routing records required to continue an existing
67
+ // Slack thread after a Machine/volume migration. If native Hermes cannot
68
+ // package that bounded set within two minutes, abort the helper and let the
69
+ // persistent retry scheduler back off instead of contending with the live
70
+ // Slack gateway for a full ten minutes.
69
71
  const NATIVE_COMMAND_TIMEOUT_MS = 120_000;
70
72
  const TRANSIENT_PROFILE_ROOTS = new Set([".cache"]);
71
- // The encrypted Fly volume remains the authoritative full profile and keeps
72
- // state.db plus sessions across image updates and Machine replacement. This
73
- // portable disaster-recovery archive is intentionally narrower: conversation
74
- // history is high-churn/generated data, while these entries are the durable
75
- // customizations a user or agent can intentionally change.
73
+ // The encrypted Fly volume remains the authoritative full profile. The
74
+ // portable disaster-recovery archive also carries state.db and sessions so a
75
+ // replacement volume retains chat history and Slack thread routing. Caches,
76
+ // dependency trees, secrets, and live logs remain excluded.
76
77
  export const HERMES_SNAPSHOT_USER_STATE_ENTRIES = Object.freeze([
77
78
  "AGENTS.md",
78
79
  "SOUL.md",
@@ -88,8 +89,10 @@ export const HERMES_SNAPSHOT_USER_STATE_ENTRIES = Object.freeze([
88
89
  "projects.db",
89
90
  "sandboxes",
90
91
  "scripts",
92
+ "sessions",
91
93
  "skins",
92
94
  "skills",
95
+ "state.db",
93
96
  "workspace",
94
97
  ]);
95
98
  export const HERMES_SNAPSHOT_RETRY_BACKOFF_MS = Object.freeze([
@@ -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.605";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.606";
42
42
  const MCP_PACKAGE = "@sellable/mcp@0.1.864";
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.605" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.606" ||
1550
1550
  pinned.mcpPackage !== "@sellable/mcp@0.1.864" ||
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.605" ||
281
+ desired.installerPackage !== "@sellable/install@0.1.606" ||
282
282
  desired.mcpPackage !== "@sellable/mcp@0.1.864" ||
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.605";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.606";
29
29
  export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.864";
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.605",
3
+ "version": "0.1.606",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {