@sellable/install 0.1.723 → 0.1.724-wip.onboarding.20260909.1
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 +18 -2
- 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 +4 -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.724-wip.onboarding.20260909.1
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.915
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-+WdyO3WxQ9U7fHMvxBojPRDIZun/INy9mKOz/A1IcBFEWXFkpPooT0yMUzY1qCYcewTM1AUxP3p2QOtsxRIYQA==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.724-wip.onboarding.20260909.1" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.915" \
|
|
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.722-wip.hermes.20260909
|
|
|
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.724-wip.onboarding.20260909.1' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.915') 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.724-wip.onboarding.20260909.1', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.915', 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.724-wip.onboarding.20260909.1` 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.915
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-+WdyO3WxQ9U7fHMvxBojPRDIZun/INy9mKOz/A1IcBFEWXFkpPooT0yMUzY1qCYcewTM1AUxP3p2QOtsxRIYQA==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.724-wip.onboarding.20260909.1
|
|
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
|
|
@@ -51,6 +51,7 @@ import {
|
|
|
51
51
|
prepareSoulLockRoot,
|
|
52
52
|
} from "../fly-soul-bridge.mjs";
|
|
53
53
|
import {
|
|
54
|
+
ensureHermesFirstCampaignOnboardingCron,
|
|
54
55
|
ensureHermesSnapshotCron,
|
|
55
56
|
markHermesSnapshotDirty,
|
|
56
57
|
migrateLegacyHermesUserState,
|
|
@@ -107,7 +108,7 @@ const RUNTIME_GENERATION = Number(
|
|
|
107
108
|
const BOOT_SESSION_ID = randomUUID();
|
|
108
109
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.21.1";
|
|
109
110
|
const INSTALLER_PACKAGE =
|
|
110
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
111
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.724-wip.onboarding.20260909.1";
|
|
111
112
|
const MCP_PACKAGE =
|
|
112
113
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.915";
|
|
113
114
|
export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
|
|
@@ -3408,6 +3409,7 @@ async function processOperation({
|
|
|
3408
3409
|
profileId: desired.profileId,
|
|
3409
3410
|
profileRoot,
|
|
3410
3411
|
});
|
|
3412
|
+
if (!memorySnapshot.ok) markHermesSnapshotDirty(profileRoot);
|
|
3411
3413
|
const prove =
|
|
3412
3414
|
claim.operation.action === "INSTANTIATE"
|
|
3413
3415
|
? proveProvisionedApplication
|
|
@@ -3419,6 +3421,20 @@ async function processOperation({
|
|
|
3419
3421
|
secrets,
|
|
3420
3422
|
profileDigest: pristineProfile.manifest.profileDigest,
|
|
3421
3423
|
});
|
|
3424
|
+
const onboardingCron = await ensureHermesFirstCampaignOnboardingCron({
|
|
3425
|
+
profileId: desired.profileId,
|
|
3426
|
+
profileRoot,
|
|
3427
|
+
hermesRoot: DATA_ROOT,
|
|
3428
|
+
workspaceId: desired.workspaceId,
|
|
3429
|
+
channelId: desired.defaultChannelId,
|
|
3430
|
+
});
|
|
3431
|
+
if (!onboardingCron.ok) throw new Error(onboardingCron.code);
|
|
3432
|
+
markHermesSnapshotDirty(profileRoot);
|
|
3433
|
+
const onboardingMemorySnapshot = await flushHermesSnapshot({
|
|
3434
|
+
client,
|
|
3435
|
+
profileId: desired.profileId,
|
|
3436
|
+
profileRoot,
|
|
3437
|
+
});
|
|
3422
3438
|
const nativeDefaultProfileProof = proof.gatewayReadback?.running
|
|
3423
3439
|
? proveDefaultProfileNativeSkills({
|
|
3424
3440
|
actions: defaultProfile.actions,
|
|
@@ -3431,7 +3447,7 @@ async function processOperation({
|
|
|
3431
3447
|
exchange,
|
|
3432
3448
|
desired,
|
|
3433
3449
|
proof,
|
|
3434
|
-
memorySnapshot,
|
|
3450
|
+
memorySnapshot: onboardingMemorySnapshot,
|
|
3435
3451
|
observedSoulRawSha256,
|
|
3436
3452
|
activeProjection,
|
|
3437
3453
|
nativeDefaultProfileProof,
|
|
@@ -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.724-wip.onboarding.20260909.1";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.915";
|
|
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.724-wip.onboarding.20260909.1" ||
|
|
1550
1550
|
pinned.mcpPackage !== "@sellable/mcp@0.1.915" ||
|
|
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.724-wip.onboarding.20260909.1" ||
|
|
286
286
|
desired.mcpPackage !== "@sellable/mcp@0.1.915" ||
|
|
287
287
|
!Array.isArray(desired.toolInclude) ||
|
|
288
288
|
desired.toolInclude.length === 0 ||
|
|
@@ -2552,6 +2552,9 @@ function nativeSlackCustomerFiles(desired, soulBytes = desired.soul) {
|
|
|
2552
2552
|
optionalCapabilities: [],
|
|
2553
2553
|
runtimeInstallAllowed: false,
|
|
2554
2554
|
},
|
|
2555
|
+
cron: {
|
|
2556
|
+
wrap_response: false,
|
|
2557
|
+
},
|
|
2555
2558
|
model: {
|
|
2556
2559
|
provider: FLY_CUSTOMER_MODEL_PROVIDER,
|
|
2557
2560
|
default: FLY_CUSTOMER_MODEL_ID,
|
|
@@ -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.724-wip.onboarding.20260909.1";
|
|
29
29
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.915";
|
|
30
30
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
31
31
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|