@sellable/install 0.1.331 → 0.1.332-hermes031.202607110338
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.
|
@@ -15,9 +15,6 @@ customer's profile-local Sellable MCP config. Customer profiles must not store
|
|
|
15
15
|
or read Sellable Admin MCP credentials, admin Slack app tokens, or sibling
|
|
16
16
|
profile config.
|
|
17
17
|
|
|
18
|
-
The shared dispatcher remains a fallback/research path only. Use it only when
|
|
19
|
-
Sellable Admin explicitly owns one shared listener and route registry.
|
|
20
|
-
|
|
21
18
|
The 2026-07-06 Hostinger POC proved the native Hermes listener for the
|
|
22
19
|
`sellable-admin` profile with the existing `Sellable Reply Bot` app in
|
|
23
20
|
`#team-chat`: a human mention produced a new Hermes session and a threaded bot
|
|
@@ -34,8 +31,7 @@ hermes --profile acme send --to slack:C0BFERDV3N0 --subject '[Hermes acme smoke]
|
|
|
34
31
|
|
|
35
32
|
That succeeded and is useful as an internal smoke test. It does not change the
|
|
36
33
|
inbound listener rule: each active customer profile needs its own native Slack
|
|
37
|
-
app token pair
|
|
38
|
-
fallback.
|
|
34
|
+
app token pair.
|
|
39
35
|
|
|
40
36
|
## Which Slack Values Are Enough
|
|
41
37
|
|
|
@@ -128,27 +124,14 @@ closed before making Sellable API calls instead of falling back to shared or
|
|
|
128
124
|
admin config state. Only the `sellable-admin` profile should provision,
|
|
129
125
|
inspect, or repair other profiles.
|
|
130
126
|
|
|
131
|
-
For the shared dispatcher model, do not copy the shared `SLACK_BOT_TOKEN` or
|
|
132
|
-
`SLACK_APP_TOKEN` into customer profile `.env` files. The dispatcher owns those
|
|
133
|
-
tokens and route metadata decides the customer profile.
|
|
134
|
-
|
|
135
|
-
## Shared Dispatcher Ownership
|
|
136
|
-
|
|
137
|
-
The shared Slack dispatcher and its route registry are fallback Sellable Admin
|
|
138
|
-
surfaces. This customer-facing installer must not create shared route bundles or
|
|
139
|
-
write shared listener tokens. Sellable Admin owns Slack app creation and profile
|
|
140
|
-
provisioning, then calls this installer for profile-local Sellable runtime
|
|
141
|
-
bootstrap inside the already-provisioned Hermes profile.
|
|
142
|
-
|
|
143
127
|
## Verification
|
|
144
128
|
|
|
145
|
-
Run the installer and
|
|
129
|
+
Run the installer and native profile UAT before publishing installer changes:
|
|
146
130
|
|
|
147
131
|
```bash
|
|
148
132
|
npm run test:unit -- tests/install-package/agent-preferences.test.ts
|
|
149
133
|
scripts/run-phase92-hermes-profile-bootstrap-uat.sh --mode local-temp
|
|
150
134
|
scripts/run-phase92-hermes-profile-bootstrap-uat.sh --mode linux-shaped
|
|
151
|
-
scripts/run-phase031-hermes-slack-dispatcher-uat.sh --mode local-fixture
|
|
152
135
|
```
|
|
153
136
|
|
|
154
137
|
Expected proof:
|
package/bin/sellable-install.mjs
CHANGED
|
@@ -48,7 +48,7 @@ function getInstallVersion() {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
const CODEX_PLUGIN_VERSION = "0.1.
|
|
51
|
+
const CODEX_PLUGIN_VERSION = "0.1.62-hermes031.202607110338";
|
|
52
52
|
const CODEX_PLUGIN_COMPAT_VERSIONS = [
|
|
53
53
|
"0.1.8",
|
|
54
54
|
"0.1.9",
|
|
@@ -240,11 +240,9 @@ Hermes profile bootstrap:
|
|
|
240
240
|
workspace id is supplied, so a customer profile fails closed if the workspace
|
|
241
241
|
lock is later removed or not yet provisioned.
|
|
242
242
|
|
|
243
|
-
Hermes
|
|
244
|
-
|
|
245
|
-
Admin
|
|
246
|
-
profile-local Sellable runtime after Sellable Admin provisions the profile
|
|
247
|
-
and dispatcher route.
|
|
243
|
+
Hermes customer Slack runtime:
|
|
244
|
+
Each customer profile uses its own dedicated native Slack app and gateway.
|
|
245
|
+
Sellable Admin owns the single resumable customer bootstrap interface.
|
|
248
246
|
`;
|
|
249
247
|
}
|
|
250
248
|
|