localclawd 1.0.3 → 1.0.4

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 +6 -2
  2. package/dist/cli.mjs +18015 -26087
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,10 @@ localclawd keeps the parts of the upstream CLI that were operationally strong an
15
15
  - Compact-context controls for local models that degrade before their advertised context limit.
16
16
  - Multimodal passthrough for local models that support image and screenshot input.
17
17
  - **Lattice memory scoring** — memory files tagged with `tags:` frontmatter are ranked using Jaccard similarity and co-occurrence lattice math. Works offline as a fallback when a hosted side-query model is unavailable.
18
- - **`/keepgoing`** — autonomous task continuation. Type `/keepgoing` to instruct the model to work through all outstanding steps without waiting for user input. The model signals completion with `TASK COMPLETE:` or blocks with `NEEDS INPUT:`. Aliases: `/kg`, `/continue`.
18
+ - **`/keepgoing`** — autonomous task continuation loop. The model works through all outstanding steps without waiting for user input and re-queues itself after each response. Stops when the model emits `TASK COMPLETE:` or `NEEDS INPUT:`. Aliases: `/kg`, `/continue`.
19
+ - **`/buddy`** — spawns a named ASCII animal companion for the session with a personality. Use `/buddy pet` to hear their thoughts on the current codebase.
20
+ - **`/thinkharder`** — enables careful mode: the model double-checks its reasoning at each step, verifies assumptions by reading files, and queries memory more frequently. Use `/thinknormal` to return to the default pipeline.
21
+ - **`/thinknormal`** — resets to the default pipeline. Lattice memory is fallback-only, as designed. Alias: `/tn`.
19
22
 
20
23
  ## Installation
21
24
 
@@ -164,9 +167,10 @@ localclawd
164
167
 
165
168
  ## Release status
166
169
 
167
- `v1.0.2` 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.
170
+ `v1.0.4` 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.
168
171
 
169
172
  **Changelog**
173
+ - `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.
170
174
  - `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.
171
175
  - `1.0.2` — Fix zod v4 bundler crash (`_uppercase2 is not defined`); pin zod to `^3`; version string now reflects package.json correctly.
172
176
  - `1.0.1` — Fix npm bin entry; add `/keepgoing` command; lattice memory scoring; branding cleanup.