prjct-cli 2.45.0 → 2.46.0
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 +5 -15
- package/dist/bin/prjct-core.mjs +358 -358
- package/dist/daemon/entry.mjs +276 -276
- package/dist/mcp/server.mjs +198 -189
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.46.0] - 2026-06-19
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- dynamic audit-spec lenses (deterministic baseline + agent override)
|
|
9
|
+
|
|
5
10
|
### Fixed
|
|
6
11
|
- **The first command after an upgrade no longer stalls.** The post-upgrade re-setup (provider installers, Context7 verification, the per-project migration over the whole projects dir) ran synchronously inside whatever command the user happened to run first — up to ~30s of silent blocking on machines with large project dirs. It now runs in a detached `__post-upgrade` child (the auto-updater pattern): the command returns immediately (measured 31.6s → 0.10s) and a one-line banner says setup is finishing in the background. Explicit `prjct update` keeps its synchronous, progress-printing behavior. Both detached-child internals are now in the daemon shim's skip set — routing them to the daemon silently failed them.
|
|
7
12
|
|
|
@@ -14,7 +19,6 @@
|
|
|
14
19
|
|
|
15
20
|
- lean — anti-over-engineering capability (prjct-native ponytail) (#434)
|
|
16
21
|
|
|
17
|
-
|
|
18
22
|
## [2.44.2] - 2026-06-12
|
|
19
23
|
|
|
20
24
|
### Bug Fixes
|
|
@@ -25,56 +29,48 @@
|
|
|
25
29
|
|
|
26
30
|
- dead-code + anti-pattern sweep — DRY/KISS pass (#431)
|
|
27
31
|
|
|
28
|
-
|
|
29
32
|
## [2.44.1] - 2026-06-12
|
|
30
33
|
|
|
31
34
|
### Performance
|
|
32
35
|
|
|
33
36
|
- token diet — coarse timestamps, quiet state lines, counts-only skill State, instruction dedupe (#430)
|
|
34
37
|
|
|
35
|
-
|
|
36
38
|
## [2.44.0] - 2026-06-11
|
|
37
39
|
|
|
38
40
|
### Features
|
|
39
41
|
|
|
40
42
|
- retrieval quality — superseded filter, proven-first digests, MCP parity, push-path ship credit, unicode keywords (#429)
|
|
41
43
|
|
|
42
|
-
|
|
43
44
|
## [2.43.4] - 2026-06-11
|
|
44
45
|
|
|
45
46
|
### Performance
|
|
46
47
|
|
|
47
48
|
- indexed range queries, git TTL cache, version-aware vault fingerprint, upgrade-scan guard (#428)
|
|
48
49
|
|
|
49
|
-
|
|
50
50
|
## [2.43.3] - 2026-06-11
|
|
51
51
|
|
|
52
52
|
### Bug Fixes
|
|
53
53
|
|
|
54
54
|
- Codex first-class — skill under 1KB cap, MCP wiring, real AGENTS.md, doctor checks (#427)
|
|
55
55
|
|
|
56
|
-
|
|
57
56
|
## [2.43.2] - 2026-06-11
|
|
58
57
|
|
|
59
58
|
### Bug Fixes
|
|
60
59
|
|
|
61
60
|
- release job is idempotent — recovery path for partial failures + retried npm publish (#426)
|
|
62
61
|
|
|
63
|
-
|
|
64
62
|
## [2.43.1] - 2026-06-11
|
|
65
63
|
|
|
66
64
|
### Bug Fixes
|
|
67
65
|
|
|
68
66
|
- memory cap never deletes knowledge — exclude memory.remember.* from capEntries (#425)
|
|
69
67
|
|
|
70
|
-
|
|
71
68
|
## [2.43.0] - 2026-06-10
|
|
72
69
|
|
|
73
70
|
### Features
|
|
74
71
|
|
|
75
72
|
- vault v2 — signal-first RAG (telemetry quarantine, link-only tags, dashboard index) (#424)
|
|
76
73
|
|
|
77
|
-
|
|
78
74
|
## [2.42.6] - 2026-06-10
|
|
79
75
|
|
|
80
76
|
### Bug Fixes
|
|
@@ -85,35 +81,30 @@
|
|
|
85
81
|
|
|
86
82
|
- pin bun via .bun-version — stop resolving 'latest' on every run (#423)
|
|
87
83
|
|
|
88
|
-
|
|
89
84
|
## [2.42.5] - 2026-06-10
|
|
90
85
|
|
|
91
86
|
### Bug Fixes
|
|
92
87
|
|
|
93
88
|
- confirmed findings from the v2.42.x range code review (#421)
|
|
94
89
|
|
|
95
|
-
|
|
96
90
|
## [2.42.4] - 2026-06-10
|
|
97
91
|
|
|
98
92
|
### Performance
|
|
99
93
|
|
|
100
94
|
- optimization backlog — FTS5 prefix indexes, god-file splits, glob removal + broken post-upgrade setup fixed (#420)
|
|
101
95
|
|
|
102
|
-
|
|
103
96
|
## [2.42.3] - 2026-06-10
|
|
104
97
|
|
|
105
98
|
### Refactoring
|
|
106
99
|
|
|
107
100
|
- follow-ups — workflow-engine rename, PRJCT_CLI_HOME everywhere, bin split, lazy daemon groups (#419)
|
|
108
101
|
|
|
109
|
-
|
|
110
102
|
## [2.42.2] - 2026-06-10
|
|
111
103
|
|
|
112
104
|
### Refactoring
|
|
113
105
|
|
|
114
106
|
- single command manifest — quadruple dispatch eliminated, flag-strip class gone by construction (#418)
|
|
115
107
|
|
|
116
|
-
|
|
117
108
|
## [2.42.1] - 2026-06-10
|
|
118
109
|
|
|
119
110
|
### Performance
|
|
@@ -134,7 +125,6 @@
|
|
|
134
125
|
|
|
135
126
|
- feat: LLM-first surface — untruncated agent output, subagent digest, skill-miss loop, indexed recall (#415)
|
|
136
127
|
|
|
137
|
-
|
|
138
128
|
## [2.41.0] - 2026-06-09
|
|
139
129
|
|
|
140
130
|
Memory recall + apply-loop: prjct now *applies* what it learns at the moment it matters, not just on demand — and the knowledge survives model updates.
|