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.
- package/README.md +159 -199
- package/bin/clawvault.js +111 -111
- package/bin/command-registration.test.js +166 -165
- package/bin/command-runtime.js +93 -77
- package/bin/command-runtime.test.js +154 -102
- package/bin/help-contract.test.js +39 -28
- package/bin/register-config-commands.js +153 -153
- package/bin/register-config-route-commands.test.js +121 -121
- package/bin/register-core-commands.js +237 -237
- package/bin/register-kanban-commands.js +56 -56
- package/bin/register-kanban-commands.test.js +83 -83
- package/bin/register-maintenance-commands.js +282 -248
- package/bin/register-project-commands.js +209 -209
- package/bin/register-project-commands.test.js +206 -201
- package/bin/register-query-commands.js +317 -312
- package/bin/register-query-commands.test.js +65 -0
- package/bin/register-resilience-commands.js +182 -182
- package/bin/register-resilience-commands.test.js +81 -81
- package/bin/register-route-commands.js +114 -114
- package/bin/register-session-lifecycle-commands.js +206 -206
- package/bin/register-tailscale-commands.js +106 -106
- package/bin/register-task-commands.js +348 -348
- package/bin/register-task-commands.test.js +69 -69
- package/bin/register-template-commands.js +72 -72
- package/bin/register-vault-operations-commands.js +300 -300
- package/bin/test-helpers/cli-command-fixtures.js +119 -119
- package/dashboard/lib/graph-diff.js +104 -104
- package/dashboard/lib/graph-diff.test.js +75 -75
- package/dashboard/lib/vault-parser.js +556 -556
- package/dashboard/lib/vault-parser.test.js +254 -254
- package/dashboard/public/app.js +796 -796
- package/dashboard/public/index.html +52 -52
- package/dashboard/public/styles.css +221 -221
- package/dashboard/server.js +374 -374
- package/dist/{chunk-G3OQJ2NQ.js → chunk-2YDBJS7M.js} +1 -1
- package/dist/chunk-3FP5BJ42.js +88 -0
- package/dist/{chunk-C3PF7WBA.js → chunk-4IV3R2F5.js} +2 -2
- package/dist/{chunk-7OHQFMJK.js → chunk-AY4PGUVL.js} +5 -4
- package/dist/chunk-FG6RJMCN.js +33 -0
- package/dist/{chunk-WIICLBNF.js → chunk-GFJ3LIIB.js} +1 -1
- package/dist/chunk-IZEY5S74.js +541 -0
- package/dist/chunk-LMEMZGUV.js +332 -0
- package/dist/{chunk-6RQPD7X6.js → chunk-M25QVSJM.js} +4 -3
- package/dist/{chunk-6B3JWM7J.js → chunk-O7XHXF7F.js} +34 -7
- package/dist/chunk-OSMS7QIG.js +406 -0
- package/dist/{chunk-PAYUH64O.js → chunk-QVMXF7FY.js} +11 -1
- package/dist/{chunk-TMZMN7OS.js → chunk-S2IG7VNM.js} +24 -12
- package/dist/{chunk-LMCC5OC7.js → chunk-TPDH3JPP.js} +1 -1
- package/dist/cli/index.d.ts +5 -0
- package/dist/cli/index.js +31 -0
- package/dist/commands/canvas.js +3 -3
- package/dist/commands/compat.js +1 -1
- package/dist/commands/context.js +4 -4
- package/dist/commands/doctor.js +16 -309
- package/dist/commands/embed.d.ts +17 -0
- package/dist/commands/embed.js +10 -0
- package/dist/commands/migrate-observations.js +2 -2
- package/dist/commands/observe.d.ts +1 -0
- package/dist/commands/observe.js +7 -6
- package/dist/commands/rebuild.js +5 -5
- package/dist/commands/reflect.js +3 -3
- package/dist/commands/replay.js +7 -7
- package/dist/commands/setup.d.ts +1 -0
- package/dist/commands/setup.js +2 -2
- package/dist/commands/sleep.d.ts +2 -1
- package/dist/commands/sleep.js +15 -15
- package/dist/commands/status.d.ts +9 -1
- package/dist/commands/status.js +33 -8
- package/dist/commands/wake.d.ts +1 -1
- package/dist/commands/wake.js +6 -6
- package/dist/index.d.ts +82 -5
- package/dist/index.js +127 -105
- package/dist/{types-jjuYN2Xn.d.ts → types-C74wgGL1.d.ts} +2 -0
- package/hooks/clawvault/HOOK.md +83 -74
- package/hooks/clawvault/handler.js +816 -812
- package/hooks/clawvault/handler.test.js +263 -263
- package/package.json +94 -125
- package/templates/checkpoint.md +19 -19
- package/templates/daily-note.md +19 -19
- package/templates/daily.md +19 -19
- package/templates/decision.md +17 -17
- package/templates/handoff.md +19 -19
- package/templates/lesson.md +16 -16
- package/templates/person.md +19 -19
- package/templates/project.md +23 -23
- package/dist/chunk-2RK2AG32.js +0 -743
- package/dist/{chunk-FW465EEA.js → chunk-VXEOHTSL.js} +3 -3
- 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.
|
|
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": "
|
|
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
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
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
|
+
}
|
package/templates/checkpoint.md
CHANGED
|
@@ -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
|
+
-
|
package/templates/daily-note.md
CHANGED
|
@@ -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
|
+
- [ ]
|
package/templates/daily.md
CHANGED
|
@@ -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
|
+
- [ ]
|
package/templates/decision.md
CHANGED
|
@@ -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
|
+
-
|
package/templates/handoff.md
CHANGED
|
@@ -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
|
+
-
|
package/templates/lesson.md
CHANGED
|
@@ -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
|
+
-
|
package/templates/person.md
CHANGED
|
@@ -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}}:
|
package/templates/project.md
CHANGED
|
@@ -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
|
+
-
|