prjct-cli 2.32.1 → 2.32.3
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 +10 -10
- package/bin/prjct +6 -0
- package/dist/bin/prjct-core.mjs +320 -319
- package/dist/daemon/entry.mjs +216 -215
- package/dist/mcp/server.mjs +48 -47
- package/package.json +3 -12
- package/scripts/ensure-native-deps.js +0 -64
- package/scripts/postinstall.js +0 -49
package/CHANGELOG.md
CHANGED
|
@@ -6,56 +6,48 @@
|
|
|
6
6
|
|
|
7
7
|
- a correction must not credit its own inline reference (#390)
|
|
8
8
|
|
|
9
|
-
|
|
10
9
|
## [2.32.0] - 2026-05-30
|
|
11
10
|
|
|
12
11
|
### Features
|
|
13
12
|
|
|
14
13
|
- learn from mistakes automatically — no command needed (#389)
|
|
15
14
|
|
|
16
|
-
|
|
17
15
|
## [2.31.0] - 2026-05-30
|
|
18
16
|
|
|
19
17
|
### Features
|
|
20
18
|
|
|
21
19
|
- negative reinforcement — learn from mistakes too (#388)
|
|
22
20
|
|
|
23
|
-
|
|
24
21
|
## [2.30.0] - 2026-05-30
|
|
25
22
|
|
|
26
23
|
### Features
|
|
27
24
|
|
|
28
25
|
- ship-success attribution — strongest reinforcement signal (#387)
|
|
29
26
|
|
|
30
|
-
|
|
31
27
|
## [2.29.0] - 2026-05-29
|
|
32
28
|
|
|
33
29
|
### Features
|
|
34
30
|
|
|
35
31
|
- reinforcement loop — recall gets smarter with use (#386)
|
|
36
32
|
|
|
37
|
-
|
|
38
33
|
## [2.28.0] - 2026-05-29
|
|
39
34
|
|
|
40
35
|
### Features
|
|
41
36
|
|
|
42
37
|
- optional semantic search via embeddings (phase 3 — complete) (#385)
|
|
43
38
|
|
|
44
|
-
|
|
45
39
|
## [2.27.0] - 2026-05-29
|
|
46
40
|
|
|
47
41
|
### Features
|
|
48
42
|
|
|
49
43
|
- author-declared compaction in recall (phase 3) (#384)
|
|
50
44
|
|
|
51
|
-
|
|
52
45
|
## [2.26.0] - 2026-05-29
|
|
53
46
|
|
|
54
47
|
### Features
|
|
55
48
|
|
|
56
49
|
- traverse the relationship graph on recall (phase 3) (#383)
|
|
57
50
|
|
|
58
|
-
|
|
59
51
|
## [2.25.0] - 2026-05-29
|
|
60
52
|
|
|
61
53
|
### Features
|
|
@@ -66,14 +58,12 @@
|
|
|
66
58
|
|
|
67
59
|
- serve hooks from the warm daemon (~9x faster per hook) (#381)
|
|
68
60
|
|
|
69
|
-
|
|
70
61
|
## [2.24.3] - 2026-05-29
|
|
71
62
|
|
|
72
63
|
### Performance
|
|
73
64
|
|
|
74
65
|
- hook hot-path benchmark (phase 0 instrumentation) (#380)
|
|
75
66
|
|
|
76
|
-
|
|
77
67
|
## [2.24.2] - 2026-05-29
|
|
78
68
|
|
|
79
69
|
### Performance
|
|
@@ -177,6 +167,16 @@
|
|
|
177
167
|
|
|
178
168
|
## [Unreleased]
|
|
179
169
|
|
|
170
|
+
## [2.32.3] - 2026-05-30
|
|
171
|
+
|
|
172
|
+
### Added
|
|
173
|
+
- memory dedup en capture + heal histórico (RAG #1): content-fingerprint, dedup net en remember(), fix friction-detector 64-vs-12, migración v25 backfill+purga
|
|
174
|
+
|
|
175
|
+
## [2.32.2] - 2026-05-30
|
|
176
|
+
|
|
177
|
+
### Added
|
|
178
|
+
- current work
|
|
179
|
+
|
|
180
180
|
## [2.24.3] - 2026-05-30
|
|
181
181
|
|
|
182
182
|
### 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
|
|