@perkos/perkos-a2a 0.12.38 → 0.12.40
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 +14 -11
- package/dist/index.js.map +3 -3
- package/dist/openclaw-supervisor.d.ts.map +1 -1
- package/dist/openclaw-supervisor.js +20 -1
- package/dist/openclaw-supervisor.js.map +1 -1
- package/dist/repair.d.ts +1 -1
- package/dist/repair.d.ts.map +1 -1
- package/dist/repair.js +37 -8
- package/dist/repair.js.map +1 -1
- package/dist/runtime-evidence.d.ts +6 -0
- package/dist/runtime-evidence.d.ts.map +1 -1
- package/dist/runtime-evidence.js +36 -0
- package/dist/runtime-evidence.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -198,9 +198,11 @@ files are created with owner-only permissions.
|
|
|
198
198
|
It validates config and plugin health, then reads only plugin-owned runtime
|
|
199
199
|
evidence. It never mutates `commands.restart`, sends `SIGUSR1`, waits for an
|
|
200
200
|
OpenClaw gateway drain, launches a second relay/chat client, or scrapes gateway
|
|
201
|
-
status/logs. Clean installs complete through hot reload.
|
|
202
|
-
|
|
203
|
-
|
|
201
|
+
status/logs. Clean installs complete through hot reload. OpenClaw 2026.5 caches
|
|
202
|
+
an already-loaded plugin module, so version upgrades stage the verified package
|
|
203
|
+
and normalized config, then return `ACTION_REQUIRED_REAL_RESTART` immediately;
|
|
204
|
+
the same command resumes after the operator restarts the gateway process or
|
|
205
|
+
container. Relay, registration, heartbeat, and chat authentication must
|
|
204
206
|
remain healthy—with no duplicate plugin or registration messages—for three
|
|
205
207
|
continuous minutes and at least three fresh successful heartbeats. Success or
|
|
206
208
|
failure is emitted as one JSON object; secret values are never printed.
|
|
@@ -221,14 +223,15 @@ start identity, boot id, claim time, and transport counts in private health
|
|
|
221
223
|
evidence so `connect` can distinguish a certified owner from stale files.
|
|
222
224
|
|
|
223
225
|
For a clean first install, OpenClaw's PID 1 hot reload remains supported without
|
|
224
|
-
a gateway restart. A
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
identity or credentials.
|
|
226
|
+
a gateway restart. A version upgrade keeps a certified entry enabled while it
|
|
227
|
+
stages the new package, records why a real restart is required, and exits
|
|
228
|
+
promptly with the machine-readable action `ACTION_REQUIRED_REAL_RESTART` instead
|
|
229
|
+
of waiting for evidence that a cached VM cannot produce. The same action is used
|
|
230
|
+
for a pre-supervisor or otherwise uncertified installation. Rerunning the exact
|
|
231
|
+
idempotent command after an out-of-band service/container restart resumes the
|
|
232
|
+
migration, verifies the changed PID/start identity and target supervisor, and
|
|
233
|
+
never replaces identity or credentials. Same-version OpenClaw VM reloads remain
|
|
234
|
+
serialized by the single-owner supervisor fence.
|
|
232
235
|
|
|
233
236
|
On successful verification, `connect` removes the active-attempt file and marks
|
|
234
237
|
the private repair journal `done`. Stale OpenClaw install metadata is reported
|