@sellable/install 0.1.763 → 0.1.765
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-admin-image/admin-runtime.mjs +4 -1
- 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/fly-soul-bridge.mjs +11 -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.765
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.941
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.765" \
|
|
12
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}" \
|
|
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.763" \
|
|
|
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.765' || 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.765', 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.765` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -1173,6 +1173,7 @@ async function materializeAdminProfile({
|
|
|
1173
1173
|
productConfigPath,
|
|
1174
1174
|
soul,
|
|
1175
1175
|
slack = null,
|
|
1176
|
+
customerProgram,
|
|
1176
1177
|
agentServiceEnv = {},
|
|
1177
1178
|
runPhase = async (_phase, work) => work(),
|
|
1178
1179
|
}) {
|
|
@@ -1423,7 +1424,7 @@ async function materializeAdminProfile({
|
|
|
1423
1424
|
hermesRoot: DATA_ROOT,
|
|
1424
1425
|
workspaceId: agentServiceEnv.SELLABLE_AGENT_WORKSPACE_ID,
|
|
1425
1426
|
channelId: slack.primaryChannel.id,
|
|
1426
|
-
timezone:
|
|
1427
|
+
timezone: customerProgram.timezone,
|
|
1427
1428
|
apiUrl: ORIGIN,
|
|
1428
1429
|
authorityPath: managedAuthPath(profile),
|
|
1429
1430
|
})
|
|
@@ -3592,6 +3593,7 @@ export async function runAdminCanary() {
|
|
|
3592
3593
|
byteLength: soulBytes.byteLength,
|
|
3593
3594
|
},
|
|
3594
3595
|
agentServiceEnv: agentServiceEnvironment,
|
|
3596
|
+
customerProgram: canaryClaim.runtimeContract.customerProgram,
|
|
3595
3597
|
});
|
|
3596
3598
|
const soulProof = observeProfileSoul(profile.profile, {
|
|
3597
3599
|
dataRoot: DATA_ROOT,
|
|
@@ -4145,6 +4147,7 @@ async function runAdminProduction() {
|
|
|
4145
4147
|
productConfigPath: installed.productConfigPath,
|
|
4146
4148
|
soul: exactSoul(claim),
|
|
4147
4149
|
slack: nativeSlackProfileInput(claim, installed),
|
|
4150
|
+
customerProgram: claim.runtimeContract.customerProgram,
|
|
4148
4151
|
agentServiceEnv: adminAgentServiceEnvironment(claim),
|
|
4149
4152
|
runPhase: phaseTelemetry.run,
|
|
4150
4153
|
});
|
|
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
|
|
|
8
8
|
|
|
9
9
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.941
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-Dhi+r50kwZa0E6iskB7dmDM/kCe9woEExLXxfLg8jf9LSKj86V5AiC0jhpS7euoo/lvY5e9m2a0BlTV9wqFxRQ==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.765
|
|
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.765";
|
|
126
126
|
const MCP_PACKAGE =
|
|
127
127
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.941";
|
|
128
128
|
export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
|
|
@@ -1091,7 +1091,13 @@ function recoverJournal(paths, acknowledgedGeneration, effectiveLoader) {
|
|
|
1091
1091
|
marker.generation !== journal.generation ||
|
|
1092
1092
|
marker.rawFileSha256 !== journal.nextRawFileSha256
|
|
1093
1093
|
) {
|
|
1094
|
-
|
|
1094
|
+
// Phase 207 execution 2f07cd28 retained a proven save journal after a
|
|
1095
|
+
// later loader failure invalidated the marker. Recover from the actual
|
|
1096
|
+
// canonical file and installed loader, never from journal claims alone.
|
|
1097
|
+
const proof = proveCanonical(paths, current, effectiveLoader);
|
|
1098
|
+
if (proof.effectiveSha256 !== journal.effectiveSha256)
|
|
1099
|
+
fail("soul_recovery_conflict");
|
|
1100
|
+
writeProofMarker(paths, { ...proof, generation: journal.generation });
|
|
1095
1101
|
}
|
|
1096
1102
|
if (acknowledgedGeneration === journal.generation) {
|
|
1097
1103
|
journal.phase = "acked";
|
|
@@ -1174,9 +1180,7 @@ function executeLocked(
|
|
|
1174
1180
|
} catch (error) {
|
|
1175
1181
|
if (
|
|
1176
1182
|
error instanceof FlySoulBridgeError &&
|
|
1177
|
-
|
|
1178
|
-
error.code
|
|
1179
|
-
)
|
|
1183
|
+
error.code === "soul_loader_effective_mismatch"
|
|
1180
1184
|
) {
|
|
1181
1185
|
markUnproven(paths);
|
|
1182
1186
|
return {
|
|
@@ -1189,6 +1193,9 @@ function executeLocked(
|
|
|
1189
1193
|
gatewayProven,
|
|
1190
1194
|
};
|
|
1191
1195
|
}
|
|
1196
|
+
// An unavailable loader supplies no new integrity evidence. Return its
|
|
1197
|
+
// failure without erasing an earlier proof; the gateway still checks
|
|
1198
|
+
// the canonical file hash, and the next read must prove the loader again.
|
|
1192
1199
|
throw error;
|
|
1193
1200
|
}
|
|
1194
1201
|
const marker = readJson(paths.proofPath, 8 * 1024);
|
|
@@ -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.765";
|
|
42
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}$/;
|
|
@@ -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.765" ||
|
|
1550
1550
|
pinned.mcpPackage !== "@sellable/mcp@0.1.941" ||
|
|
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.765" ||
|
|
316
316
|
desired.mcpPackage !== "@sellable/mcp@0.1.941" ||
|
|
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.765";
|
|
29
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
|