localclawd 1.1.14 → 1.1.16

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 +19 -9
  2. package/dist/cli.mjs +216 -232
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -133,9 +133,9 @@ The bootstrap scripts expect release assets to follow the native installer platf
133
133
 
134
134
  ### Backend setup after install
135
135
 
136
- localclawd accepts native environment variable names. Legacy `CLAUDE_CODE_*` names are still accepted as compatibility aliases, but new setups should prefer `LOCALCLAWD_*`.
136
+ localclawd requires no account or login. Run `localclawd` and use `/setup` to configure your local backend, or set environment variables before launching.
137
137
 
138
- Most users should configure the backend during first-run onboarding or later in `/config`. Environment variables still work when you want non-interactive setup, shell-specific overrides, or CI automation.
138
+ localclawd accepts native environment variable names. Legacy `CLAUDE_CODE_*` names are still accepted as compatibility aliases, but new setups should prefer `LOCALCLAWD_*`.
139
139
 
140
140
  For vLLM:
141
141
 
@@ -165,17 +165,27 @@ Then run:
165
165
  localclawd
166
166
  ```
167
167
 
168
+ ## No account required
169
+
170
+ localclawd does not require any account, login, or subscription. Connect it to a local model (vLLM, Ollama) or any OpenAI-compatible endpoint and start coding immediately. Use `/setup` at any time to configure or change your backend.
171
+
172
+ If you want to use the Anthropic API directly, set `ANTHROPIC_API_KEY` in your environment — no login flow needed.
173
+
168
174
  ## Release status
169
175
 
170
- `v1.0.5` is live on npm. Install globally with `npm install -g localclawd` or run without installing with `npx localclawd`. Native multi-platform binaries can be added later without changing the install surface.
176
+ `v1.1.16` is live on npm. Install globally with `npm install -g localclawd` or run without installing with `npx localclawd`.
171
177
 
172
178
  **Changelog**
173
- - `1.0.5` — Geometric algebra lattice (Cl(n,0) multivectors, FCA concept lattice, rotor temporal decay, IDF attention); /keepgoing upgraded to ultimate persistent mode with subagent support, 7 stop-signal patterns, unlimited rounds, round counter; /thinkharder enforces 4-phase DRAFT→CRITIQUE→REFINE→VERIFY pipeline per change.
174
- - `1.0.4` — Fix `util is not defined` crash permanently by externalizing zod from the Bun bundle; add `/buddy`, `/thinkharder`, `/thinknormal` commands; fix `/keepgoing` autonomous loop; indigo/violet color scheme finalized.
175
- - `1.0.3` — Fix `util3 is not defined` crash from zod v4 bundled inside `@modelcontextprotocol/sdk`; pin all deps to current versions; zod v3 forced globally via overrides+resolutions.
176
- - `1.0.2` — Fix zod v4 bundler crash (`_uppercase2 is not defined`); pin zod to `^3`; version string now reflects package.json correctly.
177
- - `1.0.1` — Fix npm bin entry; add `/keepgoing` command; lattice memory scoring; branding cleanup.
178
- - `1.0.0` — Initial source-first release.
179
+ - `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.
180
+ - `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.
181
+ - `1.1.14` — Error handling for all startup awaits; clean build artifacts before rebuild to prevent stale cache issues.
182
+ - `1.1.13` — Go straight to dashboard on launch; /setup for configuration; fix all stuck menus; useRef guards everywhere.
183
+ - `1.1.12` — Fix onboarding blank screen; no stuck menus; VSCode Enter handling.
184
+ - `1.1.11` — Ctrl+C everywhere; clean command list; lint fixes.
185
+ - `1.1.10` — Fix Enter key on VSCode/ConPTY.
186
+ - `1.0.5` — Geometric algebra lattice; /keepgoing upgraded with subagent support; /thinkharder 4-phase pipeline.
187
+ - `1.0.4` — Fix `util is not defined` crash; add `/buddy`, `/thinkharder`, `/thinknormal`; fix `/keepgoing`.
188
+ - `1.0.0` — Initial release.
179
189
 
180
190
  External native update metadata is now expected under `release-manifests/`, the main verification workflow lives in `.github/workflows/ci.yml`, and the native asset publication workflow lives in `.github/workflows/publish-release-assets.yml`. See `docs/release.md` for the expected asset set and publish sequence.
181
191