prjct-cli 2.24.2 → 2.25.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 +23 -3
- package/dist/bin/prjct-core.mjs +387 -381
- package/dist/bin/prjct.mjs +20 -1
- package/dist/daemon/entry.mjs +330 -300
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/crew/CLAUDE-leader-mode.md +17 -3
- package/templates/crew/agents/leader.md +36 -10
- package/templates/skills/prjct/SKILL.md +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.25.0] - 2026-05-29
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- parallel executor fan-out + reconcile skill-vs-crew (#382)
|
|
8
|
+
|
|
9
|
+
### Performance
|
|
10
|
+
|
|
11
|
+
- serve hooks from the warm daemon (~9x faster per hook) (#381)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.24.3] - 2026-05-29
|
|
15
|
+
|
|
16
|
+
### Performance
|
|
17
|
+
|
|
18
|
+
- hook hot-path benchmark (phase 0 instrumentation) (#380)
|
|
19
|
+
|
|
20
|
+
|
|
3
21
|
## [2.24.2] - 2026-05-29
|
|
4
22
|
|
|
5
23
|
### Performance
|
|
6
24
|
|
|
7
25
|
- retrieval quality + robustness hardening (phases 1/2/4) (#379)
|
|
8
26
|
|
|
9
|
-
|
|
10
27
|
## [2.24.1] - 2026-05-21
|
|
11
28
|
|
|
12
29
|
### Bug Fixes
|
|
@@ -17,14 +34,12 @@
|
|
|
17
34
|
|
|
18
35
|
- dead _-prefixed defs round 2 + iCloud conflict-dir sweep + knip in CI (#376)
|
|
19
36
|
|
|
20
|
-
|
|
21
37
|
## [2.24.0] - 2026-05-21
|
|
22
38
|
|
|
23
39
|
### Features
|
|
24
40
|
|
|
25
41
|
- FTS5 BM25 recall + hot-path parallelization + smarter tokenizer (v2.23.18) (#375)
|
|
26
42
|
|
|
27
|
-
|
|
28
43
|
## [2.23.8] - 2026-05-19
|
|
29
44
|
|
|
30
45
|
### Bug Fixes
|
|
@@ -106,6 +121,11 @@
|
|
|
106
121
|
|
|
107
122
|
## [Unreleased]
|
|
108
123
|
|
|
124
|
+
## [2.24.3] - 2026-05-30
|
|
125
|
+
|
|
126
|
+
### Added
|
|
127
|
+
- current work
|
|
128
|
+
|
|
109
129
|
## [2.23.18] - 2026-05-20
|
|
110
130
|
|
|
111
131
|
### Added
|