hzl-cli 1.12.3 → 1.12.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -412,10 +412,10 @@ HZL includes a Claude Code plugin marketplace with skills that help agents work
412
412
 
413
413
  ```bash
414
414
  # Add the marketplace
415
- /plugin marketplace add tmchow/hzl
415
+ /plugin marketplace add https://github.com/tmchow/hzl
416
416
 
417
- # Install the skills plugin
418
- /plugin install hzl-skills@hzl-marketplace
417
+ # Install the HZL plugin
418
+ /plugin install hzl@tmchow-hzl
419
419
  ```
420
420
 
421
421
  See [`packages/hzl-marketplace`](./packages/hzl-marketplace) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hzl-cli",
3
- "version": "1.12.3",
3
+ "version": "1.12.4",
4
4
  "description": "CLI for HZL - External task ledger for coding agents and OpenClaw.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -64,7 +64,7 @@
64
64
  "dependencies": {
65
65
  "libsql": "^0.5.0",
66
66
  "commander": "^14.0.0",
67
- "hzl-core": "^1.12.3",
67
+ "hzl-core": "^1.12.4",
68
68
  "hzl-web": "^1.7.6",
69
69
  "zod": "^3.23.8"
70
70
  },