You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Complete architectural overhaul reorganizing the codebase into self-contained feature slices. This release establishes a foundation optimized for AI-assisted development and long-term maintainability.
13
+
14
+
### Architecture Transformation
15
+
16
+
**Vertical Slice Pattern**
17
+
- Reorganized from scattered files to 21 self-contained feature slices
18
+
- Each feature owns its store slice, services, components, and documentation
19
+
- Established `src/core/` for shared infrastructure (store, services, hooks, components)
20
+
- Eliminated cross-feature dependencies through clear boundary ownership
21
+
22
+
**Feature Catalog**
23
+
| Feature | Purpose |
24
+
|---------|---------|
25
+
|`dreamnode`| Core types, services, git operations, 3D visualization |
26
+
|`dreamnode-creator`| Node creation workflow (renamed from proto-node) |
27
+
|`dreamnode-editor`| Node editing workflow (renamed from edit-mode) |
28
+
|`constellation-layout`| Fibonacci sphere distribution + cluster generation |
29
+
|`liminal-web-layout`| Focused node with ring relationships |
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "interbrain",
3
-
"version": "0.8.0",
4
-
"description": "A revolutionary knowledge management system for Obsidian that transcends traditional Second Brain paradigms",
3
+
"version": "0.9.0",
4
+
"description": "An Obsidian plugin that transforms Personal Knowledge Management into Collective Knowledge Gardening, transcending the traditional Second Brain paradigm",
0 commit comments