@sellable/install 0.1.411 → 0.1.412
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-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +2 -2
- 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 +2 -2
- package/lib/sellable-agent/provisioning-adapter.mjs +4 -4
- package/package.json +1 -1
- package/skill-templates/refill-sends.md +18 -4
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.412
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.644
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-Q2+bBeQCKy/tZ9hMslOZ1Tw/kTLKBjiv77zQqX38IFrNevLiOhRG4rsxvVPqfHkOIIOSKFl/ECTgFD0pcmhAXg==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.412" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.644" \
|
|
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.411" \
|
|
|
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.412' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.644') 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.412', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.644', 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.412` 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.412 .
|
|
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`.
|
|
@@ -5,7 +5,7 @@ USER root
|
|
|
5
5
|
|
|
6
6
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.710-uat.refill-zero-shot.20260723123117
|
|
7
7
|
ARG MCP_INTEGRITY=sha512-KvIRcIPQR/3iviWNcpq4EgrR/gEuOOqV9fngbaF/Ch/E7bBx0oAsFDu+0YrKvPc+l95ia/ddyvxWmpuRpMGHGw==
|
|
8
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
8
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.412
|
|
9
9
|
ARG HERMES_VERSION=0.19.0
|
|
10
10
|
ARG MCP_TRUST_ROOT_B64
|
|
11
11
|
ARG TIRITH_VERSION=0.3.3
|
|
@@ -61,7 +61,7 @@ const BOOT_SESSION_ID = randomUUID();
|
|
|
61
61
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.19.0";
|
|
62
62
|
const INSTALLER_PACKAGE =
|
|
63
63
|
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ??
|
|
64
|
-
"@sellable/install@0.1.
|
|
64
|
+
"@sellable/install@0.1.412";
|
|
65
65
|
const MCP_PACKAGE =
|
|
66
66
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ??
|
|
67
67
|
"@sellable/mcp@0.1.710-uat.refill-zero-shot.20260723123117";
|
|
@@ -484,7 +484,7 @@ function applicationRuntimeEnv({ desired, runtimeConfig, secrets }) {
|
|
|
484
484
|
SLACK_ALLOWED_CHANNELS: desired.selectedChannelIds.join(","),
|
|
485
485
|
SLACK_ALLOWED_USERS: desired.memberAllowlist.join(","),
|
|
486
486
|
SLACK_REQUIRE_MENTION: "true",
|
|
487
|
-
SLACK_STRICT_MENTION: "
|
|
487
|
+
SLACK_STRICT_MENTION: "false",
|
|
488
488
|
SLACK_ALLOW_BOTS: "false",
|
|
489
489
|
...(allowTestProviders()
|
|
490
490
|
? {
|
|
@@ -39,7 +39,7 @@ 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
41
|
const INSTALLER_PACKAGE =
|
|
42
|
-
"@sellable/install@0.1.
|
|
42
|
+
"@sellable/install@0.1.412";
|
|
43
43
|
const MCP_PACKAGE = "@sellable/mcp@0.1.644";
|
|
44
44
|
const HERMES_VERSION = "0.18.0";
|
|
45
45
|
const SHA256 = /^[a-f0-9]{64}$/;
|
|
@@ -1514,7 +1514,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
|
|
|
1514
1514
|
pinned.hermesCli !== "hermes" ||
|
|
1515
1515
|
pinned.hermesVersion !== "0.18.0" ||
|
|
1516
1516
|
pinned.installerPackage !==
|
|
1517
|
-
"@sellable/install@0.1.
|
|
1517
|
+
"@sellable/install@0.1.412" ||
|
|
1518
1518
|
pinned.mcpPackage !== "@sellable/mcp@0.1.644" ||
|
|
1519
1519
|
!Array.isArray(policy.toolInclude) ||
|
|
1520
1520
|
policy.toolInclude.length === 0 ||
|
|
@@ -193,7 +193,7 @@ function validateDesired(desired) {
|
|
|
193
193
|
desired.hermesCli !== "hermes" ||
|
|
194
194
|
desired.hermesVersion !== "0.18.0" ||
|
|
195
195
|
desired.installerPackage !==
|
|
196
|
-
"@sellable/install@0.1.
|
|
196
|
+
"@sellable/install@0.1.412" ||
|
|
197
197
|
desired.mcpPackage !== "@sellable/mcp@0.1.644" ||
|
|
198
198
|
!Array.isArray(desired.toolInclude) ||
|
|
199
199
|
desired.toolInclude.length === 0 ||
|
|
@@ -2133,7 +2133,7 @@ function nativeSlackCustomerFiles(desired) {
|
|
|
2133
2133
|
},
|
|
2134
2134
|
slack: {
|
|
2135
2135
|
require_mention: true,
|
|
2136
|
-
strict_mention:
|
|
2136
|
+
strict_mention: false,
|
|
2137
2137
|
allow_bots: false,
|
|
2138
2138
|
allowed_channels: [...desired.selectedChannelIds],
|
|
2139
2139
|
},
|
|
@@ -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.412";
|
|
30
30
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.644";
|
|
31
31
|
|
|
32
32
|
export function deriveAgentProfileId(workspaceId, agentId, hostId) {
|
|
@@ -613,7 +613,7 @@ function inspectProvisionedProfile({
|
|
|
613
613
|
manifest.serviceCredentialReference !== serviceCredentialReference ||
|
|
614
614
|
manifest.installerPackage !== PINNED_INSTALL_PACKAGE ||
|
|
615
615
|
manifest.installerVersion !==
|
|
616
|
-
"0.1.
|
|
616
|
+
"0.1.412" ||
|
|
617
617
|
manifest.mcpPackage !== PINNED_MCP_PACKAGE ||
|
|
618
618
|
manifest.credentialKeyVersion !== credentialKeyVersion ||
|
|
619
619
|
!/^[a-f0-9]{16}$/.test(manifest.credentialFingerprint) ||
|
|
@@ -827,7 +827,7 @@ function successReceipt({
|
|
|
827
827
|
subject: `agent-profile:${observed.profileId}`,
|
|
828
828
|
cli: {
|
|
829
829
|
installPackage: PINNED_INSTALL_PACKAGE,
|
|
830
|
-
installVersion: "0.1.
|
|
830
|
+
installVersion: "0.1.412",
|
|
831
831
|
mcpPackage: PINNED_MCP_PACKAGE,
|
|
832
832
|
command: "hermes profile bootstrap",
|
|
833
833
|
},
|
|
@@ -875,7 +875,7 @@ function failure(code, stages, extra = {}, request = null) {
|
|
|
875
875
|
: "agent-profile:unbound",
|
|
876
876
|
cli: {
|
|
877
877
|
installPackage: PINNED_INSTALL_PACKAGE,
|
|
878
|
-
installVersion: "0.1.
|
|
878
|
+
installVersion: "0.1.412",
|
|
879
879
|
mcpPackage: PINNED_MCP_PACKAGE,
|
|
880
880
|
command: "hermes profile bootstrap",
|
|
881
881
|
},
|
package/package.json
CHANGED
|
@@ -484,9 +484,13 @@ flowchart TD
|
|
|
484
484
|
|
|
485
485
|
One scheduler-loaded exact lane is not a workspace terminal: skip it and
|
|
486
486
|
continue other planner-ranked lanes. Do not keep polling after the coordinator
|
|
487
|
-
returns workspace `loaded_awaiting_scheduler
|
|
488
|
-
remaining exact target is complete or scheduler-owned and
|
|
489
|
-
`remainingReadyOrProjectedGap` is zero
|
|
487
|
+
returns workspace `loaded_awaiting_scheduler`. That terminal is admissible by
|
|
488
|
+
either path: every remaining exact target is complete or scheduler-owned and
|
|
489
|
+
workspace `remainingReadyOrProjectedGap` is zero, OR every gap-bearing sender
|
|
490
|
+
lane is already prepared and its residue is `ready_to_schedule` surplus, so the
|
|
491
|
+
remaining gap is scheduler/pacing-bound rather than unexposed supply — on that
|
|
492
|
+
second path `remainingReadyOrProjectedGap` is not necessarily zero. Neither path
|
|
493
|
+
means unexposed actionable supply, and neither is permission for a host-owned
|
|
490
494
|
loop. The sole refill-ladder expansion
|
|
491
495
|
that asks the user in `--yolo` is `new_campaign_required`; refill itself never
|
|
492
496
|
creates that campaign. `new_campaign_required` is also the truthful terminal
|
|
@@ -497,7 +501,17 @@ remaining gap and ask the user; a future handler may automate the creation. A
|
|
|
497
501
|
(approval/generate/enrich/rubric or unprocessed frontier rows) still exist but
|
|
498
502
|
no executable exact edge surfaced: retry once with a fresh command, and if it
|
|
499
503
|
repeats report it as a planner-exposure defect instead of treating the
|
|
500
|
-
workspace as exhausted.
|
|
504
|
+
workspace as exhausted. That census counts CONVERTIBLE rows only, de-duplicated
|
|
505
|
+
per campaign/table lane — a frontier whose own preparation receipt carries a
|
|
506
|
+
non-retryable `icp_or_rubric_rejection` diagnosis is proven unable to convert,
|
|
507
|
+
so it never inflates the census. When such receipts are all that remain, the
|
|
508
|
+
terminal is `source_supply_exhausted_at_rubric`: a truthful source exhaustion,
|
|
509
|
+
not a defect and not retryable. Report the per-lane evidence from the note and
|
|
510
|
+
tell the user that widening the rubric or adding fresh source rows is the only
|
|
511
|
+
remaining fill path. Whenever a terminal reports a non-empty census, it also
|
|
512
|
+
names every exact edge the run refused (`Exact edges this run refused: ...`) —
|
|
513
|
+
surface those named blockers rather than describing the workspace as having no
|
|
514
|
+
available work.
|
|
501
515
|
|
|
502
516
|
## Non-negotiable authority and proof
|
|
503
517
|
|