contextgit 0.2.1 → 0.2.2

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 (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -173,9 +173,13 @@ Project config lives at `.contextgit/config.json`:
173
173
  }
174
174
  ```
175
175
 
176
+ ## What's new in 0.2.2
177
+
178
+ Bugfix release for plan-node completeness. A plan or step you explicitly mark `done` is now honored: the completeness rule is `container.complete = (status === 'done') OR (has children AND all children complete)`. Previously a container's own status was ignored, so a step you'd marked done rendered as pending (`○`) and dropped out of its parent's `[X/Y done]` rollup — a fresh session could report shipped work as "not started." The marker and the rollup now derive from one rule and always agree, and the `← next` pointer skips the subtree of a done container. Marking a container done does not cascade to its children (their stored status is left intact). See [CHANGELOG.md](./CHANGELOG.md) for the full notes.
179
+
176
180
  ## Current status
177
181
 
178
- Early-stage but solid for solo developers using Claude Code across one or more machines. As of 0.2.0 the memory layer is structured into three tiers — a live roadmap, commit-bound context saves, and a pull-only reasoning trace — with a plan hierarchy, automatic thread decay, and windowed retrieval. See [CHANGELOG.md](./CHANGELOG.md) for the full 0.2.0 changes.
182
+ Early-stage but solid for solo developers using Claude Code across one or more machines. As of 0.2.0 the memory layer is structured into three tiers — a live roadmap, commit-bound context saves, and a pull-only reasoning trace — with a plan hierarchy, automatic thread decay, and windowed retrieval. See [CHANGELOG.md](./CHANGELOG.md) for the full changes.
179
183
 
180
184
  ## Known limitations
181
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contextgit",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "contextgit": "./bin/run.js",
@@ -33,10 +33,10 @@
33
33
  "typecheck": "tsc --noEmit"
34
34
  },
35
35
  "dependencies": {
36
- "@contextgit/core": "0.2.1",
37
- "@contextgit/store": "0.2.1",
38
- "@contextgit/api": "0.2.1",
39
- "@contextgit/mcp": "0.2.1",
36
+ "@contextgit/core": "0.2.2",
37
+ "@contextgit/store": "0.2.2",
38
+ "@contextgit/api": "0.2.2",
39
+ "@contextgit/mcp": "0.2.2",
40
40
  "@oclif/core": "^3.27.0",
41
41
  "nanoid": "^5.0.0",
42
42
  "simple-git": "^3.27.0"