@sellable/install 0.1.708 → 0.1.710
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 +202 -7
- 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 +32 -9
- 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.710
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.913
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-ZDVuDrBwtlXeEb8bsIdyhASrVV+woJzgzzRNiDncAm7pOrswZhgAKgrku1nnVI+NzgTXnGYaYWBTlcpcDmtgEA==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.710" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.913" \
|
|
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.708" \
|
|
|
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.710' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.913') 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.710', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.913', 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.710` 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.913
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-ZDVuDrBwtlXeEb8bsIdyhASrVV+woJzgzzRNiDncAm7pOrswZhgAKgrku1nnVI+NzgTXnGYaYWBTlcpcDmtgEA==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.710
|
|
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.710";
|
|
109
109
|
const MCP_PACKAGE =
|
|
110
110
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.913";
|
|
111
111
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
@@ -1013,6 +1013,16 @@ function endpointCompletionBody({
|
|
|
1013
1013
|
|
|
1014
1014
|
function endpointProductProjection(productExecution, output) {
|
|
1015
1015
|
if (productExecution == null) return { ok: true, completion: {} };
|
|
1016
|
+
if (
|
|
1017
|
+
!productExecution ||
|
|
1018
|
+
typeof productExecution !== "object" ||
|
|
1019
|
+
Array.isArray(productExecution) ||
|
|
1020
|
+
!ENDPOINT_DIGEST.test(productExecution.contractDigest ?? "") ||
|
|
1021
|
+
!["OPENER", "REPLY", "FOLLOW_UP"].includes(productExecution.workKind) ||
|
|
1022
|
+
typeof productExecution.subjectRequired !== "boolean"
|
|
1023
|
+
) {
|
|
1024
|
+
return { ok: false };
|
|
1025
|
+
}
|
|
1016
1026
|
let proposal = output;
|
|
1017
1027
|
if (typeof output === "string") {
|
|
1018
1028
|
try {
|
|
@@ -1021,17 +1031,191 @@ function endpointProductProjection(productExecution, output) {
|
|
|
1021
1031
|
return { ok: false };
|
|
1022
1032
|
}
|
|
1023
1033
|
}
|
|
1034
|
+
if (
|
|
1035
|
+
productExecution.nativeProposalSchemaVersion ===
|
|
1036
|
+
"sellable-product-generation-semantic-proposal/v1"
|
|
1037
|
+
) {
|
|
1038
|
+
if (
|
|
1039
|
+
!proposal ||
|
|
1040
|
+
typeof proposal !== "object" ||
|
|
1041
|
+
Array.isArray(proposal) ||
|
|
1042
|
+
Object.keys(proposal).length !== 1 ||
|
|
1043
|
+
!Object.hasOwn(proposal, "proposal")
|
|
1044
|
+
) {
|
|
1045
|
+
return { ok: false };
|
|
1046
|
+
}
|
|
1047
|
+
const semantic = proposal.proposal;
|
|
1048
|
+
if (
|
|
1049
|
+
!semantic ||
|
|
1050
|
+
typeof semantic !== "object" ||
|
|
1051
|
+
Array.isArray(semantic) ||
|
|
1052
|
+
semantic.schemaVersion !== productExecution.nativeProposalSchemaVersion ||
|
|
1053
|
+
!["DRAFT", "SUPPRESS"].includes(semantic.outcome) ||
|
|
1054
|
+
!Array.isArray(semantic.evidence) ||
|
|
1055
|
+
semantic.evidence.length > 64 ||
|
|
1056
|
+
!semantic.evidence.every(
|
|
1057
|
+
(row) =>
|
|
1058
|
+
row &&
|
|
1059
|
+
typeof row === "object" &&
|
|
1060
|
+
!Array.isArray(row) &&
|
|
1061
|
+
Object.keys(row).length === 1 &&
|
|
1062
|
+
typeof row.summary === "string" &&
|
|
1063
|
+
row.summary.length >= 1 &&
|
|
1064
|
+
row.summary.length <= 4_096
|
|
1065
|
+
) ||
|
|
1066
|
+
typeof semantic.reasoning !== "string" ||
|
|
1067
|
+
semantic.reasoning.length < 1 ||
|
|
1068
|
+
semantic.reasoning.length > 4_096
|
|
1069
|
+
) {
|
|
1070
|
+
return { ok: false };
|
|
1071
|
+
}
|
|
1072
|
+
if (semantic.outcome === "SUPPRESS") {
|
|
1073
|
+
if (
|
|
1074
|
+
Object.keys(semantic).sort().join(",") !==
|
|
1075
|
+
"evidence,outcome,reasoning,schemaVersion"
|
|
1076
|
+
) {
|
|
1077
|
+
return { ok: false };
|
|
1078
|
+
}
|
|
1079
|
+
return {
|
|
1080
|
+
ok: true,
|
|
1081
|
+
completion: {
|
|
1082
|
+
productContractDigest: productExecution.contractDigest,
|
|
1083
|
+
productProjectedOutput: null,
|
|
1084
|
+
productProjectedOutputDigest: null,
|
|
1085
|
+
},
|
|
1086
|
+
};
|
|
1087
|
+
}
|
|
1088
|
+
if (
|
|
1089
|
+
Object.keys(semantic).sort().join(",") !==
|
|
1090
|
+
"evidence,message,outcome,reasoning,schemaVersion"
|
|
1091
|
+
) {
|
|
1092
|
+
return { ok: false };
|
|
1093
|
+
}
|
|
1094
|
+
const message = semantic.message;
|
|
1095
|
+
const candidate = message?.candidate;
|
|
1096
|
+
const subject = message?.subject;
|
|
1097
|
+
const hasSubject = typeof subject === "string";
|
|
1098
|
+
const expectedMessageKeys = productExecution.subjectRequired
|
|
1099
|
+
? "candidate,subject"
|
|
1100
|
+
: "candidate";
|
|
1101
|
+
if (
|
|
1102
|
+
!message ||
|
|
1103
|
+
typeof message !== "object" ||
|
|
1104
|
+
Array.isArray(message) ||
|
|
1105
|
+
Object.keys(message).sort().join(",") !== expectedMessageKeys ||
|
|
1106
|
+
typeof candidate !== "string" ||
|
|
1107
|
+
candidate.length < 1 ||
|
|
1108
|
+
candidate.length > 32_768 ||
|
|
1109
|
+
hasSubject !== productExecution.subjectRequired ||
|
|
1110
|
+
(hasSubject && (subject.length < 1 || subject.length > 512)) ||
|
|
1111
|
+
/\[SUPPRESS\]|\bSUPPRESS\b|\b(?:no|nothing)\s+truthful\b|\b(?:do|should)\s+not\s+send\b/i.test(
|
|
1112
|
+
`${subject ?? ""}\n${candidate}`
|
|
1113
|
+
)
|
|
1114
|
+
) {
|
|
1115
|
+
return { ok: false };
|
|
1116
|
+
}
|
|
1117
|
+
const projectedOutput = productExecution.subjectRequired
|
|
1118
|
+
? { subject, body: candidate }
|
|
1119
|
+
: { body: candidate };
|
|
1120
|
+
return {
|
|
1121
|
+
ok: true,
|
|
1122
|
+
completion: {
|
|
1123
|
+
productContractDigest: productExecution.contractDigest,
|
|
1124
|
+
productProjectedOutput: projectedOutput,
|
|
1125
|
+
productProjectedOutputDigest:
|
|
1126
|
+
endpointCanonicalOutputDigest(projectedOutput),
|
|
1127
|
+
},
|
|
1128
|
+
};
|
|
1129
|
+
}
|
|
1130
|
+
if (
|
|
1131
|
+
!proposal ||
|
|
1132
|
+
typeof proposal !== "object" ||
|
|
1133
|
+
Array.isArray(proposal) ||
|
|
1134
|
+
proposal.schemaVersion !== productExecution?.nativeProposalSchemaVersion
|
|
1135
|
+
) {
|
|
1136
|
+
return { ok: false };
|
|
1137
|
+
}
|
|
1138
|
+
if (proposal.schemaVersion === "reply-agent-native-proposal.v2") {
|
|
1139
|
+
const allowedKeys = new Set([
|
|
1140
|
+
"schemaVersion",
|
|
1141
|
+
"outcome",
|
|
1142
|
+
"evidence",
|
|
1143
|
+
"reasoning",
|
|
1144
|
+
"actions",
|
|
1145
|
+
"message",
|
|
1146
|
+
]);
|
|
1147
|
+
if (
|
|
1148
|
+
Object.keys(proposal).some((key) => !allowedKeys.has(key)) ||
|
|
1149
|
+
!Array.isArray(proposal.evidence) ||
|
|
1150
|
+
typeof proposal.reasoning !== "string" ||
|
|
1151
|
+
proposal.reasoning.length < 1 ||
|
|
1152
|
+
proposal.reasoning.length > 4_096
|
|
1153
|
+
) {
|
|
1154
|
+
return { ok: false };
|
|
1155
|
+
}
|
|
1156
|
+
if (proposal.outcome === "SUPPRESS") {
|
|
1157
|
+
if (
|
|
1158
|
+
Object.hasOwn(proposal, "actions") ||
|
|
1159
|
+
Object.hasOwn(proposal, "message")
|
|
1160
|
+
) {
|
|
1161
|
+
return { ok: false };
|
|
1162
|
+
}
|
|
1163
|
+
return {
|
|
1164
|
+
ok: true,
|
|
1165
|
+
completion: {
|
|
1166
|
+
productContractDigest: productExecution.contractDigest,
|
|
1167
|
+
productProjectedOutput: null,
|
|
1168
|
+
productProjectedOutputDigest: null,
|
|
1169
|
+
},
|
|
1170
|
+
};
|
|
1171
|
+
}
|
|
1172
|
+
const message = proposal.message;
|
|
1173
|
+
const candidate = message?.candidate;
|
|
1174
|
+
const subject = message?.subject;
|
|
1175
|
+
const hasSubject = typeof subject === "string";
|
|
1176
|
+
const actions = proposal.actions;
|
|
1177
|
+
const action = Array.isArray(actions) ? actions[0] : null;
|
|
1178
|
+
const projectedArguments = productExecution.subjectRequired
|
|
1179
|
+
? { subject, body: candidate }
|
|
1180
|
+
: { body: candidate };
|
|
1181
|
+
if (
|
|
1182
|
+
proposal.outcome !== "DRAFT" ||
|
|
1183
|
+
!message ||
|
|
1184
|
+
typeof message !== "object" ||
|
|
1185
|
+
Array.isArray(message) ||
|
|
1186
|
+
typeof candidate !== "string" ||
|
|
1187
|
+
candidate.length < 1 ||
|
|
1188
|
+
hasSubject !== productExecution.subjectRequired ||
|
|
1189
|
+
!Array.isArray(actions) ||
|
|
1190
|
+
actions.length !== 1 ||
|
|
1191
|
+
!action ||
|
|
1192
|
+
action.actionKind !== "SEND_MESSAGE" ||
|
|
1193
|
+
action.status !== "PROPOSED" ||
|
|
1194
|
+
action.argumentHash !== endpointCanonicalOutputDigest(projectedArguments) ||
|
|
1195
|
+
/\[SUPPRESS\]|\bSUPPRESS\b|\b(?:no|nothing)\s+truthful\b|\b(?:do|should)\s+not\s+send\b/i.test(
|
|
1196
|
+
`${subject ?? ""}\n${candidate}`
|
|
1197
|
+
)
|
|
1198
|
+
) {
|
|
1199
|
+
return { ok: false };
|
|
1200
|
+
}
|
|
1201
|
+
return {
|
|
1202
|
+
ok: true,
|
|
1203
|
+
completion: {
|
|
1204
|
+
productContractDigest: productExecution.contractDigest,
|
|
1205
|
+
productProjectedOutput: projectedArguments,
|
|
1206
|
+
productProjectedOutputDigest:
|
|
1207
|
+
endpointCanonicalOutputDigest(projectedArguments),
|
|
1208
|
+
},
|
|
1209
|
+
};
|
|
1210
|
+
}
|
|
1211
|
+
if (proposal.schemaVersion !== "reply-agent-native-proposal.v1") {
|
|
1212
|
+
return { ok: false };
|
|
1213
|
+
}
|
|
1024
1214
|
const message = proposal?.message;
|
|
1025
1215
|
const candidate = message?.candidate;
|
|
1026
1216
|
const subject = message?.subject;
|
|
1027
1217
|
const hasSubject = typeof subject === "string";
|
|
1028
1218
|
if (
|
|
1029
|
-
!productExecution ||
|
|
1030
|
-
typeof productExecution !== "object" ||
|
|
1031
|
-
Array.isArray(productExecution) ||
|
|
1032
|
-
!ENDPOINT_DIGEST.test(productExecution.contractDigest ?? "") ||
|
|
1033
|
-
!["OPENER", "REPLY", "FOLLOW_UP"].includes(productExecution.workKind) ||
|
|
1034
|
-
typeof productExecution.subjectRequired !== "boolean" ||
|
|
1035
1219
|
typeof candidate !== "string" ||
|
|
1036
1220
|
candidate.length < 1 ||
|
|
1037
1221
|
hasSubject !== productExecution.subjectRequired
|
|
@@ -1068,11 +1252,22 @@ function endpointRunInstructions(claim) {
|
|
|
1068
1252
|
const subjectRule = productExecution.subjectRequired
|
|
1069
1253
|
? "subjectRequired=true: include message.subject as a non-empty string."
|
|
1070
1254
|
: "subjectRequired=false: omit message.subject.";
|
|
1255
|
+
const semanticRequirement =
|
|
1256
|
+
productExecution.nativeProposalSchemaVersion ===
|
|
1257
|
+
"sellable-product-generation-semantic-proposal/v1"
|
|
1258
|
+
? [
|
|
1259
|
+
"Return one semantic-only JSON envelope with exactly one top-level field: proposal.",
|
|
1260
|
+
"proposal must contain schemaVersion=sellable-product-generation-semantic-proposal/v1, outcome=DRAFT|SUPPRESS, evidence=[{summary}], and reasoning.",
|
|
1261
|
+
"For DRAFT include message.candidate and follow the subject rule below. For SUPPRESS omit message.",
|
|
1262
|
+
"The provider is semantic-only: never include actions, IDs, hashes, or idempotency fields. The server derives all integrity and authority fields after validation.",
|
|
1263
|
+
]
|
|
1264
|
+
: [];
|
|
1071
1265
|
return [
|
|
1072
1266
|
claim.revision.prompt,
|
|
1073
1267
|
"",
|
|
1074
1268
|
"## Server-owned product output requirement",
|
|
1075
1269
|
`workKind=${productExecution.workKind}`,
|
|
1270
|
+
...semanticRequirement,
|
|
1076
1271
|
subjectRule,
|
|
1077
1272
|
"This requirement is authoritative for the final message object.",
|
|
1078
1273
|
].join("\n");
|
|
@@ -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.710";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.913";
|
|
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.710" ||
|
|
1551
1551
|
pinned.mcpPackage !== "@sellable/mcp@0.1.913" ||
|
|
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.710" ||
|
|
287
287
|
desired.mcpPackage !== "@sellable/mcp@0.1.913" ||
|
|
288
288
|
!Array.isArray(desired.toolInclude) ||
|
|
289
289
|
desired.toolInclude.length === 0 ||
|
|
@@ -554,7 +554,11 @@ function normalizedProfileConfigValueBytes(value) {
|
|
|
554
554
|
);
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
-
function preservedSlackToolsets(
|
|
557
|
+
function preservedSlackToolsets(
|
|
558
|
+
config,
|
|
559
|
+
profileRoot,
|
|
560
|
+
{ normalizeLegacyNativeDefault = false } = {}
|
|
561
|
+
) {
|
|
558
562
|
const platformToolsets = config?.platform_toolsets;
|
|
559
563
|
const nativeSlackProfile = existsSync(
|
|
560
564
|
join(profileRoot, ".no-bundled-skills")
|
|
@@ -566,7 +570,9 @@ function preservedSlackToolsets(config, profileRoot) {
|
|
|
566
570
|
Array.isArray(platformToolsets) ||
|
|
567
571
|
!Object.prototype.hasOwnProperty.call(platformToolsets, "slack"))
|
|
568
572
|
)
|
|
569
|
-
return
|
|
573
|
+
return normalizeLegacyNativeDefault
|
|
574
|
+
? sellableSlackToolsetsForMaterialization(config)
|
|
575
|
+
: null;
|
|
570
576
|
return sellableSlackToolsetsForMaterialization(config, {
|
|
571
577
|
// Only native Slack profiles adopt the one-time browser default. The
|
|
572
578
|
// contained legacy profile keeps its existing policy unchanged.
|
|
@@ -667,7 +673,10 @@ function mergeLiveMutableState(sourceRoot, targetRoot) {
|
|
|
667
673
|
mergeLiveMutableConfig(sourceRoot, targetRoot);
|
|
668
674
|
}
|
|
669
675
|
|
|
670
|
-
function preservedLiveStateIdentity(
|
|
676
|
+
function preservedLiveStateIdentity(
|
|
677
|
+
profileRoot,
|
|
678
|
+
{ normalizeLegacyNativeDefault = false } = {}
|
|
679
|
+
) {
|
|
671
680
|
if (!existsSync(profileRoot)) return null;
|
|
672
681
|
const entries = [];
|
|
673
682
|
const walk = (rootName, directory, relativePath = "") => {
|
|
@@ -698,24 +707,29 @@ function preservedLiveStateIdentity(profileRoot) {
|
|
|
698
707
|
const config = readProfileConfig(configPath);
|
|
699
708
|
const skills = config?.skills;
|
|
700
709
|
if (skills && typeof skills === "object" && !Array.isArray(skills)) {
|
|
701
|
-
|
|
710
|
+
const liveSkills = Object.fromEntries(
|
|
702
711
|
LIVE_SKILLS_CONFIG_KEYS.filter((key) =>
|
|
703
712
|
Object.prototype.hasOwnProperty.call(skills, key)
|
|
704
713
|
).map((key) => [key, skills[key]])
|
|
705
714
|
);
|
|
715
|
+
if (Object.keys(liveSkills).length > 0) mutableConfig.skills = liveSkills;
|
|
706
716
|
}
|
|
707
717
|
const plugins = config?.plugins;
|
|
708
718
|
if (plugins && (typeof plugins !== "object" || Array.isArray(plugins))) {
|
|
709
719
|
throw new Error("live plugins config rejected");
|
|
710
720
|
}
|
|
711
721
|
if (plugins) {
|
|
712
|
-
|
|
722
|
+
const livePlugins = Object.fromEntries(
|
|
713
723
|
LIVE_PLUGIN_CONFIG_KEYS.filter((key) =>
|
|
714
724
|
Object.prototype.hasOwnProperty.call(plugins, key)
|
|
715
725
|
).map((key) => [key, plugins[key]])
|
|
716
726
|
);
|
|
727
|
+
if (Object.keys(livePlugins).length > 0)
|
|
728
|
+
mutableConfig.plugins = livePlugins;
|
|
717
729
|
}
|
|
718
|
-
slackToolsets = preservedSlackToolsets(config, profileRoot
|
|
730
|
+
slackToolsets = preservedSlackToolsets(config, profileRoot, {
|
|
731
|
+
normalizeLegacyNativeDefault,
|
|
732
|
+
});
|
|
719
733
|
}
|
|
720
734
|
return sha256(stableJson({ mutableConfig, entries, slackToolsets }));
|
|
721
735
|
}
|
|
@@ -2884,7 +2898,14 @@ export function materializeNativeSlackCustomerProfile({
|
|
|
2884
2898
|
};
|
|
2885
2899
|
}
|
|
2886
2900
|
let soulBytes = Buffer.from(desired.soul, "utf8");
|
|
2887
|
-
|
|
2901
|
+
// A workspace snapshot can predate the dedicated native-Slack markers.
|
|
2902
|
+
// Materialization intentionally adds the one-time safe default toolsets
|
|
2903
|
+
// to that legacy profile. Normalize the source identity to the same
|
|
2904
|
+
// target representation so this migration is not mistaken for lost
|
|
2905
|
+
// live state while explicit legacy Slack toolsets remain exact.
|
|
2906
|
+
const liveStateIdentity = preservedLiveStateIdentity(activeRoot, {
|
|
2907
|
+
normalizeLegacyNativeDefault: true,
|
|
2908
|
+
});
|
|
2888
2909
|
if (existsSync(activeRoot)) {
|
|
2889
2910
|
const soulPath = join(activeRoot, "SOUL.md");
|
|
2890
2911
|
if (existsSync(soulPath)) {
|
|
@@ -2905,7 +2926,9 @@ export function materializeNativeSlackCustomerProfile({
|
|
|
2905
2926
|
mergeLiveMutableConfig(activeRoot, stagingRoot);
|
|
2906
2927
|
if (
|
|
2907
2928
|
liveStateIdentity !== null &&
|
|
2908
|
-
preservedLiveStateIdentity(stagingRoot
|
|
2929
|
+
preservedLiveStateIdentity(stagingRoot, {
|
|
2930
|
+
normalizeLegacyNativeDefault: true,
|
|
2931
|
+
}) !== liveStateIdentity
|
|
2909
2932
|
) {
|
|
2910
2933
|
throw new Error("live mutable state identity changed during staging");
|
|
2911
2934
|
}
|
|
@@ -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.710";
|
|
30
30
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.913";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|