clawvault 2.5.1 → 2.5.3

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 (88) hide show
  1. package/README.md +159 -199
  2. package/bin/clawvault.js +111 -111
  3. package/bin/command-registration.test.js +166 -165
  4. package/bin/command-runtime.js +93 -77
  5. package/bin/command-runtime.test.js +154 -102
  6. package/bin/help-contract.test.js +39 -28
  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 -248
  13. package/bin/register-project-commands.js +209 -209
  14. package/bin/register-project-commands.test.js +206 -201
  15. package/bin/register-query-commands.js +317 -312
  16. package/bin/register-query-commands.test.js +65 -0
  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 +72 -72
  25. package/bin/register-vault-operations-commands.js +300 -300
  26. package/bin/test-helpers/cli-command-fixtures.js +119 -119
  27. package/dashboard/lib/graph-diff.js +104 -104
  28. package/dashboard/lib/graph-diff.test.js +75 -75
  29. package/dashboard/lib/vault-parser.js +556 -556
  30. package/dashboard/lib/vault-parser.test.js +254 -254
  31. package/dashboard/public/app.js +796 -796
  32. package/dashboard/public/index.html +52 -52
  33. package/dashboard/public/styles.css +221 -221
  34. package/dashboard/server.js +374 -374
  35. package/dist/{chunk-G3OQJ2NQ.js → chunk-2YDBJS7M.js} +1 -1
  36. package/dist/chunk-3FP5BJ42.js +88 -0
  37. package/dist/{chunk-C3PF7WBA.js → chunk-4IV3R2F5.js} +2 -2
  38. package/dist/{chunk-7OHQFMJK.js → chunk-AY4PGUVL.js} +5 -4
  39. package/dist/chunk-FG6RJMCN.js +33 -0
  40. package/dist/{chunk-WIICLBNF.js → chunk-GFJ3LIIB.js} +1 -1
  41. package/dist/chunk-IZEY5S74.js +541 -0
  42. package/dist/chunk-LMEMZGUV.js +332 -0
  43. package/dist/{chunk-6RQPD7X6.js → chunk-M25QVSJM.js} +4 -3
  44. package/dist/{chunk-6B3JWM7J.js → chunk-O7XHXF7F.js} +34 -7
  45. package/dist/chunk-OSMS7QIG.js +406 -0
  46. package/dist/{chunk-PAYUH64O.js → chunk-QVMXF7FY.js} +11 -1
  47. package/dist/{chunk-TMZMN7OS.js → chunk-S2IG7VNM.js} +24 -12
  48. package/dist/{chunk-LMCC5OC7.js → chunk-TPDH3JPP.js} +1 -1
  49. package/dist/cli/index.d.ts +5 -0
  50. package/dist/cli/index.js +31 -0
  51. package/dist/commands/canvas.js +3 -3
  52. package/dist/commands/compat.js +1 -1
  53. package/dist/commands/context.js +4 -4
  54. package/dist/commands/doctor.js +16 -309
  55. package/dist/commands/embed.d.ts +17 -0
  56. package/dist/commands/embed.js +10 -0
  57. package/dist/commands/migrate-observations.js +2 -2
  58. package/dist/commands/observe.d.ts +1 -0
  59. package/dist/commands/observe.js +7 -6
  60. package/dist/commands/rebuild.js +5 -5
  61. package/dist/commands/reflect.js +3 -3
  62. package/dist/commands/replay.js +7 -7
  63. package/dist/commands/setup.d.ts +1 -0
  64. package/dist/commands/setup.js +2 -2
  65. package/dist/commands/sleep.d.ts +2 -1
  66. package/dist/commands/sleep.js +15 -15
  67. package/dist/commands/status.d.ts +9 -1
  68. package/dist/commands/status.js +33 -8
  69. package/dist/commands/wake.d.ts +1 -1
  70. package/dist/commands/wake.js +6 -6
  71. package/dist/index.d.ts +82 -5
  72. package/dist/index.js +127 -105
  73. package/dist/{types-jjuYN2Xn.d.ts → types-C74wgGL1.d.ts} +2 -0
  74. package/hooks/clawvault/HOOK.md +83 -74
  75. package/hooks/clawvault/handler.js +816 -812
  76. package/hooks/clawvault/handler.test.js +263 -263
  77. package/package.json +94 -125
  78. package/templates/checkpoint.md +19 -19
  79. package/templates/daily-note.md +19 -19
  80. package/templates/daily.md +19 -19
  81. package/templates/decision.md +17 -17
  82. package/templates/handoff.md +19 -19
  83. package/templates/lesson.md +16 -16
  84. package/templates/person.md +19 -19
  85. package/templates/project.md +23 -23
  86. package/dist/chunk-2RK2AG32.js +0 -743
  87. package/dist/{chunk-FW465EEA.js → chunk-VXEOHTSL.js} +3 -3
  88. package/dist/{chunk-KCCHROBR.js → chunk-YOSEUUNB.js} +4 -4
package/package.json CHANGED
@@ -1,125 +1,94 @@
1
- {
2
- "name": "clawvault",
3
- "version": "2.5.1",
4
- "description": "Structured memory system for AI agents — typed storage, knowledge graph, context profiles, canvas dashboards, neural graph themes, and Obsidian-native task views. An elephant never forgets. 🐘",
5
- "type": "module",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "require": "./dist/index.cjs"
14
- }
15
- },
16
- "bin": {
17
- "clawvault": "./bin/clawvault.js"
18
- },
19
- "files": [
20
- "dist",
21
- "bin",
22
- "dashboard",
23
- "templates",
24
- "hooks"
25
- ],
26
- "openclaw": {
27
- "hooks": [
28
- "./hooks/clawvault"
29
- ]
30
- },
31
- "scripts": {
32
- "build": "tsup src/commands/archive.ts src/commands/backlog.ts src/commands/blocked.ts src/commands/canvas.ts src/commands/checkpoint.ts src/commands/compat.ts src/commands/context.ts src/commands/doctor.ts src/commands/entities.ts src/commands/graph.ts src/commands/inject.ts src/commands/kanban.ts src/commands/link.ts src/commands/migrate-observations.ts src/commands/observe.ts src/commands/project.ts src/commands/rebuild.ts src/commands/recover.ts src/commands/reflect.ts src/commands/repair-session.ts src/commands/replay.ts src/commands/session-recap.ts src/commands/setup.ts src/commands/shell-init.ts src/commands/sleep.ts src/commands/status.ts src/commands/sync-bd.ts src/commands/tailscale.ts src/commands/task.ts src/commands/template.ts src/commands/wake.ts src/index.ts src/lib/auto-linker.ts src/lib/canvas-layout.ts src/lib/config.ts src/lib/entity-index.ts src/lib/project-utils.ts src/lib/session-repair.ts src/lib/session-utils.ts src/lib/tailscale.ts src/lib/task-utils.ts src/lib/template-engine.ts src/lib/webdav.ts --format esm --dts --clean",
33
- "dev": "tsup src/index.ts src/commands/*.ts src/lib/*.ts --format esm --dts --watch",
34
- "lint": "eslint src",
35
- "typecheck": "tsc --noEmit",
36
- "test": "vitest run",
37
- "test:compat-fixtures": "npm run build && node scripts/check-compat-fixtures.mjs",
38
- "test:compat-fixtures:fast": "node scripts/check-compat-fixtures.mjs",
39
- "test:compat-fixtures:fast:report": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-fixtures:fast",
40
- "test:compat-contract": "npm run build && COMPAT_VALIDATE_ONLY=1 node scripts/check-compat-fixtures.mjs",
41
- "test:compat-contract:fast": "COMPAT_VALIDATE_ONLY=1 node scripts/check-compat-fixtures.mjs",
42
- "test:compat-summary:verify": "node scripts/validate-compat-summary.mjs",
43
- "test:compat-report-schemas:verify": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-report-schemas.mjs",
44
- "test:compat-report-schemas:verify:report": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-report-schemas.mjs --out ${COMPAT_REPORT_DIR:-.compat-reports}/report-schema-validator-result.json",
45
- "test:compat-report-schemas:verify:schema": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/compat-report-schema-validator-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/report-schema-validator-result.json",
46
- "test:compat-artifact-bundle:verify": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-artifact-bundle.mjs",
47
- "test:compat-artifact-bundle:verify:report": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-artifact-bundle.mjs --out ${COMPAT_REPORT_DIR:-.compat-reports}/artifact-bundle-validator-result.json",
48
- "test:compat-artifact-bundle:verify:schema": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/compat-artifact-bundle-validator-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/artifact-bundle-validator-result.json",
49
- "test:compat-artifact-bundle:manifest:schema": "node scripts/validate-json-schema.mjs --schema schemas/compat-artifact-bundle.manifest.schema.json --data schemas/compat-artifact-bundle.manifest.json",
50
- "test:compat-artifact-bundle:manifest:verify": "node scripts/validate-compat-artifact-bundle-manifest.mjs",
51
- "test:compat-artifact-bundle:manifest:verify:report": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-artifact-bundle-manifest.mjs --out ${COMPAT_REPORT_DIR:-.compat-reports}/artifact-bundle-manifest-validator-result.json",
52
- "test:compat-artifact-bundle:manifest:verify:schema": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/compat-artifact-bundle-manifest-validator-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/artifact-bundle-manifest-validator-result.json",
53
- "test:compat-artifact-alignment:fast": "vitest run scripts/lib/compat-artifact-bundle-manifest-contract-alignment.test.js scripts/lib/compat-artifact-bundle-manifest-schema-alignment.test.js scripts/lib/compat-artifact-bundle-output-schema-alignment.test.js",
54
- "test:compat-artifact-cli-drift:fast": "vitest run scripts/validate-compat-artifact-bundle-manifest.test.js scripts/validate-compat-artifact-bundle.test.js",
55
- "test:compat-script-stack-contract:fast": "vitest run scripts/lib/compat-contract-assertion-test-utils.test.js scripts/lib/compat-contract-test-utils.test.js scripts/lib/compat-npm-script-contracts.test.js scripts/lib/compat-npm-script-graph-utils.test.js scripts/lib/compat-npm-script-stack-contract.test.js scripts/lib/compat-readme-contract.test.js scripts/lib/compat-ci-workflow-test-utils.test.js scripts/lib/compat-ci-workflow-contracts.test.js scripts/lib/compat-ci-workflow-contract.test.js",
56
- "test:compat-validator-stack:fast": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-validator-result:verify:report && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-validator-result:schema && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-schema-validator-result:verify && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-validator-result:verify:schema",
57
- "test:compat-artifact-stack:fast": "npm run test:compat-artifact-alignment:fast && npm run test:compat-artifact-cli-drift:fast && npm run test:compat-artifact-bundle:manifest:schema && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-artifact-bundle:manifest:verify:report && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-artifact-bundle:manifest:verify:schema && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-artifact-bundle:verify:report && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-artifact-bundle:verify:schema",
58
- "test:compat-report-stack:fast": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-report-schemas:verify:report && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-report-schemas:verify:schema && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-validator-stack:fast && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-artifact-stack:fast",
59
- "test:compat-validator-result:verify": "node scripts/validate-compat-validator-result.mjs --require-ok",
60
- "test:compat-validator-result:verify:report": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-validator-result.mjs --require-ok --out ${COMPAT_REPORT_DIR:-.compat-reports}/validator-result-verifier-result.json",
61
- "test:compat-validator-result:verify:schema": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/compat-validator-result-verifier-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/validator-result-verifier-result.json",
62
- "test:compat-validator-result:schema": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/compat-summary-validator-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/validator-result.json --out ${COMPAT_REPORT_DIR:-.compat-reports}/schema-validator-result.json",
63
- "test:compat-schema-validator-result:verify": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-json-schema.mjs --schema schemas/json-schema-validator-output.schema.json --data ${COMPAT_REPORT_DIR:-.compat-reports}/schema-validator-result.json",
64
- "test:compat-summary": "COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-fixtures && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-summary.mjs --out ${COMPAT_REPORT_DIR:-.compat-reports}/validator-result.json",
65
- "test:compat-summary:fast": "npm run test:compat-script-stack-contract:fast && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-fixtures:fast && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} node scripts/validate-compat-summary.mjs --out ${COMPAT_REPORT_DIR:-.compat-reports}/validator-result.json && COMPAT_REPORT_DIR=${COMPAT_REPORT_DIR:-.compat-reports} npm run test:compat-report-stack:fast",
66
- "test:compat-smoke": "npm run test:compat-contract:fast && COMPAT_CASES=healthy npm run test:compat-fixtures:fast",
67
- "ci": "npm run test:compat-script-stack-contract:fast && npm run typecheck && npm test && npm run build && npm run test:compat-contract:fast && npm run test:compat-summary:fast",
68
- "seo:generate": "node generate-seo-assets.mjs",
69
- "prepublishOnly": "npm run build"
70
- },
71
- "keywords": [
72
- "ai-agent",
73
- "memory",
74
- "knowledge-graph",
75
- "obsidian",
76
- "markdown",
77
- "task-management",
78
- "context-death",
79
- "openclaw",
80
- "llm",
81
- "agent-memory",
82
- "canvas-dashboard",
83
- "semantic-search"
84
- ],
85
- "author": "Versatly",
86
- "license": "MIT",
87
- "repository": {
88
- "type": "git",
89
- "url": "git+https://github.com/Versatly/clawvault.git"
90
- },
91
- "homepage": "https://clawvault.dev",
92
- "bugs": {
93
- "url": "https://github.com/Versatly/clawvault/issues"
94
- },
95
- "engines": {
96
- "node": ">=18"
97
- },
98
- "dependencies": {
99
- "chalk": "^5.3.0",
100
- "chokidar": "^5.0.0",
101
- "commander": "^12.0.0",
102
- "express": "^5.2.1",
103
- "force-graph": "^1.51.1",
104
- "glob": "^10.3.10",
105
- "gray-matter": "^4.0.3",
106
- "natural": "^6.10.4",
107
- "ws": "^8.19.0"
108
- },
109
- "peerDependencies": {
110
- "qmd": "*"
111
- },
112
- "peerDependenciesMeta": {
113
- "qmd": {
114
- "optional": true
115
- }
116
- },
117
- "devDependencies": {
118
- "@types/node": "^20.11.0",
119
- "ajv": "^8.17.1",
120
- "puppeteer": "^24.37.2",
121
- "tsup": "^8.0.1",
122
- "typescript": "^5.3.3",
123
- "vitest": "^1.2.0"
124
- }
125
- }
1
+ {
2
+ "name": "clawvault",
3
+ "version": "2.5.3",
4
+ "description": "Structured memory system for AI agents — typed storage, knowledge graph, context profiles, canvas dashboards, neural graph themes, and Obsidian-native task views. An elephant never forgets. 🐘",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "bin": {
17
+ "clawvault": "bin/clawvault.js"
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "bin",
22
+ "dashboard",
23
+ "templates",
24
+ "hooks"
25
+ ],
26
+ "openclaw": {
27
+ "hooks": [
28
+ "./hooks/clawvault"
29
+ ]
30
+ },
31
+ "scripts": {
32
+ "build": "tsup src/commands/archive.ts src/commands/backlog.ts src/commands/blocked.ts src/commands/canvas.ts src/commands/checkpoint.ts src/commands/compat.ts src/commands/context.ts src/commands/doctor.ts src/commands/embed.ts src/commands/entities.ts src/commands/graph.ts src/commands/inject.ts src/commands/kanban.ts src/commands/link.ts src/commands/migrate-observations.ts src/commands/observe.ts src/commands/project.ts src/commands/rebuild.ts src/commands/recover.ts src/commands/reflect.ts src/commands/repair-session.ts src/commands/replay.ts src/commands/session-recap.ts src/commands/setup.ts src/commands/shell-init.ts src/commands/sleep.ts src/commands/status.ts src/commands/sync-bd.ts src/commands/tailscale.ts src/commands/task.ts src/commands/template.ts src/commands/wake.ts src/cli/index.ts src/index.ts src/lib/auto-linker.ts src/lib/canvas-layout.ts src/lib/config.ts src/lib/entity-index.ts src/lib/project-utils.ts src/lib/session-repair.ts src/lib/session-utils.ts src/lib/tailscale.ts src/lib/task-utils.ts src/lib/template-engine.ts src/lib/webdav.ts --format esm --dts --clean",
33
+ "dev": "tsup src/index.ts src/commands/*.ts src/lib/*.ts --format esm --dts --watch",
34
+ "lint": "eslint src",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run",
37
+ "ci": "npm run typecheck && npm test && npm run build",
38
+ "prepublishOnly": "npm run build"
39
+ },
40
+ "keywords": [
41
+ "ai-agent",
42
+ "memory",
43
+ "knowledge-graph",
44
+ "obsidian",
45
+ "markdown",
46
+ "task-management",
47
+ "context-death",
48
+ "openclaw",
49
+ "llm",
50
+ "agent-memory",
51
+ "canvas-dashboard",
52
+ "semantic-search"
53
+ ],
54
+ "author": "Versatly",
55
+ "license": "MIT",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/Versatly/clawvault.git"
59
+ },
60
+ "homepage": "https://clawvault.dev",
61
+ "bugs": {
62
+ "url": "https://github.com/Versatly/clawvault/issues"
63
+ },
64
+ "engines": {
65
+ "node": ">=18"
66
+ },
67
+ "dependencies": {
68
+ "chalk": "^5.3.0",
69
+ "chokidar": "^5.0.0",
70
+ "commander": "^12.0.0",
71
+ "express": "^5.2.1",
72
+ "force-graph": "^1.51.1",
73
+ "glob": "^10.3.10",
74
+ "gray-matter": "^4.0.3",
75
+ "natural": "^6.10.4",
76
+ "ws": "^8.19.0"
77
+ },
78
+ "peerDependencies": {
79
+ "qmd": "*"
80
+ },
81
+ "peerDependenciesMeta": {
82
+ "qmd": {
83
+ "optional": true
84
+ }
85
+ },
86
+ "devDependencies": {
87
+ "@types/node": "^20.11.0",
88
+ "ajv": "^8.17.1",
89
+ "puppeteer": "^24.37.2",
90
+ "tsup": "^8.0.1",
91
+ "typescript": "^5.3.3",
92
+ "vitest": "^1.2.0"
93
+ }
94
+ }
@@ -1,19 +1,19 @@
1
- ---
2
- title: "Checkpoint {{datetime}}"
3
- date: {{date}}
4
- type: {{type}}
5
- ---
6
-
7
- # Checkpoint
8
-
9
- ## Working On
10
- -
11
-
12
- ## Focus
13
- -
14
-
15
- ## Blocked
16
- -
17
-
18
- ## Notes
19
- -
1
+ ---
2
+ title: "Checkpoint {{datetime}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ ---
6
+
7
+ # Checkpoint
8
+
9
+ ## Working On
10
+ -
11
+
12
+ ## Focus
13
+ -
14
+
15
+ ## Blocked
16
+ -
17
+
18
+ ## Notes
19
+ -
@@ -1,19 +1,19 @@
1
- ---
2
- title: "{{date}}"
3
- date: {{date}}
4
- type: {{type}}
5
- ---
6
-
7
- # {{date}}
8
-
9
- ## Focus
10
- -
11
-
12
- ## Wins
13
- -
14
-
15
- ## Notes
16
- -
17
-
18
- ## Next
19
- - [ ]
1
+ ---
2
+ title: "{{date}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ ---
6
+
7
+ # {{date}}
8
+
9
+ ## Focus
10
+ -
11
+
12
+ ## Wins
13
+ -
14
+
15
+ ## Notes
16
+ -
17
+
18
+ ## Next
19
+ - [ ]
@@ -1,19 +1,19 @@
1
- ---
2
- title: "{{date}}"
3
- date: {{date}}
4
- type: {{type}}
5
- ---
6
-
7
- # {{date}}
8
-
9
- ## Focus
10
- -
11
-
12
- ## Wins
13
- -
14
-
15
- ## Notes
16
- -
17
-
18
- ## Next
19
- - [ ]
1
+ ---
2
+ title: "{{date}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ ---
6
+
7
+ # {{date}}
8
+
9
+ ## Focus
10
+ -
11
+
12
+ ## Wins
13
+ -
14
+
15
+ ## Notes
16
+ -
17
+
18
+ ## Next
19
+ - [ ]
@@ -1,17 +1,17 @@
1
- ---
2
- title: "{{title}}"
3
- date: {{date}}
4
- type: {{type}}
5
- status: decided
6
- ---
7
-
8
- # Decision: {{title}}
9
-
10
- ## Context
11
- -
12
-
13
- ## Decision
14
- -
15
-
16
- ## Consequences
17
- -
1
+ ---
2
+ title: "{{title}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ status: decided
6
+ ---
7
+
8
+ # Decision: {{title}}
9
+
10
+ ## Context
11
+ -
12
+
13
+ ## Decision
14
+ -
15
+
16
+ ## Consequences
17
+ -
@@ -1,19 +1,19 @@
1
- ---
2
- title: "Handoff {{datetime}}"
3
- date: {{date}}
4
- type: {{type}}
5
- ---
6
-
7
- # Session Handoff
8
-
9
- ## Working On
10
- -
11
-
12
- ## Blocked
13
- -
14
-
15
- ## Next
16
- - [ ]
17
-
18
- ## Notes
19
- -
1
+ ---
2
+ title: "Handoff {{datetime}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ ---
6
+
7
+ # Session Handoff
8
+
9
+ ## Working On
10
+ -
11
+
12
+ ## Blocked
13
+ -
14
+
15
+ ## Next
16
+ - [ ]
17
+
18
+ ## Notes
19
+ -
@@ -1,16 +1,16 @@
1
- ---
2
- title: "{{title}}"
3
- date: {{date}}
4
- type: {{type}}
5
- ---
6
-
7
- # Lesson: {{title}}
8
-
9
- ## Insight
10
- -
11
-
12
- ## Evidence
13
- -
14
-
15
- ## Application
16
- -
1
+ ---
2
+ title: "{{title}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ ---
6
+
7
+ # Lesson: {{title}}
8
+
9
+ ## Insight
10
+ -
11
+
12
+ ## Evidence
13
+ -
14
+
15
+ ## Application
16
+ -
@@ -1,19 +1,19 @@
1
- ---
2
- title: "{{title}}"
3
- date: {{date}}
4
- type: {{type}}
5
- relationship: contact
6
- ---
7
-
8
- # {{title}}
9
-
10
- ## Context
11
- -
12
-
13
- ## Details
14
- - Contact:
15
- - Role:
16
- - Timezone:
17
-
18
- ## History
19
- - {{date}}:
1
+ ---
2
+ title: "{{title}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ relationship: contact
6
+ ---
7
+
8
+ # {{title}}
9
+
10
+ ## Context
11
+ -
12
+
13
+ ## Details
14
+ - Contact:
15
+ - Role:
16
+ - Timezone:
17
+
18
+ ## History
19
+ - {{date}}:
@@ -1,23 +1,23 @@
1
- ---
2
- title: "{{title}}"
3
- date: {{date}}
4
- type: {{type}}
5
- status: active
6
- ---
7
-
8
- # {{title}}
9
-
10
- ## Objective
11
- -
12
-
13
- ## Status
14
- - [ ] Planning
15
- - [ ] In progress
16
- - [ ] Blocked
17
- - [ ] Done
18
-
19
- ## Next
20
- - [ ]
21
-
22
- ## Notes
23
- -
1
+ ---
2
+ title: "{{title}}"
3
+ date: {{date}}
4
+ type: {{type}}
5
+ status: active
6
+ ---
7
+
8
+ # {{title}}
9
+
10
+ ## Objective
11
+ -
12
+
13
+ ## Status
14
+ - [ ] Planning
15
+ - [ ] In progress
16
+ - [ ] Blocked
17
+ - [ ] Done
18
+
19
+ ## Next
20
+ - [ ]
21
+
22
+ ## Notes
23
+ -