@sellable/install 0.1.762 → 0.1.763

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.762
7
- ARG MCP_PACKAGE=@sellable/mcp@0.1.940
6
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.763
7
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.941
8
8
  ARG INSTALLER_INTEGRITY
9
- ARG MCP_INTEGRITY=sha512-tdOI35yXq3VzfaN47RJfbuzopzfgrPw/66eM6rMDa+NOrt9nM0UmFjL59dj9lDg7rv8Ryl41EeYsysrF5c+OqA==
9
+ ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
10
10
 
11
- RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.762" \
12
- && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.940" \
11
+ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.763" \
12
+ && test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.941" \
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.762" \
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.762' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.940') 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.763' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.941') 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.762', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.940', 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.763', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.941', 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.762` is
6
+ `@sellable/install@0.1.763` is
7
7
  published:
8
8
 
9
9
  ```sh
@@ -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.940";
31
+ const MCP_VERSION = "0.1.941";
32
32
  const SAFE_COMPONENT = /^[A-Za-z0-9@._+-]+$/;
33
33
  const HERMES_EXCLUDES = new Set([".git", ".playwright", "node_modules"]);
34
34
 
@@ -6,9 +6,9 @@ USER root
6
6
 
7
7
  ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
8
8
 
9
- ARG MCP_PACKAGE=@sellable/mcp@0.1.940
10
- ARG MCP_INTEGRITY=sha512-tdOI35yXq3VzfaN47RJfbuzopzfgrPw/66eM6rMDa+NOrt9nM0UmFjL59dj9lDg7rv8Ryl41EeYsysrF5c+OqA==
11
- ARG INSTALLER_PACKAGE=@sellable/install@0.1.762
9
+ ARG MCP_PACKAGE=@sellable/mcp@0.1.941
10
+ ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
11
+ ARG INSTALLER_PACKAGE=@sellable/install@0.1.763
12
12
  ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.202
13
13
  ARG ADMIN_MCP_INTEGRITY=sha512-ym3aye/0vQ8tfULJlKz9JFOxvIQsl1G+n3np+TTgK/tecwNblBo/j3AkTnRqH9iomKzPbZzP+n4tEQsvsU8ByA==
14
14
  ARG TUS_JS_CLIENT_VERSION=4.3.1
@@ -122,9 +122,9 @@ const RUNTIME_GENERATION = Number(
122
122
  const BOOT_SESSION_ID = randomUUID();
123
123
  const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.21.3";
124
124
  const INSTALLER_PACKAGE =
125
- process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.762";
125
+ process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.763";
126
126
  const MCP_PACKAGE =
127
- process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.940";
127
+ process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.941";
128
128
  export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
129
129
  const DEFAULT_PROFILE_BUNDLE_ROOT =
130
130
  "/usr/local/share/sellable-agent/default-profile-bundle";
@@ -391,6 +391,8 @@ def inventory(read_name=None, read_file=None):
391
391
  op = request.get("operation")
392
392
  if op == "enumerate":
393
393
  output = inventory(request.get("readName"), request.get("readFile"))
394
+ if "readNames" in request:
395
+ output["nativeViews"] = [native_view(name) for name in request["readNames"]]
394
396
  elif op == "read":
395
397
  output = {"nativeView": native_view(request["readName"], request.get("readFile"))}
396
398
  elif op == "scan":
@@ -497,21 +499,28 @@ export function normalizeHermesNativeSkillView(value) {
497
499
  }
498
500
 
499
501
  function normalizeNativeResult(result) {
500
- return result?.nativeView
501
- ? {
502
- ...result,
503
- nativeView: normalizeHermesNativeSkillView(result.nativeView),
504
- }
505
- : result;
502
+ return {
503
+ ...result,
504
+ ...(result?.nativeView
505
+ ? { nativeView: normalizeHermesNativeSkillView(result.nativeView) }
506
+ : {}),
507
+ ...(Array.isArray(result?.nativeViews)
508
+ ? { nativeViews: result.nativeViews.map(normalizeHermesNativeSkillView) }
509
+ : {}),
510
+ };
506
511
  }
507
512
 
508
513
  function defaultAdapter(paths, timeoutMs) {
509
514
  return {
510
- enumerate: ({ readName, readFile } = {}) =>
515
+ enumerate: ({ readName, readFile, readNames } = {}) =>
511
516
  normalizeNativeResult(
512
- runNative({ operation: "enumerate", readName, readFile }, paths, {
513
- timeoutMs,
514
- })
517
+ runNative(
518
+ { operation: "enumerate", readName, readFile, readNames },
519
+ paths,
520
+ {
521
+ timeoutMs,
522
+ }
523
+ )
515
524
  ),
516
525
  read: ({ readName, readFile } = {}) =>
517
526
  normalizeNativeResult(
@@ -537,6 +546,7 @@ function assertRequest(request) {
537
546
  const common = ["operation"];
538
547
  const shapes = {
539
548
  list: common,
549
+ verify: [...common, "names"],
540
550
  read: [...common, "skillId", "filePath"],
541
551
  edit: [...common, "skillId", "content", "expectedFileSha256"],
542
552
  toggle: [...common, "skillId", "enabled", "disabledConfigSha256"],
@@ -569,6 +579,17 @@ function assertRequest(request) {
569
579
  const keys = shapes[request?.operation];
570
580
  if (!keys) fail("skills_operation_rejected");
571
581
  assertExactKeys(request, new Set(keys));
582
+ if (
583
+ request.operation === "verify" &&
584
+ (!Array.isArray(request.names) ||
585
+ request.names.length < 1 ||
586
+ request.names.length > SKILLS_MAX_COUNT ||
587
+ request.names.some(
588
+ (name) => typeof name !== "string" || !SAFE_NAME.test(name)
589
+ ) ||
590
+ new Set(request.names).size !== request.names.length)
591
+ )
592
+ fail("skills_names_rejected");
572
593
  if (
573
594
  request.operation === "create" &&
574
595
  (!SAFE_NAME.test(request.name ?? "") ||
@@ -668,8 +689,39 @@ function atomicProof(paths, inventory) {
668
689
  }
669
690
 
670
691
  function executeLocked(request, paths, adapter, options) {
671
- const beforeNative = adapter.enumerate();
692
+ // Startup proves the entire managed bundle in one Python invocation and one
693
+ // profile lock. Re-importing Hermes for list + each read made the second live
694
+ // serving pass exceed its deadline even after every duplicate was retired.
695
+ const beforeNative =
696
+ request.operation === "verify"
697
+ ? adapter.enumerate({ readNames: request.names })
698
+ : adapter.enumerate();
672
699
  const before = normalizeEnumeration(beforeNative, paths, options.limits);
700
+ if (request.operation === "verify") {
701
+ if (
702
+ !Array.isArray(beforeNative.nativeViews) ||
703
+ beforeNative.nativeViews.length !== request.names.length
704
+ )
705
+ fail("skills_native_readback_failed");
706
+ const proofs = request.names.map((name, index) => {
707
+ const matches = before.skills.filter((skill) => skill.name === name);
708
+ if (matches.length !== 1 || !matches[0].enabled)
709
+ fail("skills_native_readback_failed");
710
+ const skill = matches[0];
711
+ assertNativeView(
712
+ beforeNative.nativeViews[index],
713
+ name,
714
+ skill.manifestContent,
715
+ "skills_native_readback_failed"
716
+ );
717
+ return {
718
+ name,
719
+ fileSha256: beforeNative.nativeViews[index].contentSha256,
720
+ };
721
+ });
722
+ atomicProof(paths, before);
723
+ return { ok: true, proofs };
724
+ }
673
725
  if (request.operation === "list") {
674
726
  atomicProof(paths, before);
675
727
  return {
@@ -1066,17 +1118,22 @@ export function proveDefaultProfileNativeSkills({
1066
1118
  if (!SAFE_NAME.test(action.nativeName ?? ""))
1067
1119
  fail("default_profile_native_skill_name_missing");
1068
1120
  }
1069
- const inventory = bridge({ operation: "list" }, options);
1070
- const proofs = managed.map((action) => {
1071
- const skill = inventory.skills.find(
1072
- (entry) => entry.name === action.nativeName
1073
- );
1074
- if (!skill) fail("default_profile_native_skill_missing");
1075
- const viewed = bridge(
1076
- { operation: "read", skillId: skill.skillId },
1077
- options
1078
- );
1079
- if (!viewed.ok || viewed.skill?.name !== action.nativeName)
1121
+ const verified = bridge(
1122
+ { operation: "verify", names: managed.map((action) => action.nativeName) },
1123
+ options
1124
+ );
1125
+ if (
1126
+ !verified.ok ||
1127
+ !Array.isArray(verified.proofs) ||
1128
+ verified.proofs.length !== managed.length
1129
+ )
1130
+ fail("default_profile_native_skill_readback_rejected");
1131
+ const proofs = managed.map((action, index) => {
1132
+ const viewed = verified.proofs[index];
1133
+ if (
1134
+ viewed?.name !== action.nativeName ||
1135
+ !SHA256.test(viewed.fileSha256 ?? "")
1136
+ )
1080
1137
  fail("default_profile_native_skill_readback_rejected");
1081
1138
  return {
1082
1139
  id: action.id,
@@ -38,8 +38,8 @@ 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.762";
42
- const MCP_PACKAGE = "@sellable/mcp@0.1.940";
41
+ const INSTALLER_PACKAGE = "@sellable/install@0.1.763";
42
+ const MCP_PACKAGE = "@sellable/mcp@0.1.941";
43
43
  const HERMES_VERSION = "0.18.0";
44
44
  const SHA256 = /^[a-f0-9]{64}$/;
45
45
  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.762" ||
1550
- pinned.mcpPackage !== "@sellable/mcp@0.1.940" ||
1549
+ pinned.installerPackage !== "@sellable/install@0.1.763" ||
1550
+ pinned.mcpPackage !== "@sellable/mcp@0.1.941" ||
1551
1551
  !Array.isArray(policy.toolInclude) ||
1552
1552
  policy.toolInclude.length === 0 ||
1553
1553
  !Number.isSafeInteger(slack.generation) ||
@@ -312,8 +312,8 @@ function validateDesired(desired) {
312
312
  desired.serviceCredentialGeneration < 1 ||
313
313
  desired.hermesCli !== "hermes" ||
314
314
  desired.hermesVersion !== "0.18.0" ||
315
- desired.installerPackage !== "@sellable/install@0.1.762" ||
316
- desired.mcpPackage !== "@sellable/mcp@0.1.940" ||
315
+ desired.installerPackage !== "@sellable/install@0.1.763" ||
316
+ desired.mcpPackage !== "@sellable/mcp@0.1.941" ||
317
317
  !Array.isArray(desired.toolInclude) ||
318
318
  desired.toolInclude.length === 0 ||
319
319
  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.762";
29
- export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.940";
28
+ export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.763";
29
+ export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.941";
30
30
  const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
31
31
  PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
32
32
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.762",
3
+ "version": "0.1.763",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {