prjct-cli 2.32.0 → 2.32.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.
package/CHANGELOG.md CHANGED
@@ -1,54 +1,53 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.32.1] - 2026-05-30
4
+
5
+ ### Bug Fixes
6
+
7
+ - a correction must not credit its own inline reference (#390)
8
+
3
9
  ## [2.32.0] - 2026-05-30
4
10
 
5
11
  ### Features
6
12
 
7
13
  - learn from mistakes automatically — no command needed (#389)
8
14
 
9
-
10
15
  ## [2.31.0] - 2026-05-30
11
16
 
12
17
  ### Features
13
18
 
14
19
  - negative reinforcement — learn from mistakes too (#388)
15
20
 
16
-
17
21
  ## [2.30.0] - 2026-05-30
18
22
 
19
23
  ### Features
20
24
 
21
25
  - ship-success attribution — strongest reinforcement signal (#387)
22
26
 
23
-
24
27
  ## [2.29.0] - 2026-05-29
25
28
 
26
29
  ### Features
27
30
 
28
31
  - reinforcement loop — recall gets smarter with use (#386)
29
32
 
30
-
31
33
  ## [2.28.0] - 2026-05-29
32
34
 
33
35
  ### Features
34
36
 
35
37
  - optional semantic search via embeddings (phase 3 — complete) (#385)
36
38
 
37
-
38
39
  ## [2.27.0] - 2026-05-29
39
40
 
40
41
  ### Features
41
42
 
42
43
  - author-declared compaction in recall (phase 3) (#384)
43
44
 
44
-
45
45
  ## [2.26.0] - 2026-05-29
46
46
 
47
47
  ### Features
48
48
 
49
49
  - traverse the relationship graph on recall (phase 3) (#383)
50
50
 
51
-
52
51
  ## [2.25.0] - 2026-05-29
53
52
 
54
53
  ### Features
@@ -59,14 +58,12 @@
59
58
 
60
59
  - serve hooks from the warm daemon (~9x faster per hook) (#381)
61
60
 
62
-
63
61
  ## [2.24.3] - 2026-05-29
64
62
 
65
63
  ### Performance
66
64
 
67
65
  - hook hot-path benchmark (phase 0 instrumentation) (#380)
68
66
 
69
-
70
67
  ## [2.24.2] - 2026-05-29
71
68
 
72
69
  ### Performance
@@ -170,6 +167,11 @@
170
167
 
171
168
  ## [Unreleased]
172
169
 
170
+ ## [2.32.2] - 2026-05-30
171
+
172
+ ### Added
173
+ - current work
174
+
173
175
  ## [2.24.3] - 2026-05-30
174
176
 
175
177
  ### Added
package/bin/prjct CHANGED
@@ -149,6 +149,12 @@ run_with_node() {
149
149
  fi
150
150
  fi
151
151
 
152
+ # prjct uses node's built-in `node:sqlite` (zero native deps, no postinstall).
153
+ # On Node 22.5–23.x it lives behind `--experimental-sqlite`; on Node 24+ it's
154
+ # unflagged and the flag is a tolerated no-op. Exporting it (vs passing as an
155
+ # argv flag) means the daemon + any node child prjct spawns inherit it too.
156
+ # Prepended so a user's existing NODE_OPTIONS is preserved.
157
+ export NODE_OPTIONS="--experimental-sqlite${NODE_OPTIONS:+ $NODE_OPTIONS}"
152
158
  exec node "$DIST_BIN" "$@"
153
159
  }
154
160