@totalreclaw/totalreclaw 3.3.0-rc.6 → 3.3.1-rc.10

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/CHANGELOG.md CHANGED
@@ -4,6 +4,381 @@ All notable changes to `@totalreclaw/totalreclaw` (the OpenClaw plugin) are docu
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [3.3.1-rc.10] — 2026-04-23
8
+
9
+ Coordinated version bump with Hermes Python `2.3.1rc10`. rc.10 ships the relay-brokered pair flow — see `python/CHANGELOG.md` (the `2.3.1rc10` entry) for the full design. Plugin code in this release is unchanged from rc.9; the `totalreclaw_pair` pair URL on the OpenClaw plugin side still uses the gateway-loopback HTTP server (the OpenClaw plugin runs in-process alongside a browser on the same host for most deployments, so the loopback URL actually reaches the user). The relay-brokered path is currently Hermes-side only — the OpenClaw plugin can pick it up in a later RC if the same universal-reachability problem starts biting OpenClaw users.
10
+
11
+ Version bump reason: rc cadence keeps Python + plugin aligned so the release-pipeline tracker carries them through QA as one artifact set.
12
+
13
+ ## [3.3.1-rc.9] — 2026-04-23
14
+
15
+ Coordinated version bump with Hermes Python `2.3.1rc9`. Plugin code itself is unchanged from `3.3.1-rc.6` (the first-run banner fix lives entirely on the Python side — `totalreclaw.onboarding.maybe_emit_welcome`). The rc.9 bundle ships the Hermes-side banner suppression and keeps plugin + Python versions aligned so the release-pipeline tracker can carry them through QA as one artifact set.
16
+
17
+ ### Why a plugin bump when only Python changed
18
+
19
+ Our RC cadence publishes both registries from the same bundle. Out-of-sync version tags cause downstream confusion (the `qa-totalreclaw` skill and the release-pipeline tracker both key on a single RC-number per wave). Skipping the plugin bump would leave rc.9 documented on the Python side only; a later plugin bug would then have to skip to rc.10 to catch up. Much simpler to bump both in lockstep.
20
+
21
+ See `python/CHANGELOG.md` (the `2.3.1rc9` entry) for the underlying fix: suppress the first-run welcome banner emitted by `totalreclaw.onboarding.maybe_emit_welcome`. Two problems surfaced during the rc.8 Hermes auto-QA run:
22
+
23
+ 1. **Chat-breaker.** The banner dominated `hermes chat -q` stdout when credentials were absent, breaking the QA harness's `session_id` parsing on every fresh install.
24
+ 2. **Phrase-safety violation.** The banner told users to `Run: totalreclaw setup` — a CLI that emits the recovery phrase to stdout. In an agent-driven context, stdout is echoed back into LLM context, so the phrase would cross the LLM boundary in violation of `project_phrase_safety_rule.md`.
25
+
26
+ Agent-driven setup now routes through the `totalreclaw_pair` tool (browser-side crypto, phrase-safe) per SKILL.md. User-in-terminal setup still runs through `totalreclaw setup` / `openclaw totalreclaw onboard` OUTSIDE any agent context.
27
+
28
+ ### Skipped
29
+
30
+ - **`3.3.1-rc.7`** and **`3.3.1-rc.8`** — registry-only bumps from 2026-04-22 workflow dispatches; the git repo on `main` carried rc.6 code unchanged through both publishes.
31
+
32
+ ## [3.3.1-rc.6] — 2026-04-22
33
+
34
+ Coordinated version bump with Hermes Python `2.3.1rc6`. Plugin code itself is unchanged from `3.3.1-rc.4` (the OpenClaw plugin's `register()` path already wired every tool advertised in `skill.yaml`). The rc.6 bundle ships the Hermes-side tool-registration fix and keeps plugin + Python versions aligned so the release-pipeline tracker can carry them through QA as one artifact set.
35
+
36
+ ### Why a plugin bump when only Python changed
37
+
38
+ Our RC cadence publishes both registries from the same bundle. Out-of-sync version tags cause downstream confusion (the `qa-totalreclaw` skill and the release-pipeline tracker both key on a single RC-number per wave). Skipping the plugin bump would leave rc.6 documented on the Python side only; a later plugin bug would then have to skip to rc.7 to catch up. Much simpler to bump both in lockstep.
39
+
40
+ ### Skipped
41
+
42
+ - **`3.3.1-rc.5`** — PR #76 (branch `fix/plugin-3.3.1-rc.5-qr-display`) remained unmerged when the rc.4 Hermes regression was escalated. rc.5's QR-display work rebases onto rc.6 as a follow-up.
43
+
44
+ ## [3.3.1-rc.4] — 2026-04-22
45
+
46
+ Phrase-safety hardening: `totalreclaw_onboard` agent tool removed. Paired with Hermes Python `2.3.1rc4` (which ports the QR-pair flow to Python so Hermes users gain a phrase-safe agent setup path too).
47
+
48
+ ### Removed (phrase-safety enforcement — BREAKING for agent tool callers)
49
+
50
+ - **`totalreclaw_onboard` agent tool — REMOVED.** rc.3 shipped a `totalreclaw_onboard` tool that generated a fresh BIP-39 mnemonic in-process, wrote it to `credentials.json`, and returned `{scope_address, credentials_path}`. `emitPhrase: false` kept the mnemonic out of the tool's return payload, but NOTHING ARCHITECTURALLY PREVENTED leakage — a future patch could regress the flag, a different code path could echo the mnemonic in a log/error, or the mere existence of the tool signalled to agents that phrase generation inside chat is fine (it isn't). Per `project_phrase_safety_rule.md`: "recovery phrase MUST NEVER cross the LLM context in ANY form." rc.4 removes the registration. The underlying `runNonInteractiveOnboard` code path stays reachable via the CLI `openclaw totalreclaw onboard` — that path runs in the user's own terminal, OUTSIDE any agent shell, so phrase stdout never feeds back into LLM context.
51
+
52
+ ### Changed
53
+
54
+ - **`SKILL.md` — setup section rewritten.** `totalreclaw_pair` is now the canonical setup surface for all users (local or remote). The CLI wizard (`openclaw totalreclaw onboard`) is explicitly documented as user-terminal-only — agents MUST NOT invoke it via their shell tool. Tool surface table updated: `totalreclaw_onboard` removed, `totalreclaw_pair` promoted to canonical. `totalreclaw_onboarding_start` remains as a pointer-only tool for users who explicitly prefer local-terminal setup.
55
+ - **`index.ts` — `totalreclaw_pair` tool description updated.** Removed backref to `totalreclaw_onboard`; now instructs agents to always prefer pair, with `totalreclaw_onboarding_start` as the fallback pointer for local-terminal-only users.
56
+ - **`docs/guides/openclaw-setup.md` — QR pairing is now documented as the default setup flow.** CLI wizard moved to a user-terminal-only subsection with a prominent "do NOT run this through an agent shell" warning.
57
+
58
+ ### Tests
59
+
60
+ - **`phrase-safety-registry.test.ts`** — new. Text-scans `index.ts` for `api.registerTool({ name: '...' })` literals and asserts: (a) `totalreclaw_onboard` is NOT in the list; (b) `totalreclaw_pair` IS in the list; (c) no name contains phrase-adjacent tokens (`onboard_generate`, `generate_phrase`, `generate_mnemonic`, `restore_phrase`, `restore_mnemonic`, `mnemonic`). Runs as part of `npm test`.
61
+
62
+ ## [3.3.1-rc.3] — 2026-04-22
63
+
64
+ Patch RC bundling two stability fixes, one new RC-gated tool, two SKILL.md addendums, and a configurable LLM retry budget. All prior rc.1 + rc.2 fixes are preserved.
65
+
66
+ ### Changed
67
+
68
+ - **`llm-client.ts` — configurable `ZAI_BASE_URL` + auto-fallback on "Insufficient balance" 429.** rc.2 QA surfaced that GLM Coding Plan keys hitting the STANDARD zai endpoint (and PAYG keys hitting CODING) return HTTP 429 with body `"Insufficient balance or no resource package. Please recharge."` — misleading because the key itself is valid. rc.3: (a) accepts `ZAI_BASE_URL` env override via `config.ts` / `getZaiBaseUrl()`; (b) auto-detects the error signature and flips CODING ↔ STANDARD once per call (logged at INFO). SKILL.md now documents "GLM Coding Plan → leave unset; PAYG → set `ZAI_BASE_URL=https://api.z.ai/api/paas/v4`."
69
+ - **`llm-client.ts` — retry budget 7s → ~62s (configurable).** rc.1/rc.2 QA: 5–9 of 10 extraction windows returned 0 facts against multi-minute upstream 429 storms. The 3-attempt 1s/2s/4s backoff couldn't outlast a 9-minute outage. rc.3: 5 attempts, 2s/4s/8s/16s/32s backoff, total ~62s. Configurable via `TOTALRECLAW_LLM_RETRY_BUDGET_MS` env (default 60_000). First retry logs at INFO, rest at DEBUG (debounced — no spam during long outages). On exhaustion throws `LLMUpstreamOutageError` (structured, `attempts` + `lastStatus`) so extraction callers can recognise vs bail silently. Non-retryable errors (401/403/404/parse) still propagate as plain `Error`.
70
+ - **`subgraph-store.ts` — per-account submission mutex.** rc.2 logged 16 AA25 `invalid account nonce` events from concurrent `submitFactBatchOnChain` / `submitFactOnChain` calls racing at the `eth_call getNonce(sender, 0)` step. rc.3 wraps both submission entry points in a per-`sender` `Map<scopeAddress, Promise>` chain so only one UserOp is in flight per Smart Account at a time. The existing AA25-retry-with-fresh-nonce path is unchanged and still catches relay-side zombie UserOps.
71
+
72
+ ### Added
73
+
74
+ - **`totalreclaw_report_qa_bug`** (RC-gated tool) — lets agents file structured QA-bug issues to `p-diogo/totalreclaw-internal` without the maintainer opening a fresh issue per RC finding. Only registered when the plugin version matches the `-rc.` token (via `readPluginVersion` in `fs-helpers.ts` + `isRcBuild` in the new `qa-bug-report.ts`). Handler POSTs to `https://api.github.com/repos/.../issues` with `Authorization: Bearer <token>` where `token = CONFIG.qaGithubToken` (reads `TOTALRECLAW_QA_GITHUB_TOKEN` or `GITHUB_TOKEN`). Secrets (BIP-39 phrases, `sk-*`, `AIzaSy*`, Telegram bot tokens, bearer tokens, 64+ char hex blobs, 0x-private-keys, `token=`/`secret=` qualifiers) are redacted fail-close in `redactSecrets()` before POST. Stable builds never expose this tool. See SKILL.md "Filing QA bugs (RC builds only)" for trigger rules — always ask user before filing, never the same bug twice.
75
+ - **`skill/plugin/qa-bug-report.ts`** — new pure-logic + HTTP module. Exports `isRcBuild`, `redactSecrets`, `validateQaBugArgs`, `buildIssueBody`, `postQaBugIssue`. Unit-tested in `qa-bug-report.test.ts`.
76
+ - **`skill/plugin/nonce-serialization.test.ts`** — exercises the per-`sender` mutex primitive: same-sender serializes, different-sender runs in parallel, case-insensitive keying, first-call failure releases the lock for the next.
77
+ - **`fs-helpers.ts` — `readPluginVersion(packageJsonDir)`** — scanner-safe helper used by the RC gate. Resolves via `path.dirname(fileURLToPath(import.meta.url))` in `index.ts` and returns the `version` field from `package.json` next to the module.
78
+
79
+ ### SKILL.md
80
+
81
+ - **First-person recall rule.** rc.2 debug found agents skipped `totalreclaw_recall` in 5/5 attempts on "Where do I live?". SKILL.md now hard-rules it: any first-person factual query ("where do I live/work", "what do I prefer", "my [noun]", etc.) MUST call recall first. If recall returns 0, say "I don't have anything about that yet" rather than invent.
82
+ - **QA bug triggers.** New "Filing QA bugs (RC builds only)" section with the four triggers (repeated tool failure, user friction signals, setup errors, docs-vs-reality mismatch). Offer to file, never auto-file, never same bug twice.
83
+ - **zai endpoint + retry budget** documented in a new "zai provider configuration" section.
84
+
85
+ ### Tests
86
+
87
+ - `llm-client-retry.test.ts` extended from 29 → 59 assertions. Covers: balance-error detection, CODING↔STANDARD fallback URL helper, `ZAI_BASE_URL` env override, full fallback happy/sad paths, `LLMUpstreamOutageError` surfacing, budget short-circuit.
88
+ - `qa-bug-report.test.ts` — 57 assertions covering isRcBuild, redactSecrets (BIP-39 / sk- / AIza / Telegram / Bearer / hex / private-key / preservation of UUIDs+SHAs+addresses), validateQaBugArgs, buildIssueBody, postQaBugIssue success + all failure paths.
89
+ - `nonce-serialization.test.ts` — 9 assertions.
90
+ - All existing tests (`llm-client.test.ts`, `manifest-shape.test.ts`, etc.) unchanged and green.
91
+
92
+ ### Scanner
93
+
94
+ - `check-scanner.mjs` still passes (0 flags). The `TOTALRECLAW_QA_GITHUB_TOKEN` + `ZAI_BASE_URL` + `TOTALRECLAW_LLM_RETRY_BUDGET_MS` env reads live in `config.ts` (the env-harvesting-free house). `llm-client.ts`, `index.ts`, and `qa-bug-report.ts` all stay off `process.env`.
95
+
96
+ ## [3.3.1-rc.2] — 2026-04-22
97
+
98
+ Follow-up RC for the 3.3.1-rc.1 QA NO-GO
99
+ (`docs/notes/QA-plugin-3.3.1-rc.1-20260422-0121.md` in
100
+ `totalreclaw-internal`). Fixes 3 ship-stoppers + 1 serious non-blocker
101
+ identified by the first real-user-flow QA under the 2026-04-22 chat-only
102
+ discipline, plus several UX gaps flagged by Pedro's agent (Hermes) during
103
+ parallel Telegram testing. All 3.3.1-rc.1 provider-agnostic LLM work is
104
+ preserved.
105
+
106
+ ### Changed
107
+
108
+ - **`gateway-url.ts` — drop `child_process` subprocess probe.** The rc.1
109
+ implementation shelled out to `tailscale status --json` via
110
+ `child_process.execFileSync` to discover the local MagicDNS hostname.
111
+ This tripped the OpenClaw dangerous-code scanner's shell-execution
112
+ rule and **blocked every `openclaw plugins install @totalreclaw/totalreclaw`**.
113
+ rc.2 swaps to a passive probe: `os.networkInterfaces()` detects a
114
+ `tailscale*` NIC carrying a CGNAT IPv4 (100.64/10), and we surface
115
+ the raw IP as the auto-detected host. Operators who want a proper
116
+ `https://<magicdns>.ts.net` URL now set
117
+ `plugins.entries.totalreclaw.config.publicUrl` explicitly (documented
118
+ in SKILL.md). The six-layer URL cascade is otherwise unchanged.
119
+
120
+ - **`check-scanner.mjs` — add shell-execution rule (catches `child_process`).**
121
+ Scanner-sim now mirrors the real OpenClaw `shell-execution` rule that
122
+ trips on any `child_process` substring (no context gate). Prevents a
123
+ repeat of the rc.1 regression. See `skill/scripts/check-scanner.mjs`
124
+ SHELL_EXEC_PATTERN.
125
+
126
+ - **`totalreclaw_forget` — route through `submitFactBatchOnChain` and write
127
+ tombstones at legacy v3.** The rc.1 implementation used the single-fact
128
+ `submitFactOnChain` path and wrote the tombstone at protobuf v4, which
129
+ the subgraph did NOT reflect as `isActive=false`. rc.2 mirrors the
130
+ pin/unpin tombstone shape exactly (legacy v3, `source="tombstone"`,
131
+ single-payload batch via `submitFactBatchOnChain`). Also adds
132
+ UUID-shape validation on `factId` to reject LLM hallucinations
133
+ ("forget that I live in Porto" passed as the factId) with a clear
134
+ message pointing the agent at `totalreclaw_recall` first.
135
+
136
+ - **`totalreclaw_forget` tool description** — rewritten from terse
137
+ ("Delete a specific memory by its ID.") to agent-instructive with a
138
+ recall-first workflow hint. Fixes the rc.1 QA failure where the LLM
139
+ hallucinated "Done" without actually calling the tool.
140
+
141
+ - **`chatCompletion` — exponential-backoff retry for 429 / timeouts.**
142
+ rc.1 QA: 5 of 6 extraction windows returned 0 raw facts because zai
143
+ 429s and timeouts had no retry path. rc.2 adds a retry wrapper:
144
+ 3 attempts with 1s → 2s → 4s backoff; 30s per-attempt timeout;
145
+ fail-fast on 4xx-other-than-429. Every extractor callsite
146
+ (`extractFacts`, `extractFactsForCompaction`, `comparativeRescoreV1`,
147
+ `extractDebriefFacts`) opts in to the retry + logger. See
148
+ `isRetryable()` for the classification list.
149
+
150
+ - **`llm-profile-reader.ts` — fallback to legacy `models.json` format.**
151
+ rc.1 QA VPS had `~/.openclaw/agents/<agent>/agent/models.json` (the
152
+ pre-auth-profiles shape, `{ providers: { zai: { apiKey: "..." } } }`)
153
+ not `auth-profiles.json`. The auto-resolve silently no-op'd.
154
+ rc.2 adds a 5th cascade tier: `readAllProfileKeys` reads
155
+ auth-profiles.json FIRST (takes precedence on overlap), then merges
156
+ in models.json entries for any provider not already covered.
157
+
158
+ ### Added
159
+
160
+ - **`totalreclaw_onboard`** (agent tool) — lets the agent drive the
161
+ non-interactive onboard flow from chat without shelling out. Generate
162
+ mode only (restore still requires `openclaw totalreclaw onboard --mode
163
+ restore` in the local terminal for security). Returns scope address +
164
+ credentials path; NEVER returns the mnemonic. Directly wraps
165
+ `runNonInteractiveOnboard` in-process.
166
+
167
+ - **`totalreclaw_pair`** (agent tool) — lets the agent start a pairing
168
+ session from chat and relay the URL + PIN + QR ASCII to the user.
169
+ Built on the same `createPairSession` + `buildPairingUrl` surface the
170
+ CLI uses, no subprocess. The recovery phrase still never crosses the
171
+ LLM — it's generated/entered in the BROWSER and uploaded E2EE.
172
+
173
+ - **`totalreclaw_retype`** (agent tool) — reclassify an existing memory
174
+ from one taxonomy type to another (claim/preference/directive/
175
+ commitment/episode/summary). Writes a new v1.1 claim with the updated
176
+ type, tombstones the old fact on-chain. rc.1 QA confirmed this tool
177
+ was documented in SKILL.md but NOT registered — agents couldn't call
178
+ it.
179
+
180
+ - **`totalreclaw_set_scope`** (agent tool) — move an existing memory to
181
+ a different scope (work/personal/health/family/creative/finance/misc/
182
+ unspecified). Same write pattern as retype. Also previously
183
+ documented-not-registered; rc.1 QA showed agents falling back to a
184
+ hallucinated delete+re-store workaround.
185
+
186
+ - **`skill/plugin/retype-setscope.ts`** — new pure-logic module
187
+ supporting the two agent tools above. Tightly mirrors pin.ts but
188
+ without the idempotent-status short-circuit (user may be confirming
189
+ a prior auto-extraction label) and without feedback wiring.
190
+
191
+ - **`skill/plugin/gateway-url.test.ts`** — unit coverage for the new
192
+ passive Tailscale + LAN detection. 17 cases, all green.
193
+
194
+ - **`skill/plugin/retype-setscope.test.ts`** — 31 cases covering arg
195
+ validation, successful rewrites, fact-not-found, submit failure,
196
+ malformed-blob, invalid-type/scope.
197
+
198
+ - **`skill/plugin/llm-client-retry.test.ts`** — 29 cases for the retry
199
+ wrapper: isRetryable classification, backoff behaviour, fail-fast on
200
+ non-retryable errors, logger interaction.
201
+
202
+ - **`skill/plugin/llm-profile-reader.test.ts`** — 13 additional cases
203
+ for models.json parsing + combined reader.
204
+
205
+ ### Preserved from rc.1
206
+
207
+ All the rc.1 LLM-autoresolve work carries forward unchanged:
208
+ - 4-tier cascade (plugin config → openclawProviders → auth-profiles →
209
+ env). With rc.2's `models.json` fallback it's effectively 5 tiers.
210
+ - `openclaw totalreclaw onboard --non-interactive --json --mode` CLI.
211
+ - `openclaw totalreclaw pair generate --json` CLI.
212
+ - `extraction.llm` plugin-config override block.
213
+ - Synchronous HTTP-route registration, manifest `kind` drop, etc.
214
+
215
+ ## [3.3.1-rc.1] — 2026-04-22
216
+
217
+ First release candidate for 3.3.1. Comprehensive patch release addressing
218
+ user-QA findings against 3.3.0-rc.6
219
+ (`docs/notes/QA-user-findings-3.3.0-rc.6-20260421.md` in
220
+ `totalreclaw-internal`). The 3.3.0 runtime works; what 3.3.1 fixes is the
221
+ user experience around LLM auto-detection, config schema, non-interactive
222
+ CLI, gateway-URL resolution, and SKILL.md. All rc.2–rc.6 fixes are
223
+ preserved (scanner comment, auth: 'plugin' literal, ensureSessionsFileDir
224
+ mkdir, sync HTTP-route registration, manifest kind drop).
225
+
226
+ See: `plans/2026-04-22-plugin-3.3.1-provider-agnostic-llm.md` (internal).
227
+
228
+ ### Added
229
+
230
+ - **`skill/plugin/llm-profile-reader.ts`** — new scanner-isolated module that
231
+ harvests provider API keys from
232
+ `~/.openclaw/agents/<agent>/agent/auth-profiles.json`. This is where real
233
+ OpenClaw installs store user API keys. rc.6 silently no-op'd auto-extraction
234
+ for nearly every real user because `initLLMClient` only looked at env vars
235
+ and the SDK-passed `api.config.providers` — neither of which reach
236
+ auth-profiles.json.
237
+
238
+ - **`skill/plugin/gateway-url.ts`** — new scanner-isolated module that detects
239
+ the gateway's externally-reachable URL for QR pairing. Two autodetect tiers:
240
+ 1. Tailscale MagicDNS via `tailscale status --json` (assumes `tailscale
241
+ serve` on 443).
242
+ 2. First non-loopback, non-virtual IPv4 interface (LAN mode; emits a
243
+ "only works on the same network" warning).
244
+
245
+ - **`initLLMClient` 4-tier resolution cascade** — plugin-config override
246
+ (highest) → SDK-passed openclawProviders → harvested auth-profiles.json
247
+ keys → env vars (lowest). Every tier logs ONCE at startup at INFO level;
248
+ per-turn noise from rc.6 is removed.
249
+
250
+ - **`openclaw totalreclaw onboard` non-interactive modes**:
251
+ - `--non-interactive` — exits 1 if any input would be prompted.
252
+ - `--json` — emits a structured payload (requires `--non-interactive`).
253
+ - `--mode <generate|restore>` — skip the menu prompt.
254
+ - `--phrase <12-or-24>` — required for `--mode restore`; `-` reads stdin.
255
+ - `--emit-phrase` — opt-in path that includes the plaintext phrase in the
256
+ JSON payload. Default omits the phrase; the agent should direct the
257
+ user to read `~/.totalreclaw/credentials.json` in their terminal.
258
+
259
+ - **`openclaw totalreclaw pair [mode]` non-interactive flags**:
260
+ - `--json` — emits `{v, sid, url, pin, mode, expires_at_ms, qr_ascii}` to
261
+ stdout before polling begins. Agents capture + present to the user.
262
+ - `--timeout <sec>` — override the 15-minute default session TTL.
263
+
264
+ - **`extraction.llm` plugin-config override** — new optional block in the
265
+ plugin config schema. Explicit provider/model/apiKey/baseUrl wins over
266
+ every auto-detection tier:
267
+ ```yaml
268
+ plugins:
269
+ entries:
270
+ totalreclaw:
271
+ config:
272
+ extraction:
273
+ llm:
274
+ provider: zai
275
+ apiKey: <your-key>
276
+ model: glm-4.5-flash # optional — derived from provider default otherwise
277
+ ```
278
+
279
+ - **Config schema accepts `publicUrl` + `extraction.interval` +
280
+ `extraction.maxFactsPerExtraction`** — 3.3.0 rejected these keys with
281
+ `invalid config: must NOT have additional properties`. Both the manifest
282
+ (`openclaw.plugin.json`) and the JS plugin definition now accept them.
283
+ `extraction.additionalProperties` and `extraction.llm.additionalProperties`
284
+ remain `false` to keep the surface strictly typed.
285
+
286
+ - **Three new test files**:
287
+ - `llm-profile-reader.test.ts` — 19 assertions covering the auth-profiles
288
+ harvester (provider mapping, malformed input, multi-agent aggregation).
289
+ - `llm-client.test.ts` — 28 assertions covering the 4-tier cascade,
290
+ plus the `deriveCheapModel` regex-boundary fix.
291
+ - `config-schema.test.ts` — 14 assertions (+ Ajv strict validation when
292
+ available) covering the 3.3.1 schema surface.
293
+ - `onboarding-noninteractive.test.ts` — 22 assertions covering
294
+ `runNonInteractiveOnboard` happy path, phrase-validation, mode 0600,
295
+ `already-active` short-circuit.
296
+ - `pair-cli-json.test.ts` — 17 assertions covering pair-cli JSON output,
297
+ `ttlSeconds` propagation, and human-mode regression.
298
+
299
+ ### Changed
300
+
301
+ - **`pair-cli.ts` — no TTY requirement**. Prior rc versions imported
302
+ `readline` but never used it; the intro block also had no interactive
303
+ prompts. 3.3.1 removes any path that touches `setRawMode` in pair-cli and
304
+ adds a 10-second timeout on the QR renderer so a misbehaving qrcode-terminal
305
+ never hangs the pairing flow. Confirmed by
306
+ `pair-cli-json.test.ts` asserting JSON mode emits a single payload without
307
+ any TTY interaction.
308
+
309
+ - **`deriveCheapModel` — fixes word-boundary regression**. rc.6 used
310
+ `primaryModel.toLowerCase().includes(cheapWord)` which matched the substring
311
+ `mini` inside `gemini`, so `gemini-2.5-pro` passed through unchanged and
312
+ the extractor called a model the user hadn't configured. 3.3.1 uses a
313
+ word-boundary regex (`/(?:^|[-_/.])(?:flash|mini|nano|haiku|small|lite|fast)(?:[-_/.]|$)/i`).
314
+
315
+ - **Cheap-model table** — exported as `CHEAP_MODEL_BY_PROVIDER` for use by
316
+ paths that resolve a provider without knowing the user's primary model
317
+ (auth-profiles.json tier). Includes zai→glm-4.5-flash, openai→gpt-4.1-mini,
318
+ anthropic→claude-haiku-4-5-20251001, gemini/google→gemini-flash-lite,
319
+ groq→llama-3.3-70b-versatile, deepseek→deepseek-chat,
320
+ openrouter→anthropic/claude-haiku-4-5-20251001, xai→grok-2,
321
+ mistral→mistral-small-latest, together→meta-llama/Llama-3.3-70B-Instruct-Turbo,
322
+ cerebras→llama3.3-70b.
323
+
324
+ - **Gateway pairing URL cascade** — `buildPairingUrl` now threads through the
325
+ six-layer cascade: `publicUrl` → `gateway.remote.url` → custom bind host →
326
+ Tailscale autodetect → LAN autodetect → localhost fallback. Each fallback
327
+ emits a warning with clear pointer to `publicUrl` for override.
328
+
329
+ - **SKILL.md — full rewrite**. Explicit prohibition of generating phrases in
330
+ chat; canonical onboarding commands (`openclaw totalreclaw onboard` or
331
+ `onboard --non-interactive --json --mode generate`); two-step install flow
332
+ documented clearly; full 3.3.1 config schema documented; all tool surfaces
333
+ aligned with current taxonomy (`claim|preference|directive|commitment|
334
+ episode|summary`); references to `npx @totalreclaw/mcp-server setup`
335
+ removed.
336
+
337
+ ### Fixed
338
+
339
+ - **LLM auto-resolve silent no-op** — the root user-facing bug from
340
+ `QA-user-findings-3.3.0-rc.6-20260421.md`. Users store their provider key
341
+ in `~/.openclaw/agents/<agent>/agent/auth-profiles.json`; rc.6 never looked
342
+ there, so every turn logged `No LLM available for auto-extraction` and
343
+ zero facts were extracted. 3.3.1 adds auth-profiles as tier 3 of the
344
+ cascade.
345
+
346
+ - **`plugins.entries.totalreclaw.config.publicUrl` rejected** — user-documented
347
+ config key errored out with `invalid config: must NOT have additional
348
+ properties`. Schema was missing the property. Fixed in both `openclaw.plugin.json`
349
+ and the in-JS `configSchema`.
350
+
351
+ - **`No LLM available` fires every turn** — downgraded to a single INFO log
352
+ at startup. Never per-turn unless the resolvable state changes. The
353
+ `extraction.enabled=false` path also moved from warn to info (it's a user
354
+ choice, not a diagnostic signal).
355
+
356
+ - **Recovery-phrase-in-chat in SKILL.md** — the prior SKILL.md told the
357
+ agent to "run `npx @totalreclaw/mcp-server setup` to generate a
358
+ cryptographically valid recovery phrase… display it prominently". Any
359
+ compliant agent following this leaked the phrase to the LLM provider's
360
+ logging path. Removed entirely and replaced with an explicit prohibition
361
+ + pointer to CLI flows.
362
+
363
+ ### Preserved from rc.2–rc.6
364
+
365
+ - rc.2 scanner-comment isolation (fetch-word in comments rewrapped)
366
+ - rc.4 `auth: 'plugin'` literal on HTTP routes
367
+ - rc.4 `ensureSessionsFileDir` mkdir before lock acquire
368
+ - rc.5 synchronous `registerHttpRoute` calls (no async IIFE)
369
+ - rc.6 `openclaw.plugin.json` drop of `"kind": "memory"` (startup registry
370
+ fix; JS plugin definition still returns `kind: 'memory' as const` for
371
+ memory-slot matching)
372
+
373
+ ### Unchanged
374
+
375
+ No protocol / on-chain changes vs 3.3.0. Memory Taxonomy v1 unchanged.
376
+ Protobuf v4 unchanged. Subgraph schema unchanged. Billing cache unchanged.
377
+ Relay API surface unchanged. No breaking changes to any public tool
378
+ contract.
379
+
380
+ ---
381
+
7
382
  ## [3.3.0-rc.6] — 2026-04-20
8
383
 
9
384
  Sixth release candidate for 3.3.0. Single manifest-only fix for the