@sellable/install 0.1.755 → 0.1.756
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/fly-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +46 -4
- 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.756
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.938
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-wcVCiCXVvKeE/SufP+2iXk8zgzwYWh78M/1vwa7oorF9UZbzut9szyZV47t4iMX9owYgBVaGwdlOC6eX8VQX4A==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.756" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.938" \
|
|
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.755" \
|
|
|
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.756' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.938') 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.756', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.938', 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.756` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
|
|
|
8
8
|
|
|
9
9
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.938
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-wcVCiCXVvKeE/SufP+2iXk8zgzwYWh78M/1vwa7oorF9UZbzut9szyZV47t4iMX9owYgBVaGwdlOC6eX8VQX4A==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.756
|
|
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
|
|
@@ -121,7 +121,7 @@ const RUNTIME_GENERATION = Number(
|
|
|
121
121
|
const BOOT_SESSION_ID = randomUUID();
|
|
122
122
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.21.3";
|
|
123
123
|
const INSTALLER_PACKAGE =
|
|
124
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
124
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.756";
|
|
125
125
|
const MCP_PACKAGE =
|
|
126
126
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.938";
|
|
127
127
|
export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
|
|
@@ -344,6 +344,45 @@ export function customerRuntimeDoctorRequired(
|
|
|
344
344
|
return action !== "ENABLE_GATEWAY" && runtimeAuthorityScope !== "CANDIDATE";
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
+
export const CUSTOMER_RUNTIME_DEFERRED_SNAPSHOT_CODE =
|
|
348
|
+
"hermes_snapshot_deferred_until_serving";
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Upgrade's BACKING_UP stage already captured the durable pre-replacement
|
|
352
|
+
* profile. Reconciliation on the replacement can dirty that profile again,
|
|
353
|
+
* but compacting and uploading a large state.db is recovery work rather than
|
|
354
|
+
* serving proof. Keep the dirty marker for the normal post-serving reconciler
|
|
355
|
+
* instead of putting two independently bounded backups in front of candidate
|
|
356
|
+
* Slack readiness.
|
|
357
|
+
*
|
|
358
|
+
* @param {"ASSIGNED" | "CANDIDATE" | null | undefined} runtimeAuthorityScope
|
|
359
|
+
*/
|
|
360
|
+
export function customerRuntimeSnapshotRequiredBeforeServing(
|
|
361
|
+
runtimeAuthorityScope
|
|
362
|
+
) {
|
|
363
|
+
return runtimeAuthorityScope !== "CANDIDATE";
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
function deferredCustomerRuntimeSnapshot() {
|
|
367
|
+
return {
|
|
368
|
+
ok: false,
|
|
369
|
+
status: "PENDING_RETRY",
|
|
370
|
+
code: CUSTOMER_RUNTIME_DEFERRED_SNAPSHOT_CODE,
|
|
371
|
+
};
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
async function flushHermesSnapshotBeforeServing({
|
|
375
|
+
client,
|
|
376
|
+
profileId,
|
|
377
|
+
profileRoot,
|
|
378
|
+
runtimeAuthorityScope,
|
|
379
|
+
}) {
|
|
380
|
+
if (!customerRuntimeSnapshotRequiredBeforeServing(runtimeAuthorityScope)) {
|
|
381
|
+
return deferredCustomerRuntimeSnapshot();
|
|
382
|
+
}
|
|
383
|
+
return await flushHermesSnapshot({ client, profileId, profileRoot });
|
|
384
|
+
}
|
|
385
|
+
|
|
347
386
|
function exactArtifact(claim, type) {
|
|
348
387
|
const artifacts = claim?.revision?.artifacts?.filter(
|
|
349
388
|
(artifact) =>
|
|
@@ -3634,6 +3673,7 @@ async function processOperation({
|
|
|
3634
3673
|
identity,
|
|
3635
3674
|
reattestAuthority,
|
|
3636
3675
|
}) {
|
|
3676
|
+
const runtimeAuthorityScope = claim.runtimeAuthority?.scope ?? null;
|
|
3637
3677
|
const trustRootPem = readFileSync(TRUST_ROOT, "utf8");
|
|
3638
3678
|
const { desired, toolInclude } = compileDesired(claim, trustRootPem);
|
|
3639
3679
|
mkdirSync(PROFILES_ROOT, { recursive: true, mode: 0o700 });
|
|
@@ -3742,10 +3782,11 @@ async function processOperation({
|
|
|
3742
3782
|
materialized.status !== "REUSED" || memoryCron.status !== "REUSED";
|
|
3743
3783
|
if (materializerChanged || defaultProfile.changed || publicSkills.changed)
|
|
3744
3784
|
markHermesSnapshotDirty(profileRoot);
|
|
3745
|
-
const memorySnapshot = await
|
|
3785
|
+
const memorySnapshot = await flushHermesSnapshotBeforeServing({
|
|
3746
3786
|
client,
|
|
3747
3787
|
profileId: desired.profileId,
|
|
3748
3788
|
profileRoot,
|
|
3789
|
+
runtimeAuthorityScope,
|
|
3749
3790
|
});
|
|
3750
3791
|
if (!memorySnapshot.ok) markHermesSnapshotDirty(profileRoot);
|
|
3751
3792
|
const prove =
|
|
@@ -3771,7 +3812,7 @@ async function processOperation({
|
|
|
3771
3812
|
runtimeConfig,
|
|
3772
3813
|
secrets,
|
|
3773
3814
|
profileDigest: pristineProfile.manifest.profileDigest,
|
|
3774
|
-
runtimeAuthorityScope
|
|
3815
|
+
runtimeAuthorityScope,
|
|
3775
3816
|
});
|
|
3776
3817
|
const customerProgramCrons = await ensureHermesCustomerProgramCrons({
|
|
3777
3818
|
profileId: desired.profileId,
|
|
@@ -3793,10 +3834,11 @@ async function processOperation({
|
|
|
3793
3834
|
});
|
|
3794
3835
|
if (!onboardingCron.ok) throw new Error(onboardingCron.code);
|
|
3795
3836
|
markHermesSnapshotDirty(profileRoot);
|
|
3796
|
-
const onboardingMemorySnapshot = await
|
|
3837
|
+
const onboardingMemorySnapshot = await flushHermesSnapshotBeforeServing({
|
|
3797
3838
|
client,
|
|
3798
3839
|
profileId: desired.profileId,
|
|
3799
3840
|
profileRoot,
|
|
3841
|
+
runtimeAuthorityScope,
|
|
3800
3842
|
});
|
|
3801
3843
|
const nativeDefaultProfileProof = proof.gatewayReadback?.running
|
|
3802
3844
|
? await proveCustomerRuntimeDefaultSkills({
|
|
@@ -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.756";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.938";
|
|
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.756" ||
|
|
1550
1550
|
pinned.mcpPackage !== "@sellable/mcp@0.1.938" ||
|
|
1551
1551
|
!Array.isArray(policy.toolInclude) ||
|
|
1552
1552
|
policy.toolInclude.length === 0 ||
|
|
@@ -282,7 +282,7 @@ function validateDesired(desired) {
|
|
|
282
282
|
desired.serviceCredentialGeneration < 1 ||
|
|
283
283
|
desired.hermesCli !== "hermes" ||
|
|
284
284
|
desired.hermesVersion !== "0.18.0" ||
|
|
285
|
-
desired.installerPackage !== "@sellable/install@0.1.
|
|
285
|
+
desired.installerPackage !== "@sellable/install@0.1.756" ||
|
|
286
286
|
desired.mcpPackage !== "@sellable/mcp@0.1.938" ||
|
|
287
287
|
!Array.isArray(desired.toolInclude) ||
|
|
288
288
|
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.756";
|
|
29
29
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.938";
|
|
30
30
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
31
31
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|