superbee 0.1.1 → 0.1.2-pre.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superbee",
3
- "version": "0.1.1",
3
+ "version": "0.1.2-pre.1",
4
4
  "type": "module",
5
5
  "description": "Agent-facing Superbee CLI for reading and writing local OKF knowledge bundles: context notes, docs, cross-links, and live bundle Views.",
6
6
  "keywords": [
@@ -322,3 +322,21 @@ Bridge.watch(async function (events) {
322
322
  render(result.rows, events);
323
323
  }).catch(showStartupError);
324
324
  ```
325
+
326
+ ## Quiet startup and transport readiness
327
+
328
+ Startup messages are optional. A View may render static content or remain quiet until human input;
329
+ it does not have to send `hello`, subscribe, or make any other bridge request merely to prove that
330
+ it loaded.
331
+
332
+ The local web shell may use a shell-authenticated transport receipt after the iframe load event to
333
+ confirm that the nonce response reached the host's completed-response boundary. That receipt stays
334
+ outside the iframe and is **not authorization**: it grants no bridge or trusted-action access, and
335
+ each data or action request still undergoes its own launch-currentness, capability, and exact-byte
336
+ approval checks.
337
+
338
+ The receipt proves transport completion, not pixels or script execution. With exact authored bytes
339
+ and an opaque-origin iframe, browser cancellation after the response reaches the host's completion
340
+ boundary may remain indistinguishable from successful delivery. The shell's bounded load diagnostic
341
+ therefore cannot identify every response-stage failure without authored cooperation or a different
342
+ isolation contract.
@@ -322,3 +322,21 @@ Bridge.watch(async function (events) {
322
322
  render(result.rows, events);
323
323
  }).catch(showStartupError);
324
324
  ```
325
+
326
+ ## Quiet startup and transport readiness
327
+
328
+ Startup messages are optional. A View may render static content or remain quiet until human input;
329
+ it does not have to send `hello`, subscribe, or make any other bridge request merely to prove that
330
+ it loaded.
331
+
332
+ The local web shell may use a shell-authenticated transport receipt after the iframe load event to
333
+ confirm that the nonce response reached the host's completed-response boundary. That receipt stays
334
+ outside the iframe and is **not authorization**: it grants no bridge or trusted-action access, and
335
+ each data or action request still undergoes its own launch-currentness, capability, and exact-byte
336
+ approval checks.
337
+
338
+ The receipt proves transport completion, not pixels or script execution. With exact authored bytes
339
+ and an opaque-origin iframe, browser cancellation after the response reaches the host's completion
340
+ boundary may remain indistinguishable from successful delivery. The shell's bounded load diagnostic
341
+ therefore cannot identify every response-stage failure without authored cooperation or a different
342
+ isolation contract.