clawvault 2.5.4 → 2.6.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.
Files changed (82) hide show
  1. package/README.md +159 -159
  2. package/bin/clawvault.js +111 -111
  3. package/bin/command-registration.test.js +166 -166
  4. package/bin/command-runtime.js +93 -93
  5. package/bin/command-runtime.test.js +154 -154
  6. package/bin/help-contract.test.js +39 -39
  7. package/bin/register-config-commands.js +153 -153
  8. package/bin/register-config-route-commands.test.js +121 -121
  9. package/bin/register-core-commands.js +237 -237
  10. package/bin/register-kanban-commands.js +56 -56
  11. package/bin/register-kanban-commands.test.js +83 -83
  12. package/bin/register-maintenance-commands.js +282 -282
  13. package/bin/register-project-commands.js +209 -209
  14. package/bin/register-project-commands.test.js +206 -206
  15. package/bin/register-query-commands.js +317 -317
  16. package/bin/register-query-commands.test.js +65 -65
  17. package/bin/register-resilience-commands.js +182 -182
  18. package/bin/register-resilience-commands.test.js +81 -81
  19. package/bin/register-route-commands.js +114 -114
  20. package/bin/register-session-lifecycle-commands.js +206 -206
  21. package/bin/register-tailscale-commands.js +106 -106
  22. package/bin/register-task-commands.js +348 -348
  23. package/bin/register-task-commands.test.js +69 -69
  24. package/bin/register-template-commands.js +75 -72
  25. package/bin/register-template-commands.test.js +87 -0
  26. package/bin/register-vault-operations-commands.js +300 -300
  27. package/bin/test-helpers/cli-command-fixtures.js +119 -119
  28. package/dashboard/lib/graph-diff.js +104 -104
  29. package/dashboard/lib/graph-diff.test.js +75 -75
  30. package/dashboard/lib/vault-parser.js +556 -556
  31. package/dashboard/lib/vault-parser.test.js +254 -254
  32. package/dashboard/public/app.js +796 -796
  33. package/dashboard/public/index.html +52 -52
  34. package/dashboard/public/styles.css +221 -221
  35. package/dashboard/server.js +374 -374
  36. package/dist/{chunk-J5EMBUPK.js → chunk-4OXMU5S2.js} +1 -1
  37. package/dist/{chunk-4IV3R2F5.js → chunk-4TE4JMLA.js} +1 -1
  38. package/dist/{chunk-5GZFTAL7.js → chunk-AZYOKJYC.js} +128 -42
  39. package/dist/{chunk-JDLOL2PL.js → chunk-HA5M6KJB.js} +1 -1
  40. package/dist/{chunk-IZEY5S74.js → chunk-IEVLHNLU.js} +1 -1
  41. package/dist/{chunk-OSMS7QIG.js → chunk-ME37YNW3.js} +2 -2
  42. package/dist/chunk-MFAWT5O5.js +301 -0
  43. package/dist/{chunk-TPDH3JPP.js → chunk-PBEE567J.js} +1 -1
  44. package/dist/{chunk-S2IG7VNM.js → chunk-Q2J5YTUF.js} +2 -2
  45. package/dist/{chunk-IOALNTAN.js → chunk-QWQ3TIKS.js} +103 -29
  46. package/dist/{chunk-YCVDVI5B.js → chunk-R2MIW5G7.js} +1 -1
  47. package/dist/{chunk-W2HNZC22.js → chunk-UEOUADMO.js} +1 -1
  48. package/dist/cli/index.js +8 -6
  49. package/dist/commands/backlog.js +3 -1
  50. package/dist/commands/blocked.js +3 -1
  51. package/dist/commands/canvas.js +3 -1
  52. package/dist/commands/doctor.js +7 -5
  53. package/dist/commands/kanban.js +4 -2
  54. package/dist/commands/observe.js +7 -5
  55. package/dist/commands/project.js +5 -3
  56. package/dist/commands/rebuild.js +6 -4
  57. package/dist/commands/replay.js +6 -4
  58. package/dist/commands/setup.js +1 -1
  59. package/dist/commands/sleep.js +5 -3
  60. package/dist/commands/status.js +6 -4
  61. package/dist/commands/task.js +4 -2
  62. package/dist/commands/template.d.ts +10 -1
  63. package/dist/commands/template.js +47 -55
  64. package/dist/index.js +16 -15
  65. package/dist/lib/project-utils.js +4 -2
  66. package/dist/lib/task-utils.d.ts +14 -13
  67. package/dist/lib/task-utils.js +3 -1
  68. package/dist/lib/template-engine.d.ts +1 -0
  69. package/hooks/clawvault/HOOK.md +83 -83
  70. package/hooks/clawvault/handler.js +816 -816
  71. package/hooks/clawvault/handler.test.js +263 -263
  72. package/package.json +94 -94
  73. package/templates/checkpoint.md +34 -19
  74. package/templates/daily-note.md +34 -19
  75. package/templates/daily.md +34 -19
  76. package/templates/decision.md +39 -17
  77. package/templates/handoff.md +34 -19
  78. package/templates/lesson.md +31 -16
  79. package/templates/person.md +37 -19
  80. package/templates/project.md +84 -23
  81. package/templates/task.md +81 -0
  82. /package/dist/{chunk-AXKYDCNN.js → chunk-RVYA52PY.js} +0 -0
@@ -0,0 +1,81 @@
1
+ ---
2
+ primitive: task
3
+ description: Canonical schema for task primitives in tasks/.
4
+ fields:
5
+ status:
6
+ type: string
7
+ required: true
8
+ default: open
9
+ enum:
10
+ - open
11
+ - in-progress
12
+ - blocked
13
+ - done
14
+ description: Task lifecycle state.
15
+ source:
16
+ type: string
17
+ description: Origin of the task request.
18
+ created:
19
+ type: datetime
20
+ required: true
21
+ default: "{{datetime}}"
22
+ description: ISO timestamp when the task was created.
23
+ updated:
24
+ type: datetime
25
+ required: true
26
+ default: "{{datetime}}"
27
+ description: ISO timestamp of the latest task update.
28
+ owner:
29
+ type: string
30
+ description: Task owner.
31
+ project:
32
+ type: string
33
+ description: Related project slug.
34
+ priority:
35
+ type: string
36
+ enum:
37
+ - critical
38
+ - high
39
+ - medium
40
+ - low
41
+ description: Priority used for sorting and urgency.
42
+ blocked_by:
43
+ type: string
44
+ description: Blocker description when status is blocked.
45
+ completed:
46
+ type: datetime
47
+ description: Completion timestamp when status is done.
48
+ escalation:
49
+ type: boolean
50
+ description: Escalation flag raised after repeated blocked transitions.
51
+ confidence:
52
+ type: number
53
+ description: Optional confidence score for transitions.
54
+ reason:
55
+ type: string
56
+ description: Optional reason for a transition.
57
+ due:
58
+ type: date
59
+ description: Due date in YYYY-MM-DD format.
60
+ tags:
61
+ type: string[]
62
+ description: Tags used for filtering.
63
+ description:
64
+ type: string
65
+ description: One-line task summary.
66
+ estimate:
67
+ type: string
68
+ description: Effort estimate (for example 2h, 1d, 1w).
69
+ parent:
70
+ type: string
71
+ description: Parent task slug.
72
+ depends_on:
73
+ type: string[]
74
+ description: Upstream task slugs that this task depends on.
75
+ ---
76
+
77
+ # {{title}}
78
+
79
+ {{links_line}}
80
+
81
+ {{content}}
File without changes