prjct-cli 2.24.3 → 2.26.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/mcp/server.mjs +23 -23
- 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,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.26.0] - 2026-05-29
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- traverse the relationship graph on recall (phase 3) (#383)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [2.25.0] - 2026-05-29
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- parallel executor fan-out + reconcile skill-vs-crew (#382)
|
|
15
|
+
|
|
16
|
+
### Performance
|
|
17
|
+
|
|
18
|
+
- serve hooks from the warm daemon (~9x faster per hook) (#381)
|
|
19
|
+
|
|
20
|
+
|
|
3
21
|
## [2.24.3] - 2026-05-29
|
|
4
22
|
|
|
5
23
|
### Performance
|
|
@@ -13,7 +31,6 @@
|
|
|
13
31
|
|
|
14
32
|
- retrieval quality + robustness hardening (phases 1/2/4) (#379)
|
|
15
33
|
|
|
16
|
-
|
|
17
34
|
## [2.24.1] - 2026-05-21
|
|
18
35
|
|
|
19
36
|
### Bug Fixes
|
|
@@ -24,14 +41,12 @@
|
|
|
24
41
|
|
|
25
42
|
- dead _-prefixed defs round 2 + iCloud conflict-dir sweep + knip in CI (#376)
|
|
26
43
|
|
|
27
|
-
|
|
28
44
|
## [2.24.0] - 2026-05-21
|
|
29
45
|
|
|
30
46
|
### Features
|
|
31
47
|
|
|
32
48
|
- FTS5 BM25 recall + hot-path parallelization + smarter tokenizer (v2.23.18) (#375)
|
|
33
49
|
|
|
34
|
-
|
|
35
50
|
## [2.23.8] - 2026-05-19
|
|
36
51
|
|
|
37
52
|
### Bug Fixes
|
|
@@ -113,6 +128,11 @@
|
|
|
113
128
|
|
|
114
129
|
## [Unreleased]
|
|
115
130
|
|
|
131
|
+
## [2.24.3] - 2026-05-30
|
|
132
|
+
|
|
133
|
+
### Added
|
|
134
|
+
- current work
|
|
135
|
+
|
|
116
136
|
## [2.23.18] - 2026-05-20
|
|
117
137
|
|
|
118
138
|
### Added
|