@supercorks/krnl 0.1.4 → 0.1.5
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 +27 -0
- package/dist/kernel-companion.mjs +911 -400
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,7 @@ krnl connect codex
|
|
|
58
58
|
|
|
59
59
|
Version **0.1.1 or later** is required to launch with mapping model and reasoning settings.
|
|
60
60
|
Version **0.1.2 or later** also supports linking an existing Codex task.
|
|
61
|
+
Version **0.1.5 or later** adds durable delivery recovery, cancellation support, and task-status freshness when the Kernel server supports it.
|
|
61
62
|
Version **0.1.3 or later** supports mapping task name prefixes. For example, a prefix of `👩⚕️`
|
|
62
63
|
creates `👩⚕️ MELLA-284: Investigate an issue`. A blank prefix keeps the normal name. Project
|
|
63
64
|
mapping settings take precedence over organization settings, and changes apply only to new tasks.
|
|
@@ -147,6 +148,32 @@ Interrupted draft dispatch is not repeated automatically. If Kernel cannot confi
|
|
|
147
148
|
Codex before opening another draft. Hooks inspect only the submitted prompt to match a pending
|
|
148
149
|
reference; they do not retain or upload the edited prompt or read transcripts.
|
|
149
150
|
|
|
151
|
+
## Network recovery (0.1.5+)
|
|
152
|
+
|
|
153
|
+
Heartbeats, project discovery, local observations, task launches, and delivery run independently.
|
|
154
|
+
Temporary network failures and server throttling retry automatically with bounded backoff and
|
|
155
|
+
`Retry-After` support. Local receipt acknowledgments and retry progress survive a restart. A lost
|
|
156
|
+
creation or turn acknowledgment is reconciled without executing the task again. Expired launch
|
|
157
|
+
offers are never executed after reconnecting.
|
|
158
|
+
|
|
159
|
+
`krnl status` also shows the last successful delivery, pending and blocked counts, oldest pending
|
|
160
|
+
age, and recovery instructions. Permanently rejected items and damaged journals remain on disk
|
|
161
|
+
for diagnosis. This command reads local diagnostics and works without network access.
|
|
162
|
+
Healthy tasks continue independently. Do not delete receipts or blocked records to retry
|
|
163
|
+
an uncertain launch. Remote revocation stops dispatch; run `krnl login` and `krnl connect codex`
|
|
164
|
+
to authorize again. A connection replaced by another process requires `krnl connect codex`.
|
|
165
|
+
|
|
166
|
+
Kernel expires machine connectivity after 30 seconds. With a compatible server it also expires
|
|
167
|
+
each task observation after at most 90 seconds; a heartbeat alone does not make an old task
|
|
168
|
+
status current. Uncertain or expired observations show Disconnected until trustworthy evidence
|
|
169
|
+
returns. Supported Codex metadata cannot reconstruct every missed desktop event, especially a
|
|
170
|
+
turn already running or waiting for input. Open the task in Codex when its state cannot be verified.
|
|
171
|
+
|
|
172
|
+
Kernel's launch form offers Cancel during extended waits. Cancellation is effective before the
|
|
173
|
+
companion claims the launch; afterward, continue in Codex. Search has a separate Cancel action,
|
|
174
|
+
a 30-second total deadline, and never applies late results after cancellation. Browser timeouts
|
|
175
|
+
preserve input and cached content so the same request can be reconciled safely.
|
|
176
|
+
|
|
150
177
|
## Bundled third-party software
|
|
151
178
|
|
|
152
179
|
This executable includes Zod under the following license:
|