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
Copy file name to clipboardExpand all lines: GUIDE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ cd git-mind
64
64
npm install
65
65
```
66
66
67
-
git-mind depends on `@git-stunts/git-warp`, which is currently installed from a local path. See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup details.
67
+
git-mind depends on the published `@git-stunts/git-warp` package. See [CONTRIBUTING.md](CONTRIBUTING.md) for current development setup details.
Copy file name to clipboardExpand all lines: TECH-PLAN.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The key insight: **Git is already a graph database.** It has an immutable object
20
20
21
21
## 2. Storage Layer: git-warp
22
22
23
-
git-mind delegates persistence to **@git-stunts/git-warp** (v10.3.2), a CRDT graph database that uses Git's object store as its backend.
23
+
git-mind delegates persistence to **@git-stunts/git-warp**. The specific version in use is defined in [package.json](package.json); this historical document originally described the `v10.3.2` era of the substrate.
Copy file name to clipboardExpand all lines: docs/design/git-warp-upgrade-audit.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# git-warp Upgrade Audit
2
2
3
-
Status: draft for execution
3
+
Status: active execution on `feat/git-warp-upgrade-audit`
4
4
5
5
Related:
6
6
@@ -29,7 +29,7 @@ It is a boundary audit plus upgrade cycle.
29
29
30
30
## Context
31
31
32
-
Current local dependency state:
32
+
Cycle starting state:
33
33
34
34
- declared in `package.json` as `^11.5.0`
35
35
- locked and installed at `11.5.0`
@@ -38,7 +38,11 @@ Live npm registry state checked on 2026-03-25:
38
38
39
39
- latest published `@git-stunts/git-warp` version: `14.16.2`
40
40
41
-
That means Git Mind is currently three major versions behind the latest published package.
41
+
Chosen upgrade target for this cycle:
42
+
43
+
-`14.16.2`
44
+
45
+
That means this cycle upgrades Git Mind across three major versions of the substrate.
42
46
43
47
This does not automatically mean "upgrade immediately no matter what."
44
48
It does mean Git Mind should not keep expanding Hill 1 behavior without auditing the real upgrade surface first.
@@ -106,9 +110,13 @@ The upgrade should pay special attention to:
106
110
107
111
## Known Mismatches Already Exposed
108
112
109
-
At least one contributor-facing document still says Git Mind depends on git-warp via a local path.
113
+
This cycle exposed one concrete runtime compatibility change:
114
+
115
+
-`graph.getNodeProps()` now returns plain objects rather than `Map` instances
116
+
117
+
Git Mind must treat node property bags as a compatibility boundary rather than assuming a single container shape.
110
118
111
-
That no longer matches the actual package metadata and should be corrected as part of this cycle.
119
+
This cycle also started with contributor-facing docs that still claimed git-warp was installed via local path. Those docs should be corrected as part of the upgrade.
0 commit comments