hzl-cli 1.24.0 → 1.24.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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -412,6 +412,14 @@ hzl task add "Subtask A" --parent <id> # Subtask
412
412
  hzl task add "Subtask B" --parent <id> --depends-on <subtask-a-id> # With dependency
413
413
  ```
414
414
 
415
+ **Task context:** Use `-d` for details, `-l` for reference docs:
416
+ ```bash
417
+ hzl task add "Add rate limiting" -P myrepo -s ready \
418
+ -d "Per linked spec. Use RateLimiter from src/middleware/." \
419
+ -l docs/rate-limit-spec.md
420
+ ```
421
+ If docs exist, reference them (don't duplicate—avoids drift). If no docs, include enough detail to complete the task. Description supports markdown/multiline.
422
+
415
423
  **Working on a task:**
416
424
  ```bash
417
425
  hzl task next -P myrepo # Next available task
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hzl-cli",
3
- "version": "1.24.0",
3
+ "version": "1.24.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.24.0",
64
- "hzl-web": "1.24.0"
63
+ "hzl-core": "1.24.1",
64
+ "hzl-web": "1.24.1"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@types/better-sqlite3": "^7.6.13",