@sellable/install 0.1.685 → 0.1.687
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/hermes-memory-snapshot.mjs +97 -1
- 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.687
|
|
7
|
+
ARG MCP_PACKAGE=@sellable/mcp@0.1.901
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
|
-
ARG MCP_INTEGRITY=sha512-
|
|
9
|
+
ARG MCP_INTEGRITY=sha512-0YBT2d3YBgZFSgEcmoDCNLz/PWMiBbqMWeZoEFArWuk63/vrYATEp/qBNzYhpy7SKClLapsb1RRagdXrvo/p9g==
|
|
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.687" \
|
|
12
|
+
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.901" \
|
|
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.684" \
|
|
|
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.687' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.901') 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.687', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.901', 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.687` 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.901";
|
|
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.901
|
|
10
|
+
ARG MCP_INTEGRITY=sha512-0YBT2d3YBgZFSgEcmoDCNLz/PWMiBbqMWeZoEFArWuk63/vrYATEp/qBNzYhpy7SKClLapsb1RRagdXrvo/p9g==
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.687
|
|
12
12
|
ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
|
|
13
13
|
ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
|
|
14
14
|
ARG TUS_JS_CLIENT_VERSION=4.3.1
|
|
@@ -106,9 +106,9 @@ const BOOT_SESSION_ID = randomUUID();
|
|
|
106
106
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.4";
|
|
107
107
|
const INSTALLER_PACKAGE =
|
|
108
108
|
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ??
|
|
109
|
-
"@sellable/install@0.1.
|
|
109
|
+
"@sellable/install@0.1.687";
|
|
110
110
|
const MCP_PACKAGE =
|
|
111
|
-
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.
|
|
111
|
+
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.901";
|
|
112
112
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
113
113
|
"/usr/local/share/sellable-agent/default-profile-bundle";
|
|
114
114
|
const DEFAULT_PROFILE_CRON_PYTHON = [
|
|
@@ -64,9 +64,19 @@ export const HERMES_OPPORTUNITY_SEQUENCES_CRON = Object.freeze({
|
|
|
64
64
|
schedule: "every 30m",
|
|
65
65
|
deliver: "slack",
|
|
66
66
|
skills: Object.freeze([HERMES_OPPORTUNITY_SEQUENCES_SKILL]),
|
|
67
|
-
enabledToolsets: Object.freeze([
|
|
67
|
+
enabledToolsets: Object.freeze([
|
|
68
|
+
"file",
|
|
69
|
+
"terminal",
|
|
70
|
+
"safe",
|
|
71
|
+
"sellable",
|
|
72
|
+
"mcp",
|
|
73
|
+
]),
|
|
68
74
|
noAgent: false,
|
|
69
75
|
});
|
|
76
|
+
export const HERMES_MANAGED_CRON_TOMBSTONES = Object.freeze({
|
|
77
|
+
relativePath: "cron/managed-job-tombstones.json",
|
|
78
|
+
schemaVersion: "sellable-managed-cron-tombstones/v1",
|
|
79
|
+
});
|
|
70
80
|
export const HERMES_OPPORTUNITY_SEQUENCES_JOURNAL_ROOT =
|
|
71
81
|
"/opt/data/.sellable-agent/admin-runtime/opportunity-sequences";
|
|
72
82
|
export const HERMES_CLIENT_RELATIONSHIPS_SKILL =
|
|
@@ -1373,6 +1383,35 @@ const OPPORTUNITY_SEQUENCE_CRON_PYTHON = [
|
|
|
1373
1383
|
"result=update_job(job_id, {**value, 'enabled': enabled}) if job_id else create_job(**value)",
|
|
1374
1384
|
"print(json.dumps({'id': result.get('id') if result else None}))",
|
|
1375
1385
|
].join("\n");
|
|
1386
|
+
const OPPORTUNITY_SEQUENCE_CRON_REMOVE_PYTHON = [
|
|
1387
|
+
"import json,sys",
|
|
1388
|
+
"from cron.jobs import remove_job",
|
|
1389
|
+
"value=json.loads(sys.argv[1])",
|
|
1390
|
+
"print(json.dumps({'removed': bool(remove_job(value['removeJobId']))}))",
|
|
1391
|
+
].join("\n");
|
|
1392
|
+
|
|
1393
|
+
function managedCronTombstones(profileRoot) {
|
|
1394
|
+
const path = join(profileRoot, HERMES_MANAGED_CRON_TOMBSTONES.relativePath);
|
|
1395
|
+
if (!existsSync(path)) return { path, names: new Set() };
|
|
1396
|
+
const stat = regularFile(path);
|
|
1397
|
+
if ((stat.mode & 0o077) !== 0) {
|
|
1398
|
+
throw new Error("hermes_managed_cron_tombstone_mode_rejected");
|
|
1399
|
+
}
|
|
1400
|
+
const value = JSON.parse(readFileSync(path, "utf8"));
|
|
1401
|
+
if (
|
|
1402
|
+
!value ||
|
|
1403
|
+
typeof value !== "object" ||
|
|
1404
|
+
Array.isArray(value) ||
|
|
1405
|
+
Object.keys(value).sort().join(",") !== "names,schemaVersion" ||
|
|
1406
|
+
value.schemaVersion !== HERMES_MANAGED_CRON_TOMBSTONES.schemaVersion ||
|
|
1407
|
+
!Array.isArray(value.names) ||
|
|
1408
|
+
value.names.some((name) => typeof name !== "string" || !ID.test(name)) ||
|
|
1409
|
+
new Set(value.names).size !== value.names.length
|
|
1410
|
+
) {
|
|
1411
|
+
throw new Error("hermes_managed_cron_tombstone_rejected");
|
|
1412
|
+
}
|
|
1413
|
+
return { path, names: new Set(value.names) };
|
|
1414
|
+
}
|
|
1376
1415
|
|
|
1377
1416
|
function opportunitySequenceIdentity(profileRoot) {
|
|
1378
1417
|
const root = join(
|
|
@@ -1422,6 +1461,63 @@ export async function ensureHermesOpportunitySequencesCron({
|
|
|
1422
1461
|
return failed("hermes_opportunity_sequences_cron_identity_rejected");
|
|
1423
1462
|
}
|
|
1424
1463
|
try {
|
|
1464
|
+
const tombstones = managedCronTombstones(profileRoot);
|
|
1465
|
+
if (tombstones.names.has(HERMES_OPPORTUNITY_SEQUENCES_CRON.name)) {
|
|
1466
|
+
const before = cronJobs(profileRoot);
|
|
1467
|
+
const matches = before.filter(
|
|
1468
|
+
(job) =>
|
|
1469
|
+
job?.name === HERMES_OPPORTUNITY_SEQUENCES_CRON.name ||
|
|
1470
|
+
job?.skill === HERMES_OPPORTUNITY_SEQUENCES_SKILL ||
|
|
1471
|
+
job?.skills?.includes?.(HERMES_OPPORTUNITY_SEQUENCES_SKILL)
|
|
1472
|
+
);
|
|
1473
|
+
if (matches.some((job) => !ID.test(job?.id ?? ""))) {
|
|
1474
|
+
return failed(
|
|
1475
|
+
"hermes_opportunity_sequences_cron_tombstone_inventory_rejected"
|
|
1476
|
+
);
|
|
1477
|
+
}
|
|
1478
|
+
const siblings = before.filter(
|
|
1479
|
+
(job) => !matches.some((match) => match.id === job?.id)
|
|
1480
|
+
);
|
|
1481
|
+
for (const job of matches) {
|
|
1482
|
+
const mutation = await childRunner(runChild)({
|
|
1483
|
+
command: hermesPython,
|
|
1484
|
+
args: [
|
|
1485
|
+
"-c",
|
|
1486
|
+
OPPORTUNITY_SEQUENCE_CRON_REMOVE_PYTHON,
|
|
1487
|
+
JSON.stringify({ removeJobId: job.id }),
|
|
1488
|
+
],
|
|
1489
|
+
env: {
|
|
1490
|
+
...process.env,
|
|
1491
|
+
HOME: hermesRoot,
|
|
1492
|
+
HERMES_HOME: profileRoot,
|
|
1493
|
+
HERMES_PROFILE: profileId,
|
|
1494
|
+
NO_COLOR: "1",
|
|
1495
|
+
},
|
|
1496
|
+
shell: false,
|
|
1497
|
+
timeoutMs: NATIVE_COMMAND_TIMEOUT_MS,
|
|
1498
|
+
maxOutputBytes: 64 * 1024,
|
|
1499
|
+
});
|
|
1500
|
+
if (childFailed(mutation)) {
|
|
1501
|
+
return failed(
|
|
1502
|
+
"hermes_opportunity_sequences_cron_tombstone_remove_failed"
|
|
1503
|
+
);
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
if (!sameJson(cronJobs(profileRoot), siblings)) {
|
|
1507
|
+
return failed(
|
|
1508
|
+
"hermes_opportunity_sequences_cron_tombstone_readback_rejected"
|
|
1509
|
+
);
|
|
1510
|
+
}
|
|
1511
|
+
return {
|
|
1512
|
+
ok: true,
|
|
1513
|
+
status: matches.length ? "REMOVED" : "REUSED",
|
|
1514
|
+
jobId: null,
|
|
1515
|
+
removedJobIds: matches.map((job) => job.id),
|
|
1516
|
+
name: HERMES_OPPORTUNITY_SEQUENCES_CRON.name,
|
|
1517
|
+
profileId,
|
|
1518
|
+
tombstonePath: tombstones.path,
|
|
1519
|
+
};
|
|
1520
|
+
}
|
|
1425
1521
|
const stateStat = regularFile(statePath);
|
|
1426
1522
|
if ((stateStat.mode & 0o077) !== 0) {
|
|
1427
1523
|
return failed("hermes_opportunity_sequences_cron_state_mode_rejected");
|
|
@@ -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.687";
|
|
42
|
+
const MCP_PACKAGE = "@sellable/mcp@0.1.901";
|
|
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}$/;
|
|
@@ -1547,8 +1547,8 @@ export function compileClaimToProfileDesired(activeClaim, config) {
|
|
|
1547
1547
|
pinned.hermesCli !== "hermes" ||
|
|
1548
1548
|
pinned.hermesVersion !== "0.18.0" ||
|
|
1549
1549
|
pinned.installerPackage !==
|
|
1550
|
-
"@sellable/install@0.1.
|
|
1551
|
-
pinned.mcpPackage !== "@sellable/mcp@0.1.
|
|
1550
|
+
"@sellable/install@0.1.687" ||
|
|
1551
|
+
pinned.mcpPackage !== "@sellable/mcp@0.1.901" ||
|
|
1552
1552
|
!Array.isArray(policy.toolInclude) ||
|
|
1553
1553
|
policy.toolInclude.length === 0 ||
|
|
1554
1554
|
!Number.isSafeInteger(slack.generation) ||
|
|
@@ -283,8 +283,8 @@ function validateDesired(desired) {
|
|
|
283
283
|
desired.hermesCli !== "hermes" ||
|
|
284
284
|
desired.hermesVersion !== "0.18.0" ||
|
|
285
285
|
desired.installerPackage !==
|
|
286
|
-
"@sellable/install@0.1.
|
|
287
|
-
desired.mcpPackage !== "@sellable/mcp@0.1.
|
|
286
|
+
"@sellable/install@0.1.687" ||
|
|
287
|
+
desired.mcpPackage !== "@sellable/mcp@0.1.901" ||
|
|
288
288
|
!Array.isArray(desired.toolInclude) ||
|
|
289
289
|
desired.toolInclude.length === 0 ||
|
|
290
290
|
desired.toolInclude.some((tool) => !/^[a-z][a-z0-9_]{0,127}$/.test(tool)) ||
|
|
@@ -26,8 +26,8 @@ import { deriveContainedProfileId } from "./profile-materializer.mjs";
|
|
|
26
26
|
|
|
27
27
|
export const PROVISIONING_ACTION = "PROVISION_HERMES_PROFILE";
|
|
28
28
|
export const PINNED_INSTALL_PACKAGE =
|
|
29
|
-
"@sellable/install@0.1.
|
|
30
|
-
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.
|
|
29
|
+
"@sellable/install@0.1.687";
|
|
30
|
+
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.901";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|
|
33
33
|
);
|