prjct-cli 2.23.2 → 2.23.4
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 +22 -93
- package/README.md +220 -9
- package/dist/bin/prjct-core.mjs +326 -321
- package/dist/daemon/entry.mjs +219 -214
- package/dist/mcp/server.mjs +36 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.23.4] - 2026-05-18
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- vault: link cross-references by the note's real slug/basename, not the `mem_N` frontmatter alias — Obsidian's Graph view resolves links by path/basename and ignores aliases, so v2.23.3's alias-only links were graph-invisible (with `hideUnresolved` the relations disappeared entirely). Relations now render as actual graph edges.
|
|
8
|
+
|
|
9
|
+
## [2.23.3] - 2026-05-18
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- vault: one note per memory entry → reconnected, human-legible Obsidian graph; titles not mem_N keys; idTypeIndex from full set; relation tags no longer fragment into orphan stubs (fixes "todas las relaciones se perdieron")
|
|
14
|
+
|
|
3
15
|
## [2.23.2] - 2026-05-18
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
6
18
|
|
|
7
19
|
- vault makes every mem_N navigable — Obsidian anchors + linkified cross-refs (mem_3233) (#356)
|
|
8
20
|
|
|
9
|
-
|
|
10
21
|
## [2.23.1] - 2026-05-18
|
|
11
22
|
|
|
12
23
|
### Bug Fixes
|
|
13
24
|
|
|
14
25
|
- orchestrator triage-first — stop funneling every action through spec+reviewers (#355)
|
|
15
26
|
|
|
16
|
-
|
|
17
27
|
## [2.23.0] - 2026-05-18
|
|
18
28
|
|
|
19
29
|
### Features
|
|
@@ -24,14 +34,12 @@
|
|
|
24
34
|
|
|
25
35
|
- make prjct upgrade bulletproof — no silent misroute, no stale-daemon, no downgrade (#353)
|
|
26
36
|
|
|
27
|
-
|
|
28
37
|
## [2.22.1] - 2026-05-18
|
|
29
38
|
|
|
30
39
|
### Bug Fixes
|
|
31
40
|
|
|
32
41
|
- changelog generator PROMOTES [Unreleased] instead of stranding it (mem_2895 root cause) (#352)
|
|
33
42
|
|
|
34
|
-
|
|
35
43
|
## [2.22.0] - 2026-05-18
|
|
36
44
|
|
|
37
45
|
### Features
|
|
@@ -44,7 +52,6 @@
|
|
|
44
52
|
- WS2b SQLite hardening — BEGIN IMMEDIATE txns, statement-cache + daemon-cache gating (#349)
|
|
45
53
|
- WS3 P2 reliability — timer leak, backup clobber, daemon-exit, WAL checkpoint, duplicate-POST (#348)
|
|
46
54
|
|
|
47
|
-
|
|
48
55
|
## [2.21.1] - 2026-05-18
|
|
49
56
|
|
|
50
57
|
### Bug Fixes
|
|
@@ -53,9 +60,18 @@
|
|
|
53
60
|
- optimistic CAS on StorageManager.update() — close the lost-update data race (#346)
|
|
54
61
|
- gate workflow rules ingested from repo markdown (close clone-to-RCE) (#345)
|
|
55
62
|
|
|
56
|
-
|
|
57
63
|
## [Unreleased]
|
|
58
64
|
|
|
65
|
+
## [2.23.4] - 2026-05-18
|
|
66
|
+
|
|
67
|
+
### Added
|
|
68
|
+
- vault: link by note slug not alias — fix Obsidian graph (alias links graph-invisible)
|
|
69
|
+
|
|
70
|
+
## [2.23.3] - 2026-05-18
|
|
71
|
+
|
|
72
|
+
### Added
|
|
73
|
+
- vault: nota por entrada + grafo conectado legible (fix relaciones perdidas)
|
|
74
|
+
|
|
59
75
|
## [2.21.0] - 2026-05-17
|
|
60
76
|
|
|
61
77
|
### Features
|
|
@@ -78,7 +94,6 @@
|
|
|
78
94
|
|
|
79
95
|
- **skill-miss-detector no longer false-positives after a crew run (#16 follow-up) (#339).** Crew implementer/reviewer run as isolated subagents in the *shared* working tree, so at the leader's Stop hook `getModifiedFiles()` saw their edits and path-overlap relevance fired — but the leader transcript never carries the memory references the subagent made in its own isolated transcript, producing a false skill-miss nag for every crew-touched file. Fix: `detectSkillMisses` collects the `files_touched` of crew runs whose `ended_at` is within `CREW_RUN_RECENCY_MS` (6h) via `crewRunStorage.list` and excludes them from path-overlap relevance; token-overlap detection stays active so non-crew work in the same session is still covered. Crew itself is unchanged (it was architecturally correct). Best-effort — any failure degrades to prior behavior. Tests: `core/__tests__/services/skill-miss-detector.test.ts`.
|
|
80
96
|
|
|
81
|
-
|
|
82
97
|
## [2.20.0] - 2026-05-17
|
|
83
98
|
|
|
84
99
|
### Added
|
|
@@ -180,28 +195,24 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
180
195
|
|
|
181
196
|
- Phase 1.6 — close the wire on Phase 1.5 (B1-B4) (#324)
|
|
182
197
|
|
|
183
|
-
|
|
184
198
|
## [2.18.1] - 2026-05-05
|
|
185
199
|
|
|
186
200
|
### Bug Fixes
|
|
187
201
|
|
|
188
202
|
- make spec update --json a PATCH (shallow merge), not full replace (#323)
|
|
189
203
|
|
|
190
|
-
|
|
191
204
|
## [2.18.0] - 2026-05-05
|
|
192
205
|
|
|
193
206
|
### Features
|
|
194
207
|
|
|
195
208
|
- auto-breakdown spec acceptance criteria into queue tasks on audit pass (#322)
|
|
196
209
|
|
|
197
|
-
|
|
198
210
|
## [2.17.0] - 2026-05-05
|
|
199
211
|
|
|
200
212
|
### Features
|
|
201
213
|
|
|
202
214
|
- Phase 1.6 — brownfield-aware SDD (auto-context + codebase reviewers + inventory) (#321)
|
|
203
215
|
|
|
204
|
-
|
|
205
216
|
## [2.16.0] - 2026-05-04
|
|
206
217
|
|
|
207
218
|
### Features
|
|
@@ -212,7 +223,6 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
212
223
|
|
|
213
224
|
- drop unused imports in entity-handlers (#320)
|
|
214
225
|
|
|
215
|
-
|
|
216
226
|
## [2.15.0] - 2026-05-03
|
|
217
227
|
|
|
218
228
|
### Features — SDD: Spec-Driven Development (#318)
|
|
@@ -259,84 +269,72 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
259
269
|
- split 1454-line wiki-generator into pure builders (#307)
|
|
260
270
|
- introduce runHook<I> runner — DRY the hook quartet (#305)
|
|
261
271
|
|
|
262
|
-
|
|
263
272
|
## [2.14.0] - 2026-05-02
|
|
264
273
|
|
|
265
274
|
### Features
|
|
266
275
|
|
|
267
276
|
- cleanup + friction-detection + proactive improvement loop (#302)
|
|
268
277
|
|
|
269
|
-
|
|
270
278
|
## [2.13.0] - 2026-05-02
|
|
271
279
|
|
|
272
280
|
### Features
|
|
273
281
|
|
|
274
282
|
- project CLAUDE.md routing + onboarding rewrite (UX phase 4+5) (#301)
|
|
275
283
|
|
|
276
|
-
|
|
277
284
|
## [2.12.0] - 2026-05-02
|
|
278
285
|
|
|
279
286
|
### Features
|
|
280
287
|
|
|
281
288
|
- inject project state per turn (UX phase 3) (#300)
|
|
282
289
|
|
|
283
|
-
|
|
284
290
|
## [2.11.0] - 2026-05-02
|
|
285
291
|
|
|
286
292
|
### Features
|
|
287
293
|
|
|
288
294
|
- verb intent map + suggest/auto-execute protocol (UX phase 1+2) (#299)
|
|
289
295
|
|
|
290
|
-
|
|
291
296
|
## [2.10.1] - 2026-05-02
|
|
292
297
|
|
|
293
298
|
### Bug Fixes
|
|
294
299
|
|
|
295
300
|
- zero-out every quality check (typecheck/lint/tests/knip) (#298)
|
|
296
301
|
|
|
297
|
-
|
|
298
302
|
## [2.10.0] - 2026-05-02
|
|
299
303
|
|
|
300
304
|
### Features
|
|
301
305
|
|
|
302
306
|
- prjct context-save / context-restore (gstack Fase D) (#296)
|
|
303
307
|
|
|
304
|
-
|
|
305
308
|
## [2.9.0] - 2026-05-02
|
|
306
309
|
|
|
307
310
|
### Features
|
|
308
311
|
|
|
309
312
|
- prjct health — composite quality dashboard (gstack Fase C/5) (#295)
|
|
310
313
|
|
|
311
|
-
|
|
312
314
|
## [2.8.0] - 2026-05-02
|
|
313
315
|
|
|
314
316
|
### Features
|
|
315
317
|
|
|
316
318
|
- prjct retro — weekly engineering retrospective (gstack Fase C/6) (#294)
|
|
317
319
|
|
|
318
|
-
|
|
319
320
|
## [2.7.0] - 2026-05-02
|
|
320
321
|
|
|
321
322
|
### Features
|
|
322
323
|
|
|
323
324
|
- gstack Fase B — question registry + 'stop asking me about X' (#293)
|
|
324
325
|
|
|
325
|
-
|
|
326
326
|
## [2.6.0] - 2026-05-02
|
|
327
327
|
|
|
328
328
|
### Features
|
|
329
329
|
|
|
330
330
|
- gstack Fase A — ethos preamble + memory dedupe (#292)
|
|
331
331
|
|
|
332
|
-
|
|
333
332
|
## [2.5.0] - 2026-05-02
|
|
334
333
|
|
|
335
334
|
### Features
|
|
336
335
|
|
|
337
336
|
- adopt gstack patterns — subagent dispatch + audit orchestrator + decision-brief (#291)
|
|
338
337
|
|
|
339
|
-
|
|
340
338
|
## [2.4.43] - 2026-05-02
|
|
341
339
|
|
|
342
340
|
### Added
|
|
@@ -562,28 +560,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
562
560
|
|
|
563
561
|
- feat(mcp): per-project MCP scoping — list, deny, allow
|
|
564
562
|
|
|
565
|
-
|
|
566
563
|
## [2.3.11] - 2026-05-02
|
|
567
564
|
|
|
568
565
|
### Bug Fixes
|
|
569
566
|
|
|
570
567
|
- never silently re-run a command that may have partially run
|
|
571
568
|
|
|
572
|
-
|
|
573
569
|
## [2.3.10] - 2026-05-02
|
|
574
570
|
|
|
575
571
|
### Bug Fixes
|
|
576
572
|
|
|
577
573
|
- upgrade every detected global install, not just one
|
|
578
574
|
|
|
579
|
-
|
|
580
575
|
## [2.3.9] - 2026-05-02
|
|
581
576
|
|
|
582
577
|
### Bug Fixes
|
|
583
578
|
|
|
584
579
|
- remove orphaned context/CLAUDE.md checks; gate auto-update banner
|
|
585
580
|
|
|
586
|
-
|
|
587
581
|
## [2.3.8] - 2026-05-02
|
|
588
582
|
|
|
589
583
|
### Bug Fixes
|
|
@@ -592,42 +586,36 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
592
586
|
- collapse legacy unmanaged duplicates on install
|
|
593
587
|
- runtime-agnostic package manager handling
|
|
594
588
|
|
|
595
|
-
|
|
596
589
|
## [2.3.7] - 2026-05-01
|
|
597
590
|
|
|
598
591
|
### Bug Fixes
|
|
599
592
|
|
|
600
593
|
- regression tests for bugs surfaced in 2.3.5 → 2.3.6
|
|
601
594
|
|
|
602
|
-
|
|
603
595
|
## [2.3.6] - 2026-05-01
|
|
604
596
|
|
|
605
597
|
### Bug Fixes
|
|
606
598
|
|
|
607
599
|
- add `crew` to daemon-shim skip list
|
|
608
600
|
|
|
609
|
-
|
|
610
601
|
## [2.3.5] - 2026-05-01
|
|
611
602
|
|
|
612
603
|
### Refactoring
|
|
613
604
|
|
|
614
605
|
- rename `harness` command to `crew` to avoid concept collision
|
|
615
606
|
|
|
616
|
-
|
|
617
607
|
## [2.3.4] - 2026-05-01
|
|
618
608
|
|
|
619
609
|
### Bug Fixes
|
|
620
610
|
|
|
621
611
|
- switch to OIDC trusted publishing for npm releases
|
|
622
612
|
|
|
623
|
-
|
|
624
613
|
## [2.3.3] - 2026-05-01
|
|
625
614
|
|
|
626
615
|
### Bug Fixes
|
|
627
616
|
|
|
628
617
|
- bump to 2.3.3 to recover from npm publish outage
|
|
629
618
|
|
|
630
|
-
|
|
631
619
|
## [2.3.2] - 2026-05-01
|
|
632
620
|
|
|
633
621
|
### Features
|
|
@@ -638,21 +626,18 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
638
626
|
|
|
639
627
|
- drop dynamic node -e from update checker (scanner mitigation)
|
|
640
628
|
|
|
641
|
-
|
|
642
629
|
## [2.3.1] - 2026-05-01
|
|
643
630
|
|
|
644
631
|
### Bug Fixes
|
|
645
632
|
|
|
646
633
|
- sync bun.lock with package.json (unblock --frozen-lockfile)
|
|
647
634
|
|
|
648
|
-
|
|
649
635
|
## [2.3.0] - 2026-04-30
|
|
650
636
|
|
|
651
637
|
### Features
|
|
652
638
|
|
|
653
639
|
- opt-in multi-agent harness mode (#264)
|
|
654
640
|
|
|
655
|
-
|
|
656
641
|
## [2.2.18] - 2026-04-25
|
|
657
642
|
|
|
658
643
|
### Added
|
|
@@ -689,7 +674,6 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
689
674
|
|
|
690
675
|
- silence Stop nag + drop variable content from SessionStart (cache stability) (#261)
|
|
691
676
|
|
|
692
|
-
|
|
693
677
|
## [2.2.11] - 2026-04-25
|
|
694
678
|
|
|
695
679
|
### Added
|
|
@@ -706,14 +690,12 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
706
690
|
|
|
707
691
|
- replicate bare-verb auto-route to capture (#258)
|
|
708
692
|
|
|
709
|
-
|
|
710
693
|
## [2.2.8] - 2026-04-25
|
|
711
694
|
|
|
712
695
|
### Bug Fixes
|
|
713
696
|
|
|
714
697
|
- re-export getActiveProvider (regression from #256) (#257)
|
|
715
698
|
|
|
716
|
-
|
|
717
699
|
## [2.2.7] - 2026-04-24
|
|
718
700
|
|
|
719
701
|
### Added
|
|
@@ -730,28 +712,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
730
712
|
|
|
731
713
|
- seed main-branch gate + trailing newline in writeJson (#255)
|
|
732
714
|
|
|
733
|
-
|
|
734
715
|
## [2.2.4] - 2026-04-24
|
|
735
716
|
|
|
736
717
|
### Bug Fixes
|
|
737
718
|
|
|
738
719
|
- stop hook counts ships/captures/tags as checkpoints (#254)
|
|
739
720
|
|
|
740
|
-
|
|
741
721
|
## [2.2.3] - 2026-04-23
|
|
742
722
|
|
|
743
723
|
### Refactoring
|
|
744
724
|
|
|
745
725
|
- workflow-first dispatcher + ambiguity gate (#253)
|
|
746
726
|
|
|
747
|
-
|
|
748
727
|
## [2.2.2] - 2026-04-22
|
|
749
728
|
|
|
750
729
|
### Bug Fixes
|
|
751
730
|
|
|
752
731
|
- sandboxable config resolver + stop leaking to real config
|
|
753
732
|
|
|
754
|
-
|
|
755
733
|
## [2.2.1] - 2026-04-22
|
|
756
734
|
|
|
757
735
|
Follow-up to 2.2.0: the vault was generated at the right location but
|
|
@@ -1335,7 +1313,6 @@ usable, not just carved out.
|
|
|
1335
1313
|
|
|
1336
1314
|
- exclude .worktrees from indexing (#248)
|
|
1337
1315
|
|
|
1338
|
-
|
|
1339
1316
|
## [1.56.11] - 2026-04-13
|
|
1340
1317
|
|
|
1341
1318
|
### Fixed
|
|
@@ -1349,7 +1326,6 @@ usable, not just carved out.
|
|
|
1349
1326
|
- prefer direct Glob/Grep over Explore subagent (#247)
|
|
1350
1327
|
- chore: dead code purge + architecture docs (v1.56.8) (#246)
|
|
1351
1328
|
|
|
1352
|
-
|
|
1353
1329
|
## [1.56.9] - 2026-04-11
|
|
1354
1330
|
|
|
1355
1331
|
### Changed
|
|
@@ -1430,7 +1406,6 @@ usable, not just carved out.
|
|
|
1430
1406
|
|
|
1431
1407
|
- obsidian status neutral message when not configured (#242)
|
|
1432
1408
|
|
|
1433
|
-
|
|
1434
1409
|
## [1.56.1] - 2026-04-06
|
|
1435
1410
|
|
|
1436
1411
|
### Fixed
|
|
@@ -1448,7 +1423,6 @@ usable, not just carved out.
|
|
|
1448
1423
|
- biome lint + typecheck errors for clean push
|
|
1449
1424
|
- revert accent to neutral, sidebar/tabs cleanup
|
|
1450
1425
|
|
|
1451
|
-
|
|
1452
1426
|
## [1.54.2] - 2026-04-06
|
|
1453
1427
|
|
|
1454
1428
|
### Added
|
|
@@ -1489,7 +1463,6 @@ usable, not just carved out.
|
|
|
1489
1463
|
- security hardening — command injection, CORS, path traversal, error disclosure (#235)
|
|
1490
1464
|
- security hardening — command injection, CORS, path traversal, error disclosure
|
|
1491
1465
|
|
|
1492
|
-
|
|
1493
1466
|
## [1.52.2] - 2026-03-07
|
|
1494
1467
|
|
|
1495
1468
|
### Added
|
|
@@ -1529,7 +1502,6 @@ usable, not just carved out.
|
|
|
1529
1502
|
|
|
1530
1503
|
- context health system + clean --md output (#231)
|
|
1531
1504
|
|
|
1532
|
-
|
|
1533
1505
|
## [1.50.3] - 2026-03-03
|
|
1534
1506
|
|
|
1535
1507
|
### Added
|
|
@@ -1541,7 +1513,6 @@ usable, not just carved out.
|
|
|
1541
1513
|
|
|
1542
1514
|
- guard against undefined decision.contexts in pattern-store (#230)
|
|
1543
1515
|
|
|
1544
|
-
|
|
1545
1516
|
## [1.50.1] - 2026-03-02
|
|
1546
1517
|
|
|
1547
1518
|
### Fixed
|
|
@@ -1553,35 +1524,30 @@ usable, not just carved out.
|
|
|
1553
1524
|
|
|
1554
1525
|
- auth UX overhaul — out.* utilities, branded browser page, auto-sync (#229)
|
|
1555
1526
|
|
|
1556
|
-
|
|
1557
1527
|
## [1.49.0] - 2026-02-27
|
|
1558
1528
|
|
|
1559
1529
|
### Features
|
|
1560
1530
|
|
|
1561
1531
|
- prjct login — browser-based OTP auth (#228)
|
|
1562
1532
|
|
|
1563
|
-
|
|
1564
1533
|
## [1.48.1] - 2026-02-27
|
|
1565
1534
|
|
|
1566
1535
|
### Bug Fixes
|
|
1567
1536
|
|
|
1568
1537
|
- wire auth command in registry and bypass setup check (#227)
|
|
1569
1538
|
|
|
1570
|
-
|
|
1571
1539
|
## [1.48.0] - 2026-02-27
|
|
1572
1540
|
|
|
1573
1541
|
### Features
|
|
1574
1542
|
|
|
1575
1543
|
- CLI↔Web bidirectional sync (#226)
|
|
1576
1544
|
|
|
1577
|
-
|
|
1578
1545
|
## [1.47.4] - 2026-02-26
|
|
1579
1546
|
|
|
1580
1547
|
### Refactoring
|
|
1581
1548
|
|
|
1582
1549
|
- remove static context generation system (#225)
|
|
1583
1550
|
|
|
1584
|
-
|
|
1585
1551
|
## [1.47.3] - 2026-02-26
|
|
1586
1552
|
|
|
1587
1553
|
### Added
|
|
@@ -1598,7 +1564,6 @@ usable, not just carved out.
|
|
|
1598
1564
|
|
|
1599
1565
|
- centralize type definitions to core/types/ (#224)
|
|
1600
1566
|
|
|
1601
|
-
|
|
1602
1567
|
## [1.47.0] - 2026-02-21
|
|
1603
1568
|
|
|
1604
1569
|
### Features
|
|
@@ -1615,14 +1580,12 @@ usable, not just carved out.
|
|
|
1615
1580
|
- consolidate scattered types into core/types/
|
|
1616
1581
|
- remove duplicate sorting logic and dead markdown-builder
|
|
1617
1582
|
|
|
1618
|
-
|
|
1619
1583
|
## [1.46.7] - 2026-02-21
|
|
1620
1584
|
|
|
1621
1585
|
### Refactoring
|
|
1622
1586
|
|
|
1623
1587
|
- extract context contract builder from workflow.ts (#222)
|
|
1624
1588
|
|
|
1625
|
-
|
|
1626
1589
|
## [1.46.6] - 2026-02-21
|
|
1627
1590
|
|
|
1628
1591
|
### Refactor
|
|
@@ -1693,7 +1656,6 @@ usable, not just carved out.
|
|
|
1693
1656
|
|
|
1694
1657
|
- multi-provider MCP setup + OAuth status fix (v1.45.9) (#216)
|
|
1695
1658
|
|
|
1696
|
-
|
|
1697
1659
|
## [1.45.11] - 2026-02-16
|
|
1698
1660
|
|
|
1699
1661
|
### Added
|
|
@@ -1743,14 +1705,12 @@ usable, not just carved out.
|
|
|
1743
1705
|
|
|
1744
1706
|
- p. workflow agentic natural language parsing (#213)
|
|
1745
1707
|
|
|
1746
|
-
|
|
1747
1708
|
## [1.45.2] - 2026-02-17
|
|
1748
1709
|
|
|
1749
1710
|
### Bug Fixes
|
|
1750
1711
|
|
|
1751
1712
|
- Jira/Linear MCP OAuth setup - guides user through mcp-remote auth (#212)
|
|
1752
1713
|
|
|
1753
|
-
|
|
1754
1714
|
## [1.45.2] - 2026-02-16
|
|
1755
1715
|
|
|
1756
1716
|
### Added
|
|
@@ -1762,7 +1722,6 @@ usable, not just carved out.
|
|
|
1762
1722
|
|
|
1763
1723
|
- prjct update - daemon restart and latest version detection (#211)
|
|
1764
1724
|
|
|
1765
|
-
|
|
1766
1725
|
## [1.45.1] - 2026-02-17
|
|
1767
1726
|
|
|
1768
1727
|
### Bug Fixes
|
|
@@ -1809,21 +1768,18 @@ usable, not just carved out.
|
|
|
1809
1768
|
|
|
1810
1769
|
- analyze shows actual report path (PRJ-348) (#208)
|
|
1811
1770
|
|
|
1812
|
-
|
|
1813
1771
|
## [1.44.3] - 2026-02-16
|
|
1814
1772
|
|
|
1815
1773
|
### Bug Fixes
|
|
1816
1774
|
|
|
1817
1775
|
- widen retry test timing tolerances (PRJ-346) (#207)
|
|
1818
1776
|
|
|
1819
|
-
|
|
1820
1777
|
## [1.44.2] - 2026-02-16
|
|
1821
1778
|
|
|
1822
1779
|
### Bug Fixes
|
|
1823
1780
|
|
|
1824
1781
|
- legacy previousTask not migrated to pausedTasks (PRJ-345) (#206)
|
|
1825
1782
|
|
|
1826
|
-
|
|
1827
1783
|
## [1.44.3] - 2026-02-16
|
|
1828
1784
|
|
|
1829
1785
|
### Bug Fixes
|
|
@@ -1842,7 +1798,6 @@ usable, not just carved out.
|
|
|
1842
1798
|
|
|
1843
1799
|
- migrate sessions from JSON files to SQLite (#204)
|
|
1844
1800
|
|
|
1845
|
-
|
|
1846
1801
|
## [1.43.1] - 2026-02-15
|
|
1847
1802
|
|
|
1848
1803
|
### Added
|
|
@@ -1858,7 +1813,6 @@ usable, not just carved out.
|
|
|
1858
1813
|
|
|
1859
1814
|
- context file suggestion reinforcement learning (#202)
|
|
1860
1815
|
|
|
1861
|
-
|
|
1862
1816
|
## [1.42.4] - 2026-02-15
|
|
1863
1817
|
|
|
1864
1818
|
### Added
|
|
@@ -1870,7 +1824,6 @@ usable, not just carved out.
|
|
|
1870
1824
|
|
|
1871
1825
|
- state storage updates preserve existing state to prevent data loss (#201)
|
|
1872
1826
|
|
|
1873
|
-
|
|
1874
1827
|
## [1.42.4] - 2026-02-15
|
|
1875
1828
|
|
|
1876
1829
|
### Bug Fixes
|
|
@@ -1895,7 +1848,6 @@ usable, not just carved out.
|
|
|
1895
1848
|
- daemon commands ignore request.cwd causing cross-project contamination (#199)
|
|
1896
1849
|
- pass request.cwd to analyze/cleanup/design in daemon
|
|
1897
1850
|
|
|
1898
|
-
|
|
1899
1851
|
## [1.42.1] - 2026-02-15
|
|
1900
1852
|
|
|
1901
1853
|
### Bug Fixes
|
|
@@ -1936,7 +1888,6 @@ usable, not just carved out.
|
|
|
1936
1888
|
|
|
1937
1889
|
- sanitize SQLite bindings in JSON migration (#196)
|
|
1938
1890
|
|
|
1939
|
-
|
|
1940
1891
|
## [1.40.1] - 2026-02-15
|
|
1941
1892
|
|
|
1942
1893
|
### Fixed
|
|
@@ -1948,7 +1899,6 @@ usable, not just carved out.
|
|
|
1948
1899
|
|
|
1949
1900
|
- redesign prjct update as 3-phase system updater (#195)
|
|
1950
1901
|
|
|
1951
|
-
|
|
1952
1902
|
## [1.39.0] - 2026-02-15
|
|
1953
1903
|
|
|
1954
1904
|
### Features
|
|
@@ -1996,7 +1946,6 @@ usable, not just carved out.
|
|
|
1996
1946
|
|
|
1997
1947
|
- reconcile queue with Linear status on sync (#190)
|
|
1998
1948
|
|
|
1999
|
-
|
|
2000
1949
|
## [1.38.3] - 2026-02-14
|
|
2001
1950
|
|
|
2002
1951
|
### Bug Fixes
|
|
@@ -2017,7 +1966,6 @@ usable, not just carved out.
|
|
|
2017
1966
|
|
|
2018
1967
|
- auto-repair Codex router metadata during sync (#187)
|
|
2019
1968
|
|
|
2020
|
-
|
|
2021
1969
|
## [1.38.1] - 2026-02-14
|
|
2022
1970
|
|
|
2023
1971
|
### Bug Fixes
|
|
@@ -2036,7 +1984,6 @@ usable, not just carved out.
|
|
|
2036
1984
|
|
|
2037
1985
|
- neutral banner colors + add Codex to provider selection (#185)
|
|
2038
1986
|
|
|
2039
|
-
|
|
2040
1987
|
## [1.37.1] - 2026-02-14
|
|
2041
1988
|
|
|
2042
1989
|
### Fixed
|
|
@@ -2069,7 +2016,6 @@ usable, not just carved out.
|
|
|
2069
2016
|
|
|
2070
2017
|
- Custom workflows with agentic auto-configuration (#183)
|
|
2071
2018
|
|
|
2072
|
-
|
|
2073
2019
|
## [1.36.0] - 2026-02-13
|
|
2074
2020
|
|
|
2075
2021
|
### Features
|
|
@@ -2092,7 +2038,6 @@ usable, not just carved out.
|
|
|
2092
2038
|
|
|
2093
2039
|
- add analysis rollback to restore previous sealed version (PRJ-276) (#181)
|
|
2094
2040
|
|
|
2095
|
-
|
|
2096
2041
|
## [1.33.1] - 2026-02-12
|
|
2097
2042
|
|
|
2098
2043
|
### Added
|
|
@@ -2121,7 +2066,6 @@ usable, not just carved out.
|
|
|
2121
2066
|
|
|
2122
2067
|
- exquisite terminal UX — rich markdown formatters + branded output (#179)
|
|
2123
2068
|
|
|
2124
|
-
|
|
2125
2069
|
## [1.30.2] - 2026-02-12
|
|
2126
2070
|
|
|
2127
2071
|
### Added
|
|
@@ -2144,7 +2088,6 @@ usable, not just carved out.
|
|
|
2144
2088
|
|
|
2145
2089
|
- enrich AI formatters with analysis data + add Codex support (#176)
|
|
2146
2090
|
|
|
2147
|
-
|
|
2148
2091
|
## [1.29.0] - 2026-02-12
|
|
2149
2092
|
|
|
2150
2093
|
### Features
|
|
@@ -2168,21 +2111,18 @@ usable, not just carved out.
|
|
|
2168
2111
|
|
|
2169
2112
|
- agentic Linear template without MCP dependency
|
|
2170
2113
|
|
|
2171
|
-
|
|
2172
2114
|
## [1.27.1] - 2026-02-11
|
|
2173
2115
|
|
|
2174
2116
|
### Bug Fixes
|
|
2175
2117
|
|
|
2176
2118
|
- exclude router files (p.md/p.toml) from subcommand installation
|
|
2177
2119
|
|
|
2178
|
-
|
|
2179
2120
|
## [1.27.0] - 2026-02-11
|
|
2180
2121
|
|
|
2181
2122
|
### Features
|
|
2182
2123
|
|
|
2183
2124
|
- dual-runtime SQLite — bun:sqlite + better-sqlite3 (#174)
|
|
2184
2125
|
|
|
2185
|
-
|
|
2186
2126
|
## [1.27.6] - 2026-02-11
|
|
2187
2127
|
|
|
2188
2128
|
### Added
|
|
@@ -2291,7 +2231,6 @@ usable, not just carved out.
|
|
|
2291
2231
|
|
|
2292
2232
|
- strip shebangs in build via esbuild plugin (#171)
|
|
2293
2233
|
|
|
2294
|
-
|
|
2295
2234
|
## [1.24.2] - 2026-02-10
|
|
2296
2235
|
|
|
2297
2236
|
### Bug Fixes
|
|
@@ -2546,7 +2485,6 @@ Bridges the outcomes system to semantic memory. Previously, patterns from comple
|
|
|
2546
2485
|
- add task-to-analysis feedback loop (PRJ-272) (#165)
|
|
2547
2486
|
- add task history array with FIFO eviction (PRJ-281) (#164)
|
|
2548
2487
|
|
|
2549
|
-
|
|
2550
2488
|
## [1.22.0] - 2026-02-10
|
|
2551
2489
|
|
|
2552
2490
|
### Features
|
|
@@ -2642,14 +2580,12 @@ Replaced single previousTask field with bounded task history array to enable pat
|
|
|
2642
2580
|
**How to use:** No action needed — task history is automatic on `p. done`
|
|
2643
2581
|
**Breaking changes:** None — fully backward compatible
|
|
2644
2582
|
|
|
2645
|
-
|
|
2646
2583
|
## [1.20.0] - 2026-02-10
|
|
2647
2584
|
|
|
2648
2585
|
### Features
|
|
2649
2586
|
|
|
2650
2587
|
- add retry with exponential backoff for agent and tool operations (#162)
|
|
2651
2588
|
|
|
2652
|
-
|
|
2653
2589
|
## [1.20.0] - 2026-02-09
|
|
2654
2590
|
|
|
2655
2591
|
### Features
|
|
@@ -2816,7 +2752,6 @@ Modified:
|
|
|
2816
2752
|
|
|
2817
2753
|
- implement incremental sync with file hashing (PRJ-305) (#160)
|
|
2818
2754
|
|
|
2819
|
-
|
|
2820
2755
|
## [1.18.0] - 2026-02-09
|
|
2821
2756
|
|
|
2822
2757
|
### Features
|
|
@@ -2867,7 +2802,6 @@ Modified:
|
|
|
2867
2802
|
|
|
2868
2803
|
- implement BM25 + import graph + git co-change for zero-cost file selection (PRJ-304) (#159)
|
|
2869
2804
|
|
|
2870
|
-
|
|
2871
2805
|
## [1.17.0] - 2026-02-08
|
|
2872
2806
|
|
|
2873
2807
|
### Features
|
|
@@ -2944,7 +2878,6 @@ Modified:
|
|
|
2944
2878
|
|
|
2945
2879
|
- replace hardcoded memory domain tags with semantic matching (PRJ-300) (#157)
|
|
2946
2880
|
|
|
2947
|
-
|
|
2948
2881
|
## [1.14.1] - 2026-02-09
|
|
2949
2882
|
|
|
2950
2883
|
### Improved
|
|
@@ -2985,7 +2918,6 @@ Modified:
|
|
|
2985
2918
|
|
|
2986
2919
|
- add sprint-based velocity calculation with trend detection (PRJ-296) (#156)
|
|
2987
2920
|
|
|
2988
|
-
|
|
2989
2921
|
## [1.14.0] - 2026-02-09
|
|
2990
2922
|
|
|
2991
2923
|
### Features
|
|
@@ -3034,7 +2966,6 @@ Key changes:
|
|
|
3034
2966
|
|
|
3035
2967
|
- inject sealed analysis into task prompt context (PRJ-260) (#155)
|
|
3036
2968
|
|
|
3037
|
-
|
|
3038
2969
|
## [1.13.0] - 2026-02-09
|
|
3039
2970
|
|
|
3040
2971
|
### Features
|
|
@@ -3074,7 +3005,6 @@ Key changes:
|
|
|
3074
3005
|
|
|
3075
3006
|
- make subtask output and handoff mandatory (PRJ-262) (#154)
|
|
3076
3007
|
|
|
3077
|
-
|
|
3078
3008
|
## [1.11.0] - 2026-02-09
|
|
3079
3009
|
|
|
3080
3010
|
### Features
|
|
@@ -3140,7 +3070,6 @@ Key changes:
|
|
|
3140
3070
|
- redesign prompt assembly with correct section ordering + anti-hallucination (PRJ-301) (#152)
|
|
3141
3071
|
- add coordinated global token budget (PRJ-266) (#151)
|
|
3142
3072
|
|
|
3143
|
-
|
|
3144
3073
|
## [1.12.0] - 2026-02-07
|
|
3145
3074
|
|
|
3146
3075
|
### Features
|