@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.
- package/container/Dockerfile +7 -7
- package/container/README.md +1 -1
- package/lib/sellable-agent/external-runtime-builder.mjs +1 -1
- package/lib/sellable-agent/fly-customer-image/Dockerfile +3 -3
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +2 -2
- package/lib/sellable-agent/fly-skills-bridge.mjs +79 -22
- package/lib/sellable-agent/host-bootstrap.mjs +2 -2
- package/lib/sellable-agent/host-worker.mjs +2 -2
- package/lib/sellable-agent/profile-materializer.mjs +2 -2
- package/lib/sellable-agent/provisioning-adapter.mjs +2 -2
- package/package.json +1 -1
package/container/Dockerfile
CHANGED
|
@@ -3,13 +3,13 @@ FROM ${HERMES_IMAGE}
|
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
7
|
-
ARG MCP_PACKAGE=@sellable/mcp@0.1.
|
|
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-
|
|
9
|
+
ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
12
|
-
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.
|
|
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.
|
|
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.
|
|
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
|
package/container/README.md
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
10
|
-
ARG MCP_INTEGRITY=sha512-
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
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.
|
|
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.
|
|
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
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
}
|
|
505
|
-
|
|
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(
|
|
513
|
-
|
|
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
|
-
|
|
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
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
);
|
|
1079
|
-
|
|
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.
|
|
42
|
-
const MCP_PACKAGE = "@sellable/mcp@0.1.
|
|
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.
|
|
1550
|
-
pinned.mcpPackage !== "@sellable/mcp@0.1.
|
|
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.
|
|
316
|
-
desired.mcpPackage !== "@sellable/mcp@0.1.
|
|
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.
|
|
29
|
-
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.
|
|
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
|
);
|