@sellable/install 0.1.761 → 0.1.762
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 +4 -4
- package/container/README.md +1 -1
- package/lib/sellable-agent/default-profile-reconciler.mjs +31 -5
- package/lib/sellable-agent/fly-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +1 -1
- package/lib/sellable-agent/host-bootstrap.mjs +1 -1
- package/lib/sellable-agent/host-worker.mjs +1 -1
- package/lib/sellable-agent/profile-materializer.mjs +1 -1
- package/lib/sellable-agent/provisioning-adapter.mjs +1 -1
- package/package.json +1 -1
package/container/Dockerfile
CHANGED
|
@@ -3,12 +3,12 @@ FROM ${HERMES_IMAGE}
|
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
6
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.762
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.940
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-tdOI35yXq3VzfaN47RJfbuzopzfgrPw/66eM6rMDa+NOrt9nM0UmFjL59dj9lDg7rv8Ryl41EeYsysrF5c+OqA==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.762" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.940" \
|
|
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.761" \
|
|
|
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.762' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.940') 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.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}" \
|
|
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.762` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -37,6 +37,24 @@ const ADMIN_MATERIALIZER_ANCHOR = "skills/sellable-admin/SKILL.md";
|
|
|
37
37
|
const ADMIN_NAMESPACE_RECEIPT_SCHEMA =
|
|
38
38
|
"sellable-admin-skill-namespace-receipt/v1";
|
|
39
39
|
|
|
40
|
+
// Immutable shared skill bytes shipped at 9878ec7a (@sellable/install 0.1.758).
|
|
41
|
+
// A partial upgrade can leave these legacy copies outside its older receipt.
|
|
42
|
+
// Operation d99cebfe proved that Hermes rejects their duplicate native names.
|
|
43
|
+
// Only these known bytes, current bundle bytes, or receipt-proven bytes may
|
|
44
|
+
// be retired; unknown customer content must still fail closed.
|
|
45
|
+
const LEGACY_PUBLIC_SKILL_DIGESTS = Object.freeze({
|
|
46
|
+
"create-campaign":
|
|
47
|
+
"0c1e7d514f6ff15c433fe6e9625c3b226ac9cd0add8e0590b10ca99ef0fa427b",
|
|
48
|
+
"refill-sends":
|
|
49
|
+
"2d0896a8024e0a3fee0ff8cf040ea6acdc8bca3292cddb48b41b4ac9f4b4065a",
|
|
50
|
+
"campaign-daily-review":
|
|
51
|
+
"2b0abf90d283835362d81bdcbd1759cbd2bc1048bddee3f2805466882f55320e",
|
|
52
|
+
"campaign-daily-results":
|
|
53
|
+
"bd12c54601285819cc70e54f0e41a04aba4a072664c1ce7a425d4be62188780c",
|
|
54
|
+
"campaign-weekly-review":
|
|
55
|
+
"09690edac84758ee3d874791d6235874577ac7d300192ef30328f003b641083d",
|
|
56
|
+
});
|
|
57
|
+
|
|
40
58
|
const legacyManagedSkillPath = (entry) =>
|
|
41
59
|
`skills/sellable-defaults/${entry.id}/SKILL.md`;
|
|
42
60
|
const canonicalPublicSkillPath = (entry) =>
|
|
@@ -592,7 +610,7 @@ export async function reconcileDefaultProfileBundle({
|
|
|
592
610
|
) {
|
|
593
611
|
throw new Error("default_profile_receipt_rejected");
|
|
594
612
|
}
|
|
595
|
-
if (
|
|
613
|
+
if (publicDirectory && legacyPath !== entry.path) {
|
|
596
614
|
const legacySkillPath = join(profileRoot, ...legacyPath.split("/"));
|
|
597
615
|
const candidateLegacyDirectory = dirname(legacySkillPath);
|
|
598
616
|
if (existsSync(candidateLegacyDirectory)) {
|
|
@@ -613,10 +631,15 @@ export async function reconcileDefaultProfileBundle({
|
|
|
613
631
|
}
|
|
614
632
|
rmSync(stage);
|
|
615
633
|
}
|
|
634
|
+
if (!existsSync(legacySkillPath))
|
|
635
|
+
throw new Error("default_profile_skill_collision");
|
|
636
|
+
const legacySha256 = sha256(
|
|
637
|
+
readRegular(legacySkillPath, 64 * 1024)
|
|
638
|
+
);
|
|
616
639
|
if (
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
640
|
+
legacySha256 !== entry.sha256 &&
|
|
641
|
+
legacySha256 !== priorEntry?.sha256 &&
|
|
642
|
+
legacySha256 !== LEGACY_PUBLIC_SKILL_DIGESTS[entry.id]
|
|
620
643
|
) {
|
|
621
644
|
throw new Error("default_profile_skill_collision");
|
|
622
645
|
}
|
|
@@ -633,7 +656,10 @@ export async function reconcileDefaultProfileBundle({
|
|
|
633
656
|
} else if (priorEntry?.sha256 === current) status = "UPDATED";
|
|
634
657
|
else throw new Error("default_profile_skill_collision");
|
|
635
658
|
}
|
|
636
|
-
if (
|
|
659
|
+
if (
|
|
660
|
+
legacyDirectory ||
|
|
661
|
+
(priorPath !== null && priorPath !== entry.path)
|
|
662
|
+
)
|
|
637
663
|
status = "UPDATED";
|
|
638
664
|
skillPlans.set(entry.id, {
|
|
639
665
|
directory,
|
|
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
|
|
|
8
8
|
|
|
9
9
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.940
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-tdOI35yXq3VzfaN47RJfbuzopzfgrPw/66eM6rMDa+NOrt9nM0UmFjL59dj9lDg7rv8Ryl41EeYsysrF5c+OqA==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.762
|
|
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,7 +122,7 @@ 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.762";
|
|
126
126
|
const MCP_PACKAGE =
|
|
127
127
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.940";
|
|
128
128
|
export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
|
|
@@ -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.
|
|
41
|
+
const INSTALLER_PACKAGE = "@sellable/install@0.1.762";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.940";
|
|
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.
|
|
1549
|
+
pinned.installerPackage !== "@sellable/install@0.1.762" ||
|
|
1550
1550
|
pinned.mcpPackage !== "@sellable/mcp@0.1.940" ||
|
|
1551
1551
|
!Array.isArray(policy.toolInclude) ||
|
|
1552
1552
|
policy.toolInclude.length === 0 ||
|
|
@@ -312,7 +312,7 @@ 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.
|
|
315
|
+
desired.installerPackage !== "@sellable/install@0.1.762" ||
|
|
316
316
|
desired.mcpPackage !== "@sellable/mcp@0.1.940" ||
|
|
317
317
|
!Array.isArray(desired.toolInclude) ||
|
|
318
318
|
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.
|
|
28
|
+
export const PINNED_INSTALL_PACKAGE = "@sellable/install@0.1.762";
|
|
29
29
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.940";
|
|
30
30
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
31
31
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|