get-claudia 1.42.0 → 1.42.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.
package/package.json
CHANGED
|
@@ -19,30 +19,43 @@ Claudia's memory lives in SQLite (the source of truth). The vault at `~/.claudia
|
|
|
19
19
|
|
|
20
20
|
```
|
|
21
21
|
vault/
|
|
22
|
-
Home.md
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
22
|
+
Home.md PARA navigation dashboard (regenerated each sync)
|
|
23
|
+
Active/ Projects with active attention
|
|
24
|
+
Website Redesign.md
|
|
25
|
+
_Index.md MOC for active projects
|
|
26
|
+
Relationships/
|
|
27
|
+
people/ Person entities (non-archived)
|
|
28
|
+
Sarah Chen.md
|
|
29
|
+
_Index.md MOC grouped by attention tier
|
|
30
|
+
organizations/ Organization entities (non-archived)
|
|
31
|
+
Acme Corp.md
|
|
32
|
+
_Index.md
|
|
33
|
+
Reference/
|
|
34
|
+
concepts/ Knowledge, frameworks, tools
|
|
35
|
+
_Index.md
|
|
36
|
+
locations/ Places
|
|
37
|
+
_Index.md
|
|
38
|
+
Archive/ Dormant or archived entities
|
|
39
|
+
people/
|
|
40
|
+
projects/
|
|
41
|
+
organizations/
|
|
42
|
+
Claudia's Desk/ Claudia's efficient lookup zone
|
|
43
|
+
MOC-People.md Flat tier table (Claudia reads, ~0 MCP cost)
|
|
44
|
+
MOC-Commitments.md Commitment tracking table
|
|
45
|
+
MOC-Projects.md Project overview table
|
|
46
|
+
patterns/ Detected pattern notes
|
|
47
|
+
reflections/ Reflections from /meditate
|
|
48
|
+
sessions/ Session logs (YYYY/MM/YYYY-MM-DD.md)
|
|
49
|
+
_queries/ Dataview query templates (7 templates)
|
|
50
|
+
canvases/ Visual dashboards (.canvas files)
|
|
51
|
+
_meta/ Sync metadata (last-sync.json, sync-log.md)
|
|
52
|
+
.obsidian/ Obsidian config
|
|
53
|
+
graph.json Color groups by entity type
|
|
54
|
+
app.json Readable line length, show frontmatter
|
|
55
|
+
appearance.json Enable claudia-theme CSS snippet
|
|
56
|
+
workspace.json Open Home.md on launch
|
|
44
57
|
snippets/
|
|
45
|
-
claudia-theme.css
|
|
58
|
+
claudia-theme.css Entity type emoji prefixes, tag colors
|
|
46
59
|
```
|
|
47
60
|
|
|
48
61
|
### How Notes Map to Memory
|
|
@@ -56,11 +69,25 @@ Each entity gets one markdown note with:
|
|
|
56
69
|
- **Wikilinks**: Relationships and session narratives use `[[Entity Name]]` links for graph connectivity
|
|
57
70
|
- **Sync footer**: Last sync timestamp
|
|
58
71
|
|
|
72
|
+
### PARA Routing Logic
|
|
73
|
+
|
|
74
|
+
Entities are routed to PARA directories based on their type and status:
|
|
75
|
+
|
|
76
|
+
- `attention_tier = "archive"` OR `contact_trend = "dormant"` → `Archive/{type}/`
|
|
77
|
+
- `entity_type = "project"` → `Active/`
|
|
78
|
+
- `entity_type = "person"` → `Relationships/people/`
|
|
79
|
+
- `entity_type = "organization"` → `Relationships/organizations/`
|
|
80
|
+
- `entity_type = "concept"` → `Reference/concepts/`
|
|
81
|
+
- `entity_type = "location"` → `Reference/locations/`
|
|
82
|
+
|
|
83
|
+
Archive routing takes precedence: a dormant person goes to `Archive/people/`, not `Relationships/people/`.
|
|
84
|
+
|
|
59
85
|
### Navigation
|
|
60
86
|
|
|
61
|
-
- **Home.md**:
|
|
62
|
-
- **_Index.md**: Map of Content
|
|
63
|
-
- **
|
|
87
|
+
- **Home.md**: PARA navigation dashboard with active projects, relationship counts, needs-attention callouts, and quick links to Claudia's Desk
|
|
88
|
+
- **_Index.md**: Map of Content files in each PARA subdirectory, grouped by attention tier
|
|
89
|
+
- **Claudia's Desk/MOC-*.md**: Pre-computed flat tables for cheap reads (MOC-People, MOC-Commitments, MOC-Projects)
|
|
90
|
+
- **Dataview queries**: 7 templates in `Claudia's Desk/_queries/` (Upcoming Deadlines, Cooling Relationships, Active Network, Recent Memories, Open Commitments, Entity Overview, Session Log)
|
|
64
91
|
|
|
65
92
|
### Canvas Files
|
|
66
93
|
|
|
@@ -155,23 +182,26 @@ Open it in Obsidian to see the interactive graph."
|
|
|
155
182
|
When referencing entities in conversation, generate `obsidian://` URIs so the user can jump directly to the note:
|
|
156
183
|
|
|
157
184
|
```
|
|
158
|
-
obsidian://open?vault=claudia-vault&file={
|
|
185
|
+
obsidian://open?vault=claudia-vault&file={para_dir}/{entity_name}
|
|
159
186
|
```
|
|
160
187
|
|
|
161
|
-
### Type-to-Directory Mapping
|
|
188
|
+
### Type-to-Directory Mapping (PARA)
|
|
189
|
+
|
|
190
|
+
| Entity Type | PARA Directory | Archive Directory |
|
|
191
|
+
|-------------|---------------|-------------------|
|
|
192
|
+
| person | Relationships/people | Archive/people |
|
|
193
|
+
| project | Active | Archive/projects |
|
|
194
|
+
| organization | Relationships/organizations | Archive/organizations |
|
|
195
|
+
| concept | Reference/concepts | (not archived) |
|
|
196
|
+
| location | Reference/locations | (not archived) |
|
|
162
197
|
|
|
163
|
-
|
|
164
|
-
|-------------|-----------|
|
|
165
|
-
| person | people |
|
|
166
|
-
| project | projects |
|
|
167
|
-
| organization | organizations |
|
|
168
|
-
| concept | concepts |
|
|
169
|
-
| location | locations |
|
|
198
|
+
Archived/dormant entities route to `Archive/{type}/`. Deep links must account for `attention_tier`/`contact_trend` to determine the correct path.
|
|
170
199
|
|
|
171
200
|
### Examples
|
|
172
201
|
|
|
173
|
-
- `obsidian://open?vault=claudia-vault&file=people/Sarah%20Chen`
|
|
174
|
-
- `obsidian://open?vault=claudia-vault&file=
|
|
202
|
+
- `obsidian://open?vault=claudia-vault&file=Relationships/people/Sarah%20Chen`
|
|
203
|
+
- `obsidian://open?vault=claudia-vault&file=Active/Website%20Redesign`
|
|
204
|
+
- `obsidian://open?vault=claudia-vault&file=Claudia's%20Desk/MOC-People`
|
|
175
205
|
|
|
176
206
|
### When to Include Deep Links
|
|
177
207
|
|