hzl-cli 1.9.2 → 1.10.0
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 +10 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -123,6 +123,15 @@ HZL includes a basic [Kanban dashboard](#web-dashboard) for human visibility. Fo
|
|
|
123
123
|
|
|
124
124
|
Requires Node.js 22.14+.
|
|
125
125
|
|
|
126
|
+
#### Via Homebrew (macOS/Linux)
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
brew tap tmchow/hzl
|
|
130
|
+
brew install hzl
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
#### Via NPM
|
|
134
|
+
|
|
126
135
|
```bash
|
|
127
136
|
npm install -g hzl-cli
|
|
128
137
|
hzl init
|
|
@@ -488,7 +497,7 @@ HZL is a monorepo with three packages:
|
|
|
488
497
|
|
|
489
498
|
| Package | Description | Install |
|
|
490
499
|
|---------|-------------|---------|
|
|
491
|
-
| [`hzl-cli`](https://www.npmjs.com/package/hzl-cli) | CLI for task management (`hzl` command) | `npm install -g hzl-cli` |
|
|
500
|
+
| [`hzl-cli`](https://www.npmjs.com/package/hzl-cli) | CLI for task management (`hzl` command) | `brew install hzl`<br/>`npm install -g hzl-cli` |
|
|
492
501
|
| [`hzl-core`](https://www.npmjs.com/package/hzl-core) | Core library for programmatic use | `npm install hzl-core` |
|
|
493
502
|
| [`hzl-web`](https://www.npmjs.com/package/hzl-web) | Web server and Kanban dashboard | `npm install hzl-web` |
|
|
494
503
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hzl-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "CLI for HZL - External task ledger for coding agents and OpenClaw.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"libsql": "^0.5.0",
|
|
40
40
|
"commander": "^14.0.0",
|
|
41
|
-
"hzl-core": "^1.
|
|
41
|
+
"hzl-core": "^1.10.0",
|
|
42
42
|
"hzl-web": "^1.7.6",
|
|
43
43
|
"zod": "^3.23.8"
|
|
44
44
|
},
|