localclawd 1.0.0 → 1.0.2
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 +6 -1
- package/bin/localclawd.cjs +10 -0
- package/dist/cli.mjs +27373 -22673
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -164,7 +164,12 @@ localclawd
|
|
|
164
164
|
|
|
165
165
|
## Release status
|
|
166
166
|
|
|
167
|
-
`v1.0.
|
|
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.
|
|
168
|
+
|
|
169
|
+
**Changelog**
|
|
170
|
+
- `1.0.2` — Fix zod v4 bundler crash (`_uppercase2 is not defined`); pin zod to `^3`; version string now reflects package.json correctly.
|
|
171
|
+
- `1.0.1` — Fix npm bin entry; add `/keepgoing` command; lattice memory scoring; branding cleanup.
|
|
172
|
+
- `1.0.0` — Initial source-first release.
|
|
168
173
|
|
|
169
174
|
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.
|
|
170
175
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
'use strict'
|
|
3
|
+
|
|
4
|
+
// Dynamic import to load the ESM dist from a CJS entry point.
|
|
5
|
+
// npm requires a .cjs (or .js in a CJS package) bin script — .mjs is not
|
|
6
|
+
// accepted as a valid bin executable by the npm registry validator.
|
|
7
|
+
import('../dist/cli.mjs').catch(err => {
|
|
8
|
+
console.error(err)
|
|
9
|
+
process.exit(1)
|
|
10
|
+
})
|