@sellable/install 0.1.717-wip.phase202.20260901.5 → 0.1.718
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 +9 -7
- package/lib/sellable-agent/fly-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +45 -22
- package/lib/sellable-agent/fly-customer-image/hermes-runs-client.mjs +25 -0
- package/lib/sellable-agent/hermes-memory-snapshot.mjs +21 -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.718
|
|
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.718" \
|
|
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.717-wip.phase202.202609
|
|
|
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.718' || 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.718', 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.718` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -756,18 +756,20 @@ function productMcpInventoryProofEnvironment() {
|
|
|
756
756
|
const root = mkdtempSync(join(SECRET_ROOT, "mcp-inventory-proof-"));
|
|
757
757
|
privateDirectory(root);
|
|
758
758
|
privateDirectory(join(root, "consumed"));
|
|
759
|
+
const configPath = join(root, "sellable-config.json");
|
|
760
|
+
atomicPrivateFile(
|
|
761
|
+
configPath,
|
|
762
|
+
`${JSON.stringify({
|
|
763
|
+
apiUrl: "https://example.invalid",
|
|
764
|
+
token: "skt_live_admin_inventory_proof_nonsecret",
|
|
765
|
+
})}\n`
|
|
766
|
+
);
|
|
759
767
|
return {
|
|
760
768
|
root,
|
|
761
769
|
env: {
|
|
762
770
|
SELLABLE_AGENT_TURN_DESCRIPTOR_PATH: join(root, "turn-context.json"),
|
|
763
771
|
SELLABLE_AGENT_TURN_CONSUMED_ROOT: join(root, "consumed"),
|
|
764
|
-
|
|
765
|
-
root,
|
|
766
|
-
"runtime-binding.json"
|
|
767
|
-
),
|
|
768
|
-
// Package inventory is intentionally unauthenticated. The canary config
|
|
769
|
-
// supplies its nonsecret human fixture; do not advertise a service-file
|
|
770
|
-
// intent before production secrets exist on a fresh replacement machine.
|
|
772
|
+
SELLABLE_CONFIG_PATH: configPath,
|
|
771
773
|
SELLABLE_AGENT_SERVICE_CREDENTIAL_FILE: "",
|
|
772
774
|
},
|
|
773
775
|
};
|
|
@@ -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.718
|
|
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
|
|
@@ -107,11 +107,10 @@ const RUNTIME_GENERATION = Number(
|
|
|
107
107
|
const BOOT_SESSION_ID = randomUUID();
|
|
108
108
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.4";
|
|
109
109
|
const INSTALLER_PACKAGE =
|
|
110
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
110
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.718";
|
|
111
111
|
const MCP_PACKAGE =
|
|
112
112
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ??
|
|
113
113
|
"@sellable/mcp@0.1.915";
|
|
114
|
-
export const ENDPOINT_MAX_CONCURRENT_RUNS = 10;
|
|
115
114
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
116
115
|
"/usr/local/share/sellable-agent/default-profile-bundle";
|
|
117
116
|
const DEFAULT_PROFILE_CRON_PYTHON = [
|
|
@@ -1395,7 +1394,7 @@ export function createCustomerEndpointRelay(options = {}) {
|
|
|
1395
1394
|
}
|
|
1396
1395
|
const activeAttempts = new Set();
|
|
1397
1396
|
let failures = 0;
|
|
1398
|
-
const maximumConcurrentRuns =
|
|
1397
|
+
const maximumConcurrentRuns = 4;
|
|
1399
1398
|
|
|
1400
1399
|
// Each redacted event is bounded to 8 KiB and the signed request is bounded
|
|
1401
1400
|
// to 64 KiB. Six events leave room for identity/signature envelope overhead
|
|
@@ -1825,25 +1824,49 @@ export function createCustomerEndpointRelay(options = {}) {
|
|
|
1825
1824
|
};
|
|
1826
1825
|
try {
|
|
1827
1826
|
let submitted;
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1827
|
+
const submitRequest = {
|
|
1828
|
+
input: claim.run.input,
|
|
1829
|
+
instructions: endpointRunInstructions(claim),
|
|
1830
|
+
conversationHistory: endpointConversationHistory(
|
|
1831
|
+
claim.run.conversationHistory
|
|
1832
|
+
),
|
|
1833
|
+
correlation: `${claim.attempt.conversationId}:${claim.attempt.runId}:${claim.attempt.id}`,
|
|
1834
|
+
};
|
|
1835
|
+
while (!submitted) {
|
|
1836
|
+
try {
|
|
1837
|
+
submitted = await runs.submit(submitRequest, {
|
|
1838
|
+
signal: controller.signal,
|
|
1839
|
+
});
|
|
1840
|
+
} catch (error) {
|
|
1841
|
+
if (error?.classification === "SUBMIT_AMBIGUOUS") {
|
|
1842
|
+
await complete(claim, identity, {
|
|
1843
|
+
attemptStatus: "UNCERTAIN",
|
|
1844
|
+
status: "UNCERTAIN",
|
|
1845
|
+
});
|
|
1846
|
+
return { ok: false, code: "SUBMIT_AMBIGUOUS" };
|
|
1847
|
+
}
|
|
1848
|
+
if (error?.classification !== "SUBMIT_NOT_ADMITTED") throw error;
|
|
1849
|
+
const remainingMs = deadlineMs - now().getTime();
|
|
1850
|
+
if (deadlineExpired || remainingMs <= 0) {
|
|
1851
|
+
await complete(claim, identity, {
|
|
1852
|
+
attemptStatus: "TIMED_OUT",
|
|
1853
|
+
status: "TIMED_OUT",
|
|
1854
|
+
});
|
|
1855
|
+
return { ok: false, code: "SUBMIT_NOT_ADMITTED_TIMEOUT" };
|
|
1856
|
+
}
|
|
1857
|
+
const retryAfterMs = Number.isFinite(error.retryAfterMs)
|
|
1858
|
+
? Math.max(100, Math.min(5_000, error.retryAfterMs))
|
|
1859
|
+
: 1_000;
|
|
1860
|
+
await abortablePause(
|
|
1861
|
+
Math.min(retryAfterMs, remainingMs),
|
|
1862
|
+
controller.signal,
|
|
1863
|
+
sleepImpl
|
|
1864
|
+
);
|
|
1865
|
+
if (heartbeatFailure) throw heartbeatFailure;
|
|
1866
|
+
if (controller.signal.aborted) {
|
|
1867
|
+
throw controller.signal.reason ?? new Error("endpoint_run_aborted");
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1847
1870
|
}
|
|
1848
1871
|
held.nativeRunId = submitted.runId;
|
|
1849
1872
|
await append(
|
|
@@ -446,6 +446,25 @@ function transportFailure(code, error) {
|
|
|
446
446
|
return result;
|
|
447
447
|
}
|
|
448
448
|
|
|
449
|
+
function submitNotAdmitted(response, value) {
|
|
450
|
+
const retryAfter = response.headers?.get?.("retry-after") ?? "";
|
|
451
|
+
const retryAfterSeconds =
|
|
452
|
+
retryAfter.trim().length > 0 ? Number(retryAfter) : Number.NaN;
|
|
453
|
+
const retryAfterMs = Number.isFinite(retryAfterSeconds)
|
|
454
|
+
? Math.max(100, Math.min(5_000, retryAfterSeconds * 1_000))
|
|
455
|
+
: 1_000;
|
|
456
|
+
const result = new Error("SUBMIT_NOT_ADMITTED");
|
|
457
|
+
result.code = "SUBMIT_NOT_ADMITTED";
|
|
458
|
+
result.classification = "SUBMIT_NOT_ADMITTED";
|
|
459
|
+
result.certainty = "NOT_ACCEPTED";
|
|
460
|
+
result.nativeStatus = response.status;
|
|
461
|
+
result.retryAfterMs = retryAfterMs;
|
|
462
|
+
result.evidence = Object.freeze({
|
|
463
|
+
digest: sha256(stableJson(value)),
|
|
464
|
+
});
|
|
465
|
+
return result;
|
|
466
|
+
}
|
|
467
|
+
|
|
449
468
|
/** @param {any} options */
|
|
450
469
|
export function createHermesRunsClient(options = {}) {
|
|
451
470
|
const {
|
|
@@ -494,6 +513,12 @@ export function createHermesRunsClient(options = {}) {
|
|
|
494
513
|
throw transportFailure("SUBMIT_AMBIGUOUS", error);
|
|
495
514
|
}
|
|
496
515
|
const value = await readBounded(response);
|
|
516
|
+
// Hermes 0.20.4 emits 429 for its concurrency limiter and 503 while the
|
|
517
|
+
// gateway is draining. Both responses occur before it allocates a run,
|
|
518
|
+
// so retrying the identical request cannot duplicate a native attempt.
|
|
519
|
+
if (response.status === 429 || response.status === 503) {
|
|
520
|
+
throw submitNotAdmitted(response, value);
|
|
521
|
+
}
|
|
497
522
|
if (
|
|
498
523
|
response.status !== 202 ||
|
|
499
524
|
!exactObject(value) ||
|
|
@@ -1155,6 +1155,26 @@ function stageHermesUserState({ profileId, profileRoot, hermesRoot }) {
|
|
|
1155
1155
|
for (const name of HERMES_SNAPSHOT_USER_STATE_ENTRIES) {
|
|
1156
1156
|
const source = join(profileRoot, name);
|
|
1157
1157
|
if (existsSync(source)) {
|
|
1158
|
+
if (name === "SOUL.md") {
|
|
1159
|
+
const sourceStat = lstatSync(source);
|
|
1160
|
+
if (
|
|
1161
|
+
sourceStat.isSymbolicLink() ||
|
|
1162
|
+
!sourceStat.isFile() ||
|
|
1163
|
+
sourceStat.nlink !== 1
|
|
1164
|
+
) {
|
|
1165
|
+
throw new Error("hermes_snapshot_soul_metadata_rejected");
|
|
1166
|
+
}
|
|
1167
|
+
const target = join(stagedProfileRoot, name);
|
|
1168
|
+
// Hermes rejects the live SOUL when its link count is not exactly one.
|
|
1169
|
+
// Snapshot compaction can run for minutes, so a staged hard link would
|
|
1170
|
+
// make otherwise healthy Agent turns fail for the whole capture window.
|
|
1171
|
+
copyFileSync(source, target, constants.COPYFILE_EXCL);
|
|
1172
|
+
chmodSync(target, 0o600);
|
|
1173
|
+
if (regularFile(target).nlink !== 1) {
|
|
1174
|
+
throw new Error("hermes_snapshot_soul_metadata_rejected");
|
|
1175
|
+
}
|
|
1176
|
+
continue;
|
|
1177
|
+
}
|
|
1158
1178
|
// state.db is copied online and compacted after the rest of the staged
|
|
1159
1179
|
// tree is assembled. Never hard-link this one file: pruning the staged
|
|
1160
1180
|
// recovery copy must be physically incapable of touching the live DB.
|
|
@@ -2190,7 +2210,7 @@ export async function captureHermesBackup({
|
|
|
2190
2210
|
} catch (error) {
|
|
2191
2211
|
const code = error instanceof Error ? error.message : "";
|
|
2192
2212
|
return failed(
|
|
2193
|
-
/^hermes_snapshot_(?:external_state|plugin_data|portable_config|dependency|state_db)/.test(
|
|
2213
|
+
/^hermes_snapshot_(?:external_state|plugin_data|portable_config|dependency|state_db|soul_metadata)/.test(
|
|
2194
2214
|
code
|
|
2195
2215
|
)
|
|
2196
2216
|
? code
|
|
@@ -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.718";
|
|
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}$/;
|
|
@@ -1547,7 +1547,7 @@ 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.
|
|
1550
|
+
"@sellable/install@0.1.718" ||
|
|
1551
1551
|
pinned.mcpPackage !== "@sellable/mcp@0.1.915" ||
|
|
1552
1552
|
!Array.isArray(policy.toolInclude) ||
|
|
1553
1553
|
policy.toolInclude.length === 0 ||
|
|
@@ -283,7 +283,7 @@ function validateDesired(desired) {
|
|
|
283
283
|
desired.hermesCli !== "hermes" ||
|
|
284
284
|
desired.hermesVersion !== "0.18.0" ||
|
|
285
285
|
desired.installerPackage !==
|
|
286
|
-
"@sellable/install@0.1.
|
|
286
|
+
"@sellable/install@0.1.718" ||
|
|
287
287
|
desired.mcpPackage !== "@sellable/mcp@0.1.915" ||
|
|
288
288
|
!Array.isArray(desired.toolInclude) ||
|
|
289
289
|
desired.toolInclude.length === 0 ||
|
|
@@ -26,7 +26,7 @@ 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.
|
|
29
|
+
"@sellable/install@0.1.718";
|
|
30
30
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.915";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|