@sellable/install 0.1.705 → 0.1.707
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 +38 -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.707
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.911
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-HBm62YPW1kv836X+ZYf748g8SLbfEdrp4lAbhkQjwsTcJm9nxHu0qa346F/N2xTgsEqMGVk8L0B4sA5rv0TMCg==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.707" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.911" \
|
|
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.705" \
|
|
|
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.707' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.911') 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.707', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.911', 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.707` 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.911
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-HBm62YPW1kv836X+ZYf748g8SLbfEdrp4lAbhkQjwsTcJm9nxHu0qa346F/N2xTgsEqMGVk8L0B4sA5rv0TMCg==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.707
|
|
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
|
|
@@ -105,7 +105,7 @@ const RUNTIME_GENERATION = Number(
|
|
|
105
105
|
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
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
108
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.707";
|
|
109
109
|
const MCP_PACKAGE =
|
|
110
110
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.911";
|
|
111
111
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
@@ -1013,7 +1013,15 @@ function endpointCompletionBody({
|
|
|
1013
1013
|
|
|
1014
1014
|
function endpointProductProjection(productExecution, output) {
|
|
1015
1015
|
if (productExecution == null) return { ok: true, completion: {} };
|
|
1016
|
-
|
|
1016
|
+
let proposal = output;
|
|
1017
|
+
if (typeof output === "string") {
|
|
1018
|
+
try {
|
|
1019
|
+
proposal = JSON.parse(output);
|
|
1020
|
+
} catch {
|
|
1021
|
+
return { ok: false };
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
const message = proposal?.message;
|
|
1017
1025
|
const candidate = message?.candidate;
|
|
1018
1026
|
const subject = message?.subject;
|
|
1019
1027
|
const hasSubject = typeof subject === "string";
|
|
@@ -1044,6 +1052,32 @@ function endpointProductProjection(productExecution, output) {
|
|
|
1044
1052
|
};
|
|
1045
1053
|
}
|
|
1046
1054
|
|
|
1055
|
+
function endpointRunInstructions(claim) {
|
|
1056
|
+
const productExecution = claim.run.productExecution;
|
|
1057
|
+
if (productExecution == null) return claim.revision.prompt;
|
|
1058
|
+
if (
|
|
1059
|
+
!productExecution ||
|
|
1060
|
+
typeof productExecution !== "object" ||
|
|
1061
|
+
Array.isArray(productExecution) ||
|
|
1062
|
+
!ENDPOINT_DIGEST.test(productExecution.contractDigest ?? "") ||
|
|
1063
|
+
!["OPENER", "REPLY", "FOLLOW_UP"].includes(productExecution.workKind) ||
|
|
1064
|
+
typeof productExecution.subjectRequired !== "boolean"
|
|
1065
|
+
) {
|
|
1066
|
+
throw new Error("customer_endpoint_product_contract_rejected");
|
|
1067
|
+
}
|
|
1068
|
+
const subjectRule = productExecution.subjectRequired
|
|
1069
|
+
? "subjectRequired=true: include message.subject as a non-empty string."
|
|
1070
|
+
: "subjectRequired=false: omit message.subject.";
|
|
1071
|
+
return [
|
|
1072
|
+
claim.revision.prompt,
|
|
1073
|
+
"",
|
|
1074
|
+
"## Server-owned product output requirement",
|
|
1075
|
+
`workKind=${productExecution.workKind}`,
|
|
1076
|
+
subjectRule,
|
|
1077
|
+
"This requirement is authoritative for the final message object.",
|
|
1078
|
+
].join("\n");
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1047
1081
|
function endpointPendingControl(value) {
|
|
1048
1082
|
if (value === null) return null;
|
|
1049
1083
|
const approvalKeys = [
|
|
@@ -1560,7 +1594,7 @@ export function createCustomerEndpointRelay(options = {}) {
|
|
|
1560
1594
|
submitted = await runs.submit(
|
|
1561
1595
|
{
|
|
1562
1596
|
input: claim.run.input,
|
|
1563
|
-
instructions: claim
|
|
1597
|
+
instructions: endpointRunInstructions(claim),
|
|
1564
1598
|
conversationHistory: endpointConversationHistory(
|
|
1565
1599
|
claim.run.conversationHistory
|
|
1566
1600
|
),
|
|
@@ -1663,7 +1697,7 @@ export function createCustomerEndpointRelay(options = {}) {
|
|
|
1663
1697
|
);
|
|
1664
1698
|
if (!productProjection.ok) {
|
|
1665
1699
|
await complete(claim, identity, {
|
|
1666
|
-
attemptStatus: "
|
|
1700
|
+
attemptStatus: "SUCCEEDED",
|
|
1667
1701
|
status: "OUTPUT_CONTRACT_FAILED",
|
|
1668
1702
|
});
|
|
1669
1703
|
return { ok: false, code: "OUTPUT_CONTRACT_FAILED" };
|
|
@@ -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.707";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.911";
|
|
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.707" ||
|
|
1551
1551
|
pinned.mcpPackage !== "@sellable/mcp@0.1.911" ||
|
|
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.707" ||
|
|
287
287
|
desired.mcpPackage !== "@sellable/mcp@0.1.911" ||
|
|
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.707";
|
|
30
30
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.911";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|