@sellable/install 0.1.581 → 0.1.583

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,13 +3,13 @@ FROM ${HERMES_IMAGE}
3
3
 
4
4
  USER root
5
5
 
6
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.581
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.859
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.582
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.860
8
8
  ARG INSTALLER_INTEGRITY
9
- ARG MCP_INTEGRITY=sha512-U5uVeDThuUW/CdWghTXQqTAA58mPDly3XHGmfX6WVjczGQHRcDB+Q49vbrA1MOkGRCnzmjGZN1fIVfFtBlwMPw==
9
+ ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.581" \
12
- && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.859" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.582" \
12
+ && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.860" \
13
13
  && test -n "${INSTALLER_INTEGRITY}" \
14
14
  && test "$(npm view "${INSTALLER_PACKAGE}" dist.integrity)" = "${INSTALLER_INTEGRITY}" \
15
15
  && test "$(npm view "${MCP_PACKAGE}" dist.integrity)" = "${MCP_INTEGRITY}" \
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.581" \
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.581' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.859') 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.582' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.860') 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.581', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.859', 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.582', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.860', 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.581` is
6
+ `@sellable/install@0.1.582` 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.581 .
12
+ --tag sellable-agent-host:0.1.582 .
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`.
@@ -28,7 +28,7 @@ import {
28
28
 
29
29
  const MANIFEST_VERSION = "sellable-agent-external-runtime-closure/v1";
30
30
  const MCP_PACKAGE = "@sellable/mcp";
31
- const MCP_VERSION = "0.1.859";
31
+ const MCP_VERSION = "0.1.860";
32
32
  const SAFE_COMPONENT = /^[A-Za-z0-9@._+-]+$/;
33
33
  const HERMES_EXCLUDES = new Set([".git", ".playwright", "node_modules"]);
34
34
 
@@ -4,9 +4,9 @@ FROM ${HERMES_IMAGE}
4
4
 
5
5
  USER root
6
6
 
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.859
8
- ARG MCP_INTEGRITY=sha512-U5uVeDThuUW/CdWghTXQqTAA58mPDly3XHGmfX6WVjczGQHRcDB+Q49vbrA1MOkGRCnzmjGZN1fIVfFtBlwMPw==
9
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.581
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.860
8
+ ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
9
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.582
10
10
  ARG TUS_JS_CLIENT_VERSION=4.3.1
11
11
  ARG HERMES_VERSION=0.20.0
12
12
  ARG TIRITH_VERSION=0.3.3
@@ -93,9 +93,9 @@ const RUNTIME_GENERATION = Number(
93
93
  const BOOT_SESSION_ID = randomUUID();
94
94
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
95
95
  const INSTALLER_PACKAGE =
96
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.581";
96
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.582";
97
97
  const MCP_PACKAGE =
98
- process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.859";
98
+ process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.860";
99
99
 
100
100
  const sha256 = (value) => createHash("sha256").update(value).digest("hex");
101
101
  const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
@@ -9,24 +9,56 @@ import {
9
9
  executeExternalSkillsBridgeOperation,
10
10
  } from "./fly-skills-bridge.mjs";
11
11
 
12
- export async function runFlySkillsBridgeExecCli() {
13
- try {
14
- if (process.argv.length !== 2)
12
+ export const FLY_SKILLS_EXEC_ARGUMENT_MAX_BYTES = 96 * 1024;
13
+ export const FLY_SKILLS_EXEC_ARGUMENT_MAX_COUNT = 8;
14
+
15
+ const BASE64URL_CHUNK = /^[A-Za-z0-9_-]+$/;
16
+ const FLY_SKILLS_EXEC_ENCODED_MAX_BYTES =
17
+ Math.ceil(SKILLS_REQUEST_MAX_BYTES / 3) * 4;
18
+
19
+ export function decodeFlySkillsExecArguments(args) {
20
+ if (!Array.isArray(args) || args.length === 0) {
21
+ throw new FlySkillsBridgeError("skills_request_rejected");
22
+ }
23
+ if (args.length > FLY_SKILLS_EXEC_ARGUMENT_MAX_COUNT) {
24
+ throw new FlySkillsBridgeError("skills_request_too_large");
25
+ }
26
+ let encoded = "";
27
+ for (const chunk of args) {
28
+ if (typeof chunk !== "string" || !BASE64URL_CHUNK.test(chunk)) {
15
29
  throw new FlySkillsBridgeError("skills_request_rejected");
16
- const chunks = [];
17
- let total = 0;
18
- for await (const chunk of process.stdin) {
19
- total += chunk.length;
20
- if (total > SKILLS_REQUEST_MAX_BYTES)
21
- throw new FlySkillsBridgeError("skills_request_too_large");
22
- chunks.push(chunk);
23
30
  }
24
- let request;
25
- try {
26
- request = JSON.parse(Buffer.concat(chunks).toString("utf8"));
27
- } catch {
28
- throw new FlySkillsBridgeError("skills_request_rejected");
31
+ if (Buffer.byteLength(chunk, "utf8") > FLY_SKILLS_EXEC_ARGUMENT_MAX_BYTES) {
32
+ throw new FlySkillsBridgeError("skills_request_too_large");
33
+ }
34
+ encoded += chunk;
35
+ if (encoded.length > FLY_SKILLS_EXEC_ENCODED_MAX_BYTES) {
36
+ throw new FlySkillsBridgeError("skills_request_too_large");
29
37
  }
38
+ }
39
+ let bytes;
40
+ try {
41
+ bytes = Buffer.from(encoded, "base64url");
42
+ } catch {
43
+ throw new FlySkillsBridgeError("skills_request_rejected");
44
+ }
45
+ if (bytes.toString("base64url") !== encoded) {
46
+ throw new FlySkillsBridgeError("skills_request_rejected");
47
+ }
48
+ if (bytes.byteLength > SKILLS_REQUEST_MAX_BYTES) {
49
+ throw new FlySkillsBridgeError("skills_request_too_large");
50
+ }
51
+ try {
52
+ const json = new TextDecoder("utf-8", { fatal: true }).decode(bytes);
53
+ return JSON.parse(json);
54
+ } catch {
55
+ throw new FlySkillsBridgeError("skills_request_rejected");
56
+ }
57
+ }
58
+
59
+ export async function runFlySkillsBridgeExecCli() {
60
+ try {
61
+ const request = decodeFlySkillsExecArguments(process.argv.slice(2));
30
62
  const result = executeExternalSkillsBridgeOperation(request);
31
63
  process.stdout.write(`${JSON.stringify(result)}\n`);
32
64
  process.exitCode = result.ok ? 0 : 2;
@@ -39,8 +39,8 @@ 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.581";
43
- const MCP_PACKAGE = "@sellable/mcp@0.1.859";
42
+ "@sellable/install@0.1.582";
43
+ const MCP_PACKAGE = "@sellable/mcp@0.1.860";
44
44
  const HERMES_VERSION = "0.18.0";
45
45
  const SHA256 = /^[a-f0-9]{64}$/;
46
46
  const SHA256_16 = /^[a-f0-9]{16}$/;
@@ -1546,8 +1546,8 @@ 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.581" ||
1550
- pinned.mcpPackage !== "@sellable/mcp@0.1.859" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.582" ||
1550
+ pinned.mcpPackage !== "@sellable/mcp@0.1.860" ||
1551
1551
  !Array.isArray(policy.toolInclude) ||
1552
1552
  policy.toolInclude.length === 0 ||
1553
1553
  !Number.isSafeInteger(slack.generation) ||
@@ -201,8 +201,8 @@ function validateDesired(desired) {
201
201
  desired.serviceCredentialGeneration < 1 ||
202
202
  desired.hermesCli !== "hermes" ||
203
203
  desired.hermesVersion !== "0.18.0" ||
204
- desired.installerPackage !== "@sellable/install@0.1.581" ||
205
- desired.mcpPackage !== "@sellable/mcp@0.1.859" ||
204
+ desired.installerPackage !== "@sellable/install@0.1.582" ||
205
+ desired.mcpPackage !== "@sellable/mcp@0.1.860" ||
206
206
  !Array.isArray(desired.toolInclude) ||
207
207
  desired.toolInclude.length === 0 ||
208
208
  desired.toolInclude.some((tool) => !/^[a-z][a-z0-9_]{0,127}$/.test(tool)) ||
@@ -25,8 +25,8 @@ 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.581";
29
- export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.859";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.582";
29
+ export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.860";
30
30
 
31
31
  export function deriveAgentProfileId(workspaceId, agentId, hostId) {
32
32
  return deriveContainedProfileId(workspaceId, agentId, hostId);
@@ -611,7 +611,7 @@ function inspectProvisionedProfile({
611
611
  !matchesReadback(manifest, request) ||
612
612
  manifest.serviceCredentialReference !== serviceCredentialReference ||
613
613
  manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
614
- manifest.installerVersion !== "0.1.581" ||
614
+ manifest.installerVersion !== "0.1.582" ||
615
615
  manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
616
616
  manifest.credentialKeyVersion !== credentialKeyVersion ||
617
617
  !/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
@@ -825,7 +825,7 @@ function successReceipt({
825
825
  subject: `agent-profile:${observed.profileId}`,
826
826
  cli: {
827
827
  installPackage: PINNED_INSTALL_PACKAGE,
828
- installVersion: "0.1.581",
828
+ installVersion: "0.1.582",
829
829
  mcpPackage: PINNED_MCP_PACKAGE,
830
830
  command: "hermes profile bootstrap",
831
831
  },
@@ -873,7 +873,7 @@ function failure(code, stages, extra = {}, request = null) {
873
873
  : "agent-profile:unbound",
874
874
  cli: {
875
875
  installPackage: PINNED_INSTALL_PACKAGE,
876
- installVersion: "0.1.581",
876
+ installVersion: "0.1.582",
877
877
  mcpPackage: PINNED_MCP_PACKAGE,
878
878
  command: "hermes profile bootstrap",
879
879
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.581",
3
+ "version": "0.1.583",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {