localclawd 2.1.0 → 2.2.1
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 +7 -8
- package/dist/cli.mjs +2483 -3335
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -152,9 +152,10 @@ localclawd does not require an account or managed login flow. Connect it directl
|
|
|
152
152
|
|
|
153
153
|
The CLI is built for longer coding loops, not only one-shot prompts.
|
|
154
154
|
|
|
155
|
-
- `/keepgoing` continues through pending work until the model emits a completion or input-needed signal.
|
|
156
|
-
- `/thinkharder` increases verification rigor and model self-checking for complex changes.
|
|
157
|
-
- `/buddy` creates a persistent ASCII companion persona for the current session.
|
|
155
|
+
- `/keepgoing` continues through pending work until the model emits a completion or input-needed signal.
|
|
156
|
+
- `/thinkharder` increases verification rigor and model self-checking for complex changes.
|
|
157
|
+
- `/buddy` creates a persistent ASCII companion persona for the current session.
|
|
158
|
+
- `/includememory` removes `CLAUDE.local.md` from gitignore so local memory can be committed when you want to share it.
|
|
158
159
|
|
|
159
160
|
### Project-local image workflow
|
|
160
161
|
|
|
@@ -216,16 +217,14 @@ localclawd
|
|
|
216
217
|
|
|
217
218
|
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.
|
|
218
219
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
## Release status
|
|
220
|
+
## Release status
|
|
222
221
|
|
|
223
222
|
`v1.7.2` is live on npm. Install globally with `npm install -g localclawd` or run without installing with `npx localclawd`.
|
|
224
223
|
|
|
225
224
|
Current release highlights:
|
|
226
225
|
|
|
227
226
|
- `1.7.2` adds `/images`, the bundled `/image-pipeline` workflow, project-local image pipeline scaffolding, ComfyUI helper/templates, and visual review for generated assets when the runtime supports image reads.
|
|
228
|
-
- `1.7.1` introduced the autonomous `/keepgoing` loop, the `/buddy` companion flow,
|
|
227
|
+
- `1.7.1` introduced the autonomous `/keepgoing` loop, the `/buddy` companion flow, and the paired `/thinkharder` / `/thinknormal` operating modes.
|
|
229
228
|
- `1.0.0` was the initial public release.
|
|
230
229
|
|
|
231
230
|
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.
|
|
@@ -312,7 +311,7 @@ During first-run setup, localclawd asks for a compact context window cap. Use th
|
|
|
312
311
|
|
|
313
312
|
## Why use it instead of the upstream hosted CLI
|
|
314
313
|
|
|
315
|
-
- You can point the CLI at your own inference stack instead of a
|
|
314
|
+
- You can point the CLI at your own inference stack instead of a hosted backend.
|
|
316
315
|
- Backend configuration lives inside the app, not only in shell variables.
|
|
317
316
|
- `doctor` validates the configured local backend instead of only checking install state.
|
|
318
317
|
- vLLM, Ollama, and generic OpenAI-compatible gateways are all supported under the same terminal UX.
|