hzl-cli 1.22.0 → 1.23.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 +6 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -366,7 +366,7 @@ If your coding agent supports an instruction file (for example `CLAUDE.md`, `AGE
|
|
|
366
366
|
|
|
367
367
|
<!-- START [code:md] docs/snippets/agent-policy.md -->
|
|
368
368
|
<!-- ⚠️ DO NOT EDIT - Auto-generated from docs/snippets/agent-policy.md -->
|
|
369
|
-
|
|
369
|
+
````md
|
|
370
370
|
### HZL task ledger (external task tracking)
|
|
371
371
|
|
|
372
372
|
HZL is an external task database. Use it when external tracking helps clarity, handoff, or auditability.
|
|
@@ -455,7 +455,7 @@ hzl task complete <parent-id> # If all done, complete parent
|
|
|
455
455
|
|
|
456
456
|
**DESTRUCTIVE - Never run without explicit user request:**
|
|
457
457
|
- `hzl task prune` — **PERMANENTLY DELETES** old done/archived tasks. No undo.
|
|
458
|
-
|
|
458
|
+
````
|
|
459
459
|
<!-- END [code:md] docs/snippets/agent-policy.md -->
|
|
460
460
|
|
|
461
461
|
That snippet is intentionally concise. The goal is clear triggers and structure, not ceremony.
|
|
@@ -515,9 +515,9 @@ Copy/paste this into an OpenClaw chat (single prompt):
|
|
|
515
515
|
|
|
516
516
|
<!-- START [code:txt] docs/snippets/openclaw-setup-prompt.md -->
|
|
517
517
|
<!-- ⚠️ DO NOT EDIT - Auto-generated from docs/snippets/openclaw-setup-prompt.md -->
|
|
518
|
-
|
|
518
|
+
````txt
|
|
519
519
|
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.
|
|
520
|
-
|
|
520
|
+
````
|
|
521
521
|
<!-- END [code:txt] docs/snippets/openclaw-setup-prompt.md -->
|
|
522
522
|
|
|
523
523
|
### Manual setup
|
|
@@ -547,7 +547,7 @@ To keep both the HZL CLI and your OpenClaw skill up to date, copy/paste this pro
|
|
|
547
547
|
|
|
548
548
|
<!-- START [code:txt] docs/snippets/upgrade-hzl-prompt.md -->
|
|
549
549
|
<!-- ⚠️ DO NOT EDIT - Auto-generated from docs/snippets/upgrade-hzl-prompt.md -->
|
|
550
|
-
|
|
550
|
+
````txt
|
|
551
551
|
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:
|
|
552
552
|
|
|
553
553
|
1. Run `npm install -g hzl-cli@latest`
|
|
@@ -555,7 +555,7 @@ Create a script at scripts/upgrade-hzl.sh (in your workspace) that upgrades both
|
|
|
555
555
|
3. Print the installed version after each step
|
|
556
556
|
|
|
557
557
|
Make it executable. In the future when I say "upgrade hzl", run this script.
|
|
558
|
-
|
|
558
|
+
````
|
|
559
559
|
<!-- END [code:txt] docs/snippets/upgrade-hzl-prompt.md -->
|
|
560
560
|
|
|
561
561
|
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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hzl-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.0",
|
|
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.
|
|
64
|
-
"hzl-web": "1.
|
|
63
|
+
"hzl-core": "1.23.0",
|
|
64
|
+
"hzl-web": "1.23.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/better-sqlite3": "^7.6.13",
|