localclawd 1.1.18 → 1.1.19

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.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/dist/cli.mjs +1189 -1150
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -173,10 +173,11 @@ If you want to use the Anthropic API directly, set `ANTHROPIC_API_KEY` in your e
173
173
 
174
174
  ## Release status
175
175
 
176
- `v1.1.18` is live on npm. Install globally with `npm install -g localclawd` or run without installing with `npx localclawd`.
176
+ `v1.1.19` is live on npm. Install globally with `npm install -g localclawd` or run without installing with `npx localclawd`.
177
177
 
178
178
  **Changelog**
179
- - `1.1.18` — Fix `commands is not defined` crash: moved commands/agentDefinitions declarations outside try block to fix block-scoping issue; purge remaining localClawd mixed-case branding (now all lowercase localclawd).
179
+ - `1.1.19` — Fix all startup crashes: hoist all try-block-scoped variables (effectiveModel, agentDefinitions, root, etc.) to outer scope; fix undefined model strings for local provider; add missing prompt() methods to custom tools (Secrets, Crypto, LocalWebSearch, WebScreenshot).
180
+ - `1.1.18` — Fix `commands is not defined` crash: moved commands/agentDefinitions declarations outside try block to fix block-scoping issue; purge remaining mixed-case branding.
180
181
  - `1.1.17` — Fix startup crash: Command.hideHelp() not available in Commander.js v14 — use { hidden: true } option instead.
181
182
  - `1.1.16` — Complete branding purge (no Claude/Anthropic references anywhere in UI or prompts); Grove data-sharing and subscription features fully disabled; MCP client identity updated to localclawd; all cloud-only error messages reworded to be backend-agnostic.
182
183
  - `1.1.15` — Full branding cleanup (no Anthropic/Claude references in UI); global crash handler shows errors instead of silent exit; auth commands hidden (use env vars or /setup); all startup errors surfaced with actionable messages.