letmeknow-cli 0.4.0 → 0.4.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/README.md +1 -2
- package/SKILL.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,12 +149,11 @@ Events:
|
|
|
149
149
|
|
|
150
150
|
- `session`: public URL and producer disconnect grace.
|
|
151
151
|
- `action`: normalized form or standalone-button action.
|
|
152
|
-
- `cancelled`: the browser stopped waiting for an action.
|
|
153
152
|
- `ack`: command completion.
|
|
154
153
|
- `error`: invalid command or protocol state.
|
|
155
154
|
- `closing`: explicit session destruction.
|
|
156
155
|
|
|
157
|
-
Actions remain pending
|
|
156
|
+
Actions remain pending until `response`, a superseding full `render`, or session close. One form or overlapping target can be pending at a time; independent regions may proceed concurrently. Match responses by action ID.
|
|
158
157
|
|
|
159
158
|
HTML, CSS, asset, and action bodies are each limited to 1 MiB. Up to 32 actions may be pending.
|
|
160
159
|
|
package/SKILL.md
CHANGED
|
@@ -125,7 +125,7 @@ A response may include `css` to replace the page CSS. Omitting it preserves the
|
|
|
125
125
|
{"type":"response","id":"response-2","request_id":"event-2","body":"<h1 class=\"success\">Approved</h1>","css":".success { color: green; }"}
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
Wait for the acknowledgement and its new `render_id`.
|
|
128
|
+
Wait for the acknowledgement and its new `render_id`. An action remains pending until `response`, a superseding full `render`, or session close. Independent regions may be pending concurrently, so always match by action ID.
|
|
129
129
|
|
|
130
130
|
## One-browser behavior
|
|
131
131
|
|
|
@@ -159,6 +159,6 @@ Wait for `ack` and `closing`. Closing stdin only disconnects the producer.
|
|
|
159
159
|
|
|
160
160
|
If the producer disconnects, the page remains visible, drafts remain, and actions are disabled. The CLI has ten minutes to reconnect. Browser traffic does not extend that period. Explicit close or expiry deletes HTML, CSS, credentials, actions, and assets.
|
|
161
161
|
|
|
162
|
-
Limits: 1 MiB per HTML, CSS, asset, or action body; 100 assets; 10 MiB decoded asset storage; 32 pending actions
|
|
162
|
+
Limits: 1 MiB per HTML, CSS, asset, or action body; 100 assets; 10 MiB decoded asset storage; and 32 pending actions.
|
|
163
163
|
|
|
164
164
|
Treat the URL as a bearer secret. Never expose either private reconnect credential.
|