hzl-cli 1.25.0 → 1.25.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 +9 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -363,8 +363,8 @@ If your coding agent supports an instruction file (for example `CLAUDE.md`, `AGE
|
|
|
363
363
|
|
|
364
364
|
### Drop-in policy snippet
|
|
365
365
|
|
|
366
|
-
<!-- START [code:md]
|
|
367
|
-
<!-- ⚠️ DO NOT EDIT - Auto-generated from
|
|
366
|
+
<!-- START [code:md] snippets/HZL-GUIDE.md -->
|
|
367
|
+
<!-- ⚠️ DO NOT EDIT - Auto-generated from snippets/HZL-GUIDE.md -->
|
|
368
368
|
````md
|
|
369
369
|
### HZL task ledger (external task tracking)
|
|
370
370
|
|
|
@@ -463,7 +463,7 @@ hzl task complete <parent-id> # If all done, complete parent
|
|
|
463
463
|
**DESTRUCTIVE - Never run without explicit user request:**
|
|
464
464
|
- `hzl task prune` — **PERMANENTLY DELETES** old done/archived tasks. No undo.
|
|
465
465
|
````
|
|
466
|
-
<!-- END [code:md]
|
|
466
|
+
<!-- END [code:md] snippets/HZL-GUIDE.md -->
|
|
467
467
|
|
|
468
468
|
That snippet is intentionally concise. The goal is clear triggers and structure, not ceremony.
|
|
469
469
|
|
|
@@ -520,12 +520,12 @@ HZL fits well as the task ledger that OpenClaw (and its sub-agents) can share.
|
|
|
520
520
|
|
|
521
521
|
Copy/paste this into an OpenClaw chat (single prompt):
|
|
522
522
|
|
|
523
|
-
<!-- START [code:txt]
|
|
524
|
-
<!-- ⚠️ DO NOT EDIT - Auto-generated from
|
|
523
|
+
<!-- START [code:txt] snippets/OPENCLAW-SETUP-PROMPT.md -->
|
|
524
|
+
<!-- ⚠️ DO NOT EDIT - Auto-generated from snippets/OPENCLAW-SETUP-PROMPT.md -->
|
|
525
525
|
````txt
|
|
526
526
|
Install HZL from https://github.com/tmchow/hzl and run hzl init. Install the HZL skill from https://www.clawhub.ai/tmchow/hzl. Then append the HZL policy from https://raw.githubusercontent.com/tmchow/hzl/main/docs/openclaw/tools-prompt.md to my TOOLS.md.
|
|
527
527
|
````
|
|
528
|
-
<!-- END [code:txt]
|
|
528
|
+
<!-- END [code:txt] snippets/OPENCLAW-SETUP-PROMPT.md -->
|
|
529
529
|
|
|
530
530
|
### Manual setup
|
|
531
531
|
|
|
@@ -552,8 +552,8 @@ https://raw.githubusercontent.com/tmchow/hzl/main/docs/openclaw/tools-prompt.md
|
|
|
552
552
|
|
|
553
553
|
To keep both the HZL CLI and your OpenClaw skill up to date, copy/paste this prompt into an OpenClaw chat. It creates a script you can reuse:
|
|
554
554
|
|
|
555
|
-
<!-- START [code:txt]
|
|
556
|
-
<!-- ⚠️ DO NOT EDIT - Auto-generated from
|
|
555
|
+
<!-- START [code:txt] snippets/UPGRADE-HZL-PROMPT.md -->
|
|
556
|
+
<!-- ⚠️ DO NOT EDIT - Auto-generated from snippets/UPGRADE-HZL-PROMPT.md -->
|
|
557
557
|
````txt
|
|
558
558
|
Create a script at scripts/upgrade-hzl.sh (in your workspace) that upgrades both the hzl-cli npm package and the hzl skill from ClawHub. The script should:
|
|
559
559
|
|
|
@@ -563,7 +563,7 @@ Create a script at scripts/upgrade-hzl.sh (in your workspace) that upgrades both
|
|
|
563
563
|
|
|
564
564
|
Make it executable. In the future when I say "upgrade hzl", run this script.
|
|
565
565
|
````
|
|
566
|
-
<!-- END [code:txt]
|
|
566
|
+
<!-- END [code:txt] snippets/UPGRADE-HZL-PROMPT.md -->
|
|
567
567
|
|
|
568
568
|
After running this once, just say "upgrade hzl" to OpenClaw to run the script. Consider adding a cron job to have OpenClaw run the upgrade automatically on a schedule.
|
|
569
569
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hzl-cli",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "CLI for HZL - External task ledger for coding agents and OpenClaw.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"libsql": "^0.5.0",
|
|
61
61
|
"commander": "^14.0.0",
|
|
62
62
|
"zod": "^3.23.8",
|
|
63
|
-
"hzl-core": "1.25.
|
|
64
|
-
"hzl-web": "1.25.
|
|
63
|
+
"hzl-core": "1.25.1",
|
|
64
|
+
"hzl-web": "1.25.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/better-sqlite3": "^7.6.13",
|