Unblocks install, upgrade, and re-keying on OpenClaw 2026.5+. Lockstep release with @latitude-data/openclaw-telemetry-cli 0.0.8.
Fixed
apiKey/projectare no longerrequiredinconfigSchema, so install and upgrade work on OpenClaw 2026.5+.openclaw plugins install <spec> --forcerecreatesplugins.entries[id]with an emptyconfigand validates the whole config against each plugin'sconfigSchemaduring the install — before@latitude-data/openclaw-telemetry-clilayers credentials in (its step 3). Newer OpenClaw enforcesconfigSchema.requiredat that point, so the transient configless entry failed with[plugins] @latitude-data/openclaw-telemetry invalid config: apiKey: must have required property 'apiKey', project: must have required property 'project'→Could not start the CLI→ the install aborted before credentials were ever written. This broke fresh installs, version upgrades, and re-configuring an existing entry with a new API key (the entry on disk still had valid creds, but--forcereset it to configless for validation). The two keys were never meaningfully required: the runtime already self-disables when creds are absent (loadConfig→enabled: hasCreds && !explicitlyDisabled), so the schema constraint bought nothing and blocked the installer. Newsrc/manifest.test.tsguards against reintroducing it.