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.
- package/README.md +19 -9
- package/dist/cli.mjs +216 -232
- 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
|
|
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
|
-
|
|
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.
|
|
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.
|
|
174
|
-
- `1.
|
|
175
|
-
- `1.
|
|
176
|
-
- `1.
|
|
177
|
-
- `1.
|
|
178
|
-
- `1.
|
|
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
|
|