@sellable/install 0.1.599 → 0.1.601
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 +2 -2
- package/lib/sellable-agent/fly-capabilities-bridge.mjs +65 -5
- package/lib/sellable-agent/fly-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +125 -17
- 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 +25 -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.601
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.860
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.601" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.860" \
|
|
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.599" \
|
|
|
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.601' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.860') 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.601', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.860', 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,13 +3,13 @@
|
|
|
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.601` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
docker build --platform linux/amd64 \
|
|
11
11
|
--build-arg INSTALLER_INTEGRITY='sha512-…' \
|
|
12
|
-
--tag sellable-agent-host:0.1.
|
|
12
|
+
--tag sellable-agent-host:0.1.601 .
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Create a private `bootstrap/` directory owned by root with mode `0700`. It must contain `bootstrap.json`, `provider-auth`, and `slack-app`, each owned by root with mode `0600`. `bootstrap.json` contains only non-secret identities, hashes, package integrities, and the control-plane URL. The other two files contain the provider JSON and global Slack app token whose hashes are pinned by `bootstrap.json`.
|
|
@@ -244,6 +244,9 @@ function normalizeNative(native, request, configSha256, packageSpecs) {
|
|
|
244
244
|
!Array.isArray(row.tools) ||
|
|
245
245
|
row.tools.length > 1024 ||
|
|
246
246
|
row.tools.some((name) => !TOOL_NAME.test(name)) ||
|
|
247
|
+
!Array.isArray(row.configuredTools) ||
|
|
248
|
+
row.configuredTools.length > 1024 ||
|
|
249
|
+
row.configuredTools.some((name) => !TOOL_NAME.test(name)) ||
|
|
247
250
|
!Number.isSafeInteger(row.prompts) ||
|
|
248
251
|
row.prompts < 0 ||
|
|
249
252
|
!Number.isSafeInteger(row.resources) ||
|
|
@@ -251,14 +254,33 @@ function normalizeNative(native, request, configSha256, packageSpecs) {
|
|
|
251
254
|
![null, "probe_failed", "not_tested"].includes(row.errorCode)
|
|
252
255
|
)
|
|
253
256
|
fail("capabilities_mcp_inventory_rejected");
|
|
257
|
+
const customerProductServer =
|
|
258
|
+
request.expectedRuntimeKind === "CUSTOMER" && row.name === "sellable";
|
|
254
259
|
if (
|
|
255
|
-
|
|
256
|
-
|
|
260
|
+
(customerProductServer &&
|
|
261
|
+
(!row.workspaceLocked || !row.requiresWorkspaceLock)) ||
|
|
262
|
+
(request.expectedRuntimeKind === "ADMIN" &&
|
|
263
|
+
(row.workspaceLocked || row.requiresWorkspaceLock))
|
|
257
264
|
)
|
|
258
265
|
fail("capabilities_workspace_lock_rejected");
|
|
259
|
-
const
|
|
260
|
-
|
|
266
|
+
const probedNames = [...new Set(row.tools)].sort();
|
|
267
|
+
const configuredNames = [...new Set(row.configuredTools)].sort();
|
|
268
|
+
if (
|
|
269
|
+
probedNames.length !== row.tools.length ||
|
|
270
|
+
configuredNames.length !== row.configuredTools.length ||
|
|
271
|
+
(customerProductServer && configuredNames.length === 0) ||
|
|
272
|
+
(customerProductServer &&
|
|
273
|
+
probedNames.length > 0 &&
|
|
274
|
+
stableJson(probedNames) !== stableJson(configuredNames)) ||
|
|
275
|
+
(!customerProductServer && configuredNames.length > 0)
|
|
276
|
+
)
|
|
261
277
|
fail("capabilities_mcp_inventory_rejected");
|
|
278
|
+
// A CUSTOMER Product MCP is policy-filtered from its live config. Outside
|
|
279
|
+
// a signed turn Hermes can successfully probe that server while receiving
|
|
280
|
+
// an empty tools/list, so the sealed, workspace-bound include list is the
|
|
281
|
+
// authoritative inventory. ADMIN has no customer workspace lock and its
|
|
282
|
+
// two direct live probes remain authoritative.
|
|
283
|
+
const names = customerProductServer ? configuredNames : probedNames;
|
|
262
284
|
return Object.freeze({
|
|
263
285
|
name: row.name,
|
|
264
286
|
label: row.name === "sellable" ? "Sellable" : "Sellable Admin",
|
|
@@ -294,13 +316,46 @@ function normalizeNative(native, request, configSha256, packageSpecs) {
|
|
|
294
316
|
}
|
|
295
317
|
|
|
296
318
|
const NATIVE_SCRIPT = String.raw`
|
|
297
|
-
import json, sys
|
|
319
|
+
import json, os, stat, sys
|
|
298
320
|
request = json.loads(sys.stdin.read())
|
|
299
321
|
from hermes_cli.config import load_config
|
|
300
322
|
from hermes_cli.mcp_config import _get_mcp_servers, _probe_single_server
|
|
301
323
|
from hermes_cli.tools_config import CONFIGURABLE_TOOLSETS, _get_platform_tools, _save_platform_tools, _toolset_has_keys
|
|
302
324
|
from toolsets import resolve_toolset
|
|
303
325
|
|
|
326
|
+
def configured_customer_tools(name, server):
|
|
327
|
+
if request["expectedRuntimeKind"] != "CUSTOMER" or name != "sellable":
|
|
328
|
+
return []
|
|
329
|
+
env = server.get("env") if isinstance(server.get("env"), dict) else {}
|
|
330
|
+
config_path = env.get("SELLABLE_CONFIG_PATH")
|
|
331
|
+
expected_path = os.path.join(request["profileRoot"], "sellable-mcp.json")
|
|
332
|
+
if config_path != expected_path:
|
|
333
|
+
raise RuntimeError("managed_server_config_path")
|
|
334
|
+
linked = os.lstat(config_path)
|
|
335
|
+
if (not stat.S_ISREG(linked.st_mode) or linked.st_nlink != 1 or
|
|
336
|
+
linked.st_size < 2 or linked.st_size > 2 * 1024 * 1024 or
|
|
337
|
+
linked.st_mode & 0o077):
|
|
338
|
+
raise RuntimeError("managed_server_config_file")
|
|
339
|
+
descriptor = os.open(config_path, os.O_RDONLY | getattr(os, "O_NOFOLLOW", 0))
|
|
340
|
+
try:
|
|
341
|
+
opened = os.fstat(descriptor)
|
|
342
|
+
if (not stat.S_ISREG(opened.st_mode) or opened.st_dev != linked.st_dev or
|
|
343
|
+
opened.st_ino != linked.st_ino or opened.st_nlink != 1 or
|
|
344
|
+
opened.st_size != linked.st_size):
|
|
345
|
+
raise RuntimeError("managed_server_config_changed")
|
|
346
|
+
content = os.read(descriptor, opened.st_size + 1)
|
|
347
|
+
finally:
|
|
348
|
+
os.close(descriptor)
|
|
349
|
+
product = json.loads(content.decode("utf-8"))
|
|
350
|
+
include = product.get("tools", {}).get("include")
|
|
351
|
+
if (product.get("workspaceId") != request["expectedWorkspaceId"] or
|
|
352
|
+
product.get("activeWorkspaceId") != request["expectedWorkspaceId"] or
|
|
353
|
+
not isinstance(include, list) or not include or
|
|
354
|
+
any(not isinstance(tool_name, str) for tool_name in include) or
|
|
355
|
+
len(set(include)) != len(include)):
|
|
356
|
+
raise RuntimeError("managed_server_config_identity")
|
|
357
|
+
return sorted(include)
|
|
358
|
+
|
|
304
359
|
def enumerate_capabilities():
|
|
305
360
|
allowed = request["allowedToolsets"]
|
|
306
361
|
config = load_config()
|
|
@@ -350,6 +405,7 @@ def enumerate_capabilities():
|
|
|
350
405
|
"requiresWorkspaceLock": str(env.get("SELLABLE_REQUIRE_WORKSPACE_LOCK", "")) == "1",
|
|
351
406
|
"health": health,
|
|
352
407
|
"tools": tools,
|
|
408
|
+
"configuredTools": configured_customer_tools(name, server),
|
|
353
409
|
"prompts": prompts,
|
|
354
410
|
"resources": resources,
|
|
355
411
|
"errorCode": error_code,
|
|
@@ -400,6 +456,7 @@ function defaultAdapter(paths) {
|
|
|
400
456
|
enumerate: ({
|
|
401
457
|
expectedAliases: aliases,
|
|
402
458
|
expectedWorkspaceId,
|
|
459
|
+
expectedRuntimeKind,
|
|
403
460
|
probeServerName,
|
|
404
461
|
}) =>
|
|
405
462
|
runNative(
|
|
@@ -408,6 +465,8 @@ function defaultAdapter(paths) {
|
|
|
408
465
|
allowedToolsets: SELLABLE_ALLOWED_TOOLSETS,
|
|
409
466
|
expectedAliases: aliases,
|
|
410
467
|
expectedWorkspaceId,
|
|
468
|
+
expectedRuntimeKind,
|
|
469
|
+
profileRoot: paths.profileRoot,
|
|
411
470
|
...(probeServerName ? { probeServerName } : {}),
|
|
412
471
|
},
|
|
413
472
|
paths
|
|
@@ -451,6 +510,7 @@ function readInventory(request, paths, adapter, packageSpecs) {
|
|
|
451
510
|
const native = adapter.enumerate({
|
|
452
511
|
expectedAliases: aliases,
|
|
453
512
|
expectedWorkspaceId: request.expectedWorkspaceId,
|
|
513
|
+
expectedRuntimeKind: request.expectedRuntimeKind,
|
|
454
514
|
...(request.operation === "test_mcp"
|
|
455
515
|
? { probeServerName: request.serverName }
|
|
456
516
|
: {}),
|
|
@@ -6,7 +6,7 @@ USER root
|
|
|
6
6
|
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.860
|
|
8
8
|
ARG MCP_INTEGRITY=sha512-jRA1KsCV2d4Zcuo5/UmJiP8P0NaoC3ZDvUFRQOc2AMSNDVmUR6gWvtkyAiqb1lukbFWKzfVlz2/4EWzxvb7hkQ==
|
|
9
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
9
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.601
|
|
10
10
|
ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
|
|
11
11
|
ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
|
|
12
12
|
ARG TUS_JS_CLIENT_VERSION=4.3.1
|
|
@@ -95,7 +95,7 @@ const RUNTIME_GENERATION = Number(
|
|
|
95
95
|
const BOOT_SESSION_ID = randomUUID();
|
|
96
96
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.0";
|
|
97
97
|
const INSTALLER_PACKAGE =
|
|
98
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
98
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.601";
|
|
99
99
|
const MCP_PACKAGE =
|
|
100
100
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.860";
|
|
101
101
|
|
|
@@ -2134,10 +2134,56 @@ async function startNativeGateway({ desired, runtimeConfig, secrets }) {
|
|
|
2134
2134
|
};
|
|
2135
2135
|
}
|
|
2136
2136
|
|
|
2137
|
-
const API_SERVER_READINESS_DEADLINE_MS =
|
|
2137
|
+
export const API_SERVER_READINESS_DEADLINE_MS = 240_000;
|
|
2138
2138
|
const API_SERVER_READINESS_RETRY_MS = 1_000;
|
|
2139
2139
|
|
|
2140
|
-
|
|
2140
|
+
export function nativeGatewayRuntimeStatusAccepted(
|
|
2141
|
+
status,
|
|
2142
|
+
{ expectedPid, expectedHome }
|
|
2143
|
+
) {
|
|
2144
|
+
return Boolean(
|
|
2145
|
+
status &&
|
|
2146
|
+
Number.isSafeInteger(expectedPid) &&
|
|
2147
|
+
expectedPid > 1 &&
|
|
2148
|
+
status.pid === expectedPid &&
|
|
2149
|
+
status.kind === "hermes-gateway" &&
|
|
2150
|
+
Array.isArray(status.argv) &&
|
|
2151
|
+
status.argv.includes("gateway") &&
|
|
2152
|
+
status.argv.includes("run") &&
|
|
2153
|
+
Number.isSafeInteger(status.start_time) &&
|
|
2154
|
+
status.start_time > 0 &&
|
|
2155
|
+
status.hermes_home === expectedHome &&
|
|
2156
|
+
status.gateway_state === "running" &&
|
|
2157
|
+
status.platforms?.slack?.state === "connected" &&
|
|
2158
|
+
status.platforms?.api_server?.state === "connected"
|
|
2159
|
+
);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
function readNativeGatewayRuntimeStatus(runtimeHome) {
|
|
2163
|
+
try {
|
|
2164
|
+
const statusPath = join(runtimeHome, "gateway_state.json");
|
|
2165
|
+
const entry = lstatSync(statusPath);
|
|
2166
|
+
if (
|
|
2167
|
+
entry.isSymbolicLink() ||
|
|
2168
|
+
!entry.isFile() ||
|
|
2169
|
+
(entry.mode & 0o022) !== 0 ||
|
|
2170
|
+
entry.size < 2 ||
|
|
2171
|
+
entry.size > 64 * 1024
|
|
2172
|
+
) {
|
|
2173
|
+
return null;
|
|
2174
|
+
}
|
|
2175
|
+
return JSON.parse(readFileSync(statusPath, "utf8"));
|
|
2176
|
+
} catch {
|
|
2177
|
+
return null;
|
|
2178
|
+
}
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
async function proveApiServerReadiness({
|
|
2182
|
+
desired,
|
|
2183
|
+
apiServerKey,
|
|
2184
|
+
gateway,
|
|
2185
|
+
runtimeConfig,
|
|
2186
|
+
}) {
|
|
2141
2187
|
const origin = "http://127.0.0.1:8642";
|
|
2142
2188
|
const request = (authorization) =>
|
|
2143
2189
|
fetch(`${origin}/v1/capabilities`, {
|
|
@@ -2146,6 +2192,26 @@ async function proveApiServerReadiness({ desired, apiServerKey }) {
|
|
|
2146
2192
|
});
|
|
2147
2193
|
const deadlineAt = Date.now() + API_SERVER_READINESS_DEADLINE_MS;
|
|
2148
2194
|
while (Date.now() < deadlineAt) {
|
|
2195
|
+
const gatewayReadback = gateway?.readback();
|
|
2196
|
+
if (!gatewayReadback?.running) {
|
|
2197
|
+
throw new Error(
|
|
2198
|
+
`customer_native_gateway_start_rejected:${redactRuntimeDiagnostic(
|
|
2199
|
+
gatewayReadback?.output ?? "candidate exited before readiness"
|
|
2200
|
+
)}`
|
|
2201
|
+
);
|
|
2202
|
+
}
|
|
2203
|
+
const candidateStatus = readNativeGatewayRuntimeStatus(
|
|
2204
|
+
runtimeConfig.runtimeHome
|
|
2205
|
+
);
|
|
2206
|
+
if (
|
|
2207
|
+
!nativeGatewayRuntimeStatusAccepted(candidateStatus, {
|
|
2208
|
+
expectedPid: gateway.child.pid,
|
|
2209
|
+
expectedHome: runtimeConfig.runtimeHome,
|
|
2210
|
+
})
|
|
2211
|
+
) {
|
|
2212
|
+
await sleep(API_SERVER_READINESS_RETRY_MS);
|
|
2213
|
+
continue;
|
|
2214
|
+
}
|
|
2149
2215
|
try {
|
|
2150
2216
|
const [health, missing, wrong, correct] = await Promise.all([
|
|
2151
2217
|
fetch(`${origin}/health`, { signal: AbortSignal.timeout(5_000) }),
|
|
@@ -2159,6 +2225,13 @@ async function proveApiServerReadiness({ desired, apiServerKey }) {
|
|
|
2159
2225
|
missing.status === 401 &&
|
|
2160
2226
|
wrong.status === 401 &&
|
|
2161
2227
|
correct.status === 200 &&
|
|
2228
|
+
nativeGatewayRuntimeStatusAccepted(
|
|
2229
|
+
readNativeGatewayRuntimeStatus(runtimeConfig.runtimeHome),
|
|
2230
|
+
{
|
|
2231
|
+
expectedPid: gateway.child.pid,
|
|
2232
|
+
expectedHome: runtimeConfig.runtimeHome,
|
|
2233
|
+
}
|
|
2234
|
+
) &&
|
|
2162
2235
|
capabilities?.auth?.required === true &&
|
|
2163
2236
|
capabilities?.features?.run_submission === true &&
|
|
2164
2237
|
capabilities?.features?.run_events_sse === true
|
|
@@ -2181,6 +2254,7 @@ async function proveApiServerReadiness({ desired, apiServerKey }) {
|
|
|
2181
2254
|
fixtureDigest: HERMES_RUNS_FIXTURE_IDENTITY.fixtureDigest,
|
|
2182
2255
|
relayCapability: "fixture_bound_runs_relay_v1",
|
|
2183
2256
|
runtimeGeneration: desired.runtimeGeneration,
|
|
2257
|
+
gatewayPid: gateway.child.pid,
|
|
2184
2258
|
});
|
|
2185
2259
|
}
|
|
2186
2260
|
} catch {
|
|
@@ -2193,6 +2267,48 @@ async function proveApiServerReadiness({ desired, apiServerKey }) {
|
|
|
2193
2267
|
throw new Error("customer_api_server_readiness_rejected");
|
|
2194
2268
|
}
|
|
2195
2269
|
|
|
2270
|
+
export async function startProvenNativeGateway({
|
|
2271
|
+
desired,
|
|
2272
|
+
runtimeConfig,
|
|
2273
|
+
secrets,
|
|
2274
|
+
startGateway = startNativeGateway,
|
|
2275
|
+
proveReadiness = proveApiServerReadiness,
|
|
2276
|
+
stopGateway = stopNativeGateway,
|
|
2277
|
+
}) {
|
|
2278
|
+
let gateway = null;
|
|
2279
|
+
try {
|
|
2280
|
+
gateway = await startGateway({ desired, runtimeConfig, secrets });
|
|
2281
|
+
const gatewayReadback = gateway.readback();
|
|
2282
|
+
if (!gatewayReadback.running) {
|
|
2283
|
+
throw new Error("customer_native_gateway_readback_rejected");
|
|
2284
|
+
}
|
|
2285
|
+
const apiServerReadiness = await proveReadiness({
|
|
2286
|
+
desired,
|
|
2287
|
+
apiServerKey: secrets.hermesApiServer,
|
|
2288
|
+
gateway,
|
|
2289
|
+
runtimeConfig,
|
|
2290
|
+
});
|
|
2291
|
+
return { gateway, gatewayReadback, apiServerReadiness };
|
|
2292
|
+
} catch (error) {
|
|
2293
|
+
if (gateway) {
|
|
2294
|
+
try {
|
|
2295
|
+
await stopGateway(gateway);
|
|
2296
|
+
} catch (cleanupError) {
|
|
2297
|
+
process.stderr.write(
|
|
2298
|
+
`${JSON.stringify({
|
|
2299
|
+
ok: false,
|
|
2300
|
+
code:
|
|
2301
|
+
cleanupError instanceof Error
|
|
2302
|
+
? cleanupError.message
|
|
2303
|
+
: "customer_native_gateway_cleanup_failed",
|
|
2304
|
+
})}\n`
|
|
2305
|
+
);
|
|
2306
|
+
}
|
|
2307
|
+
}
|
|
2308
|
+
throw error;
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2196
2312
|
async function proveProvisionedApplication({
|
|
2197
2313
|
desired,
|
|
2198
2314
|
runtimeConfig,
|
|
@@ -2386,20 +2502,12 @@ async function proveApplication({
|
|
|
2386
2502
|
) {
|
|
2387
2503
|
throw new Error("customer_slack_socket_identity_rejected");
|
|
2388
2504
|
}
|
|
2389
|
-
const gateway
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
if (!gatewayReadback.running) {
|
|
2396
|
-
await stopNativeGateway(gateway);
|
|
2397
|
-
throw new Error("customer_native_gateway_readback_rejected");
|
|
2398
|
-
}
|
|
2399
|
-
const apiServerReadiness = await proveApiServerReadiness({
|
|
2400
|
-
desired,
|
|
2401
|
-
apiServerKey: secrets.hermesApiServer,
|
|
2402
|
-
});
|
|
2505
|
+
const { gateway, gatewayReadback, apiServerReadiness } =
|
|
2506
|
+
await startProvenNativeGateway({
|
|
2507
|
+
desired,
|
|
2508
|
+
runtimeConfig,
|
|
2509
|
+
secrets,
|
|
2510
|
+
});
|
|
2403
2511
|
return {
|
|
2404
2512
|
...provisioned,
|
|
2405
2513
|
hermesOutput: `${provisioned.hermesOutput}\n${doctor.stdout}`,
|
|
@@ -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.601";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.860";
|
|
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.601" ||
|
|
1550
1550
|
pinned.mcpPackage !== "@sellable/mcp@0.1.860" ||
|
|
1551
1551
|
!Array.isArray(policy.toolInclude) ||
|
|
1552
1552
|
policy.toolInclude.length === 0 ||
|
|
@@ -278,7 +278,7 @@ function validateDesired(desired) {
|
|
|
278
278
|
desired.serviceCredentialGeneration < 1 ||
|
|
279
279
|
desired.hermesCli !== "hermes" ||
|
|
280
280
|
desired.hermesVersion !== "0.18.0" ||
|
|
281
|
-
desired.installerPackage !== "@sellable/install@0.1.
|
|
281
|
+
desired.installerPackage !== "@sellable/install@0.1.601" ||
|
|
282
282
|
desired.mcpPackage !== "@sellable/mcp@0.1.860" ||
|
|
283
283
|
!Array.isArray(desired.toolInclude) ||
|
|
284
284
|
desired.toolInclude.length === 0 ||
|
|
@@ -2298,6 +2298,7 @@ export async function materializeAgentProfile(input = {}) {
|
|
|
2298
2298
|
|
|
2299
2299
|
export const NATIVE_SLACK_CUSTOMER_PROFILE_INVENTORY = Object.freeze([
|
|
2300
2300
|
".env",
|
|
2301
|
+
".no-bundled-skills",
|
|
2301
2302
|
"agent-profile.json",
|
|
2302
2303
|
"config.yaml",
|
|
2303
2304
|
"shell-hooks-allowlist.json",
|
|
@@ -2538,6 +2539,10 @@ function nativeSlackCustomerFiles(desired, soulBytes = desired.soul) {
|
|
|
2538
2539
|
};
|
|
2539
2540
|
return {
|
|
2540
2541
|
".env": "",
|
|
2542
|
+
// The runtime materializer owns this profile's exact skill bytes. Avoid
|
|
2543
|
+
// Hermes re-scanning and re-copying its entire bundled catalog on every
|
|
2544
|
+
// cold gateway start; explicit materialization remains the update path.
|
|
2545
|
+
".no-bundled-skills": "",
|
|
2541
2546
|
"config.yaml": `${JSON.stringify(config, null, 2)}\n`,
|
|
2542
2547
|
"shell-hooks-allowlist.json": HERMES_SNAPSHOT_HOOK_ALLOWLIST_BYTES,
|
|
2543
2548
|
"sellable/mcp.json": `${JSON.stringify(mcp, null, 2)}\n`,
|
|
@@ -2734,6 +2739,25 @@ export function materializeNativeSlackCustomerProfile({
|
|
|
2734
2739
|
extraProfiles: extraProfiles.sort(),
|
|
2735
2740
|
};
|
|
2736
2741
|
}
|
|
2742
|
+
if (existsSync(activeRoot)) {
|
|
2743
|
+
if (lstatSync(activeRoot).isSymbolicLink()) {
|
|
2744
|
+
throw new Error("active profile symlink rejected");
|
|
2745
|
+
}
|
|
2746
|
+
repointInternalCronProfileReferences(desired, activeRoot);
|
|
2747
|
+
const reusable = validateNativeSlackCustomerProfile({
|
|
2748
|
+
desired,
|
|
2749
|
+
profileRoot: activeRoot,
|
|
2750
|
+
});
|
|
2751
|
+
if (reusable.ok) {
|
|
2752
|
+
return {
|
|
2753
|
+
ok: true,
|
|
2754
|
+
status: "REUSED",
|
|
2755
|
+
profileId: desired.profileId,
|
|
2756
|
+
profileDigest: reusable.manifest.profileDigest,
|
|
2757
|
+
observedSoulRawSha256: reusable.observedSoulRawSha256,
|
|
2758
|
+
};
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
2737
2761
|
const desiredSeedBytes = Object.values(
|
|
2738
2762
|
nativeSlackCustomerFiles(desired)
|
|
2739
2763
|
).reduce(
|
|
@@ -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.601";
|
|
29
29
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.860";
|
|
30
30
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
31
31
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|