prjct-cli 2.23.1 → 2.23.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 +17 -92
- package/README.md +220 -9
- package/dist/bin/prjct-core.mjs +323 -318
- package/dist/daemon/entry.mjs +214 -209
- package/dist/mcp/server.mjs +39 -39
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.23.3] - 2026-05-18
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- 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")
|
|
8
|
+
|
|
9
|
+
## [2.23.2] - 2026-05-18
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- vault makes every mem_N navigable — Obsidian anchors + linkified cross-refs (mem_3233) (#356)
|
|
14
|
+
|
|
3
15
|
## [2.23.1] - 2026-05-18
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
6
18
|
|
|
7
19
|
- orchestrator triage-first — stop funneling every action through spec+reviewers (#355)
|
|
8
20
|
|
|
9
|
-
|
|
10
21
|
## [2.23.0] - 2026-05-18
|
|
11
22
|
|
|
12
23
|
### Features
|
|
@@ -17,14 +28,12 @@
|
|
|
17
28
|
|
|
18
29
|
- make prjct upgrade bulletproof — no silent misroute, no stale-daemon, no downgrade (#353)
|
|
19
30
|
|
|
20
|
-
|
|
21
31
|
## [2.22.1] - 2026-05-18
|
|
22
32
|
|
|
23
33
|
### Bug Fixes
|
|
24
34
|
|
|
25
35
|
- changelog generator PROMOTES [Unreleased] instead of stranding it (mem_2895 root cause) (#352)
|
|
26
36
|
|
|
27
|
-
|
|
28
37
|
## [2.22.0] - 2026-05-18
|
|
29
38
|
|
|
30
39
|
### Features
|
|
@@ -37,7 +46,6 @@
|
|
|
37
46
|
- WS2b SQLite hardening — BEGIN IMMEDIATE txns, statement-cache + daemon-cache gating (#349)
|
|
38
47
|
- WS3 P2 reliability — timer leak, backup clobber, daemon-exit, WAL checkpoint, duplicate-POST (#348)
|
|
39
48
|
|
|
40
|
-
|
|
41
49
|
## [2.21.1] - 2026-05-18
|
|
42
50
|
|
|
43
51
|
### Bug Fixes
|
|
@@ -46,9 +54,13 @@
|
|
|
46
54
|
- optimistic CAS on StorageManager.update() — close the lost-update data race (#346)
|
|
47
55
|
- gate workflow rules ingested from repo markdown (close clone-to-RCE) (#345)
|
|
48
56
|
|
|
49
|
-
|
|
50
57
|
## [Unreleased]
|
|
51
58
|
|
|
59
|
+
## [2.23.3] - 2026-05-18
|
|
60
|
+
|
|
61
|
+
### Added
|
|
62
|
+
- vault: nota por entrada + grafo conectado legible (fix relaciones perdidas)
|
|
63
|
+
|
|
52
64
|
## [2.21.0] - 2026-05-17
|
|
53
65
|
|
|
54
66
|
### Features
|
|
@@ -71,7 +83,6 @@
|
|
|
71
83
|
|
|
72
84
|
- **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`.
|
|
73
85
|
|
|
74
|
-
|
|
75
86
|
## [2.20.0] - 2026-05-17
|
|
76
87
|
|
|
77
88
|
### Added
|
|
@@ -173,28 +184,24 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
173
184
|
|
|
174
185
|
- Phase 1.6 — close the wire on Phase 1.5 (B1-B4) (#324)
|
|
175
186
|
|
|
176
|
-
|
|
177
187
|
## [2.18.1] - 2026-05-05
|
|
178
188
|
|
|
179
189
|
### Bug Fixes
|
|
180
190
|
|
|
181
191
|
- make spec update --json a PATCH (shallow merge), not full replace (#323)
|
|
182
192
|
|
|
183
|
-
|
|
184
193
|
## [2.18.0] - 2026-05-05
|
|
185
194
|
|
|
186
195
|
### Features
|
|
187
196
|
|
|
188
197
|
- auto-breakdown spec acceptance criteria into queue tasks on audit pass (#322)
|
|
189
198
|
|
|
190
|
-
|
|
191
199
|
## [2.17.0] - 2026-05-05
|
|
192
200
|
|
|
193
201
|
### Features
|
|
194
202
|
|
|
195
203
|
- Phase 1.6 — brownfield-aware SDD (auto-context + codebase reviewers + inventory) (#321)
|
|
196
204
|
|
|
197
|
-
|
|
198
205
|
## [2.16.0] - 2026-05-04
|
|
199
206
|
|
|
200
207
|
### Features
|
|
@@ -205,7 +212,6 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
205
212
|
|
|
206
213
|
- drop unused imports in entity-handlers (#320)
|
|
207
214
|
|
|
208
|
-
|
|
209
215
|
## [2.15.0] - 2026-05-03
|
|
210
216
|
|
|
211
217
|
### Features — SDD: Spec-Driven Development (#318)
|
|
@@ -252,84 +258,72 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
252
258
|
- split 1454-line wiki-generator into pure builders (#307)
|
|
253
259
|
- introduce runHook<I> runner — DRY the hook quartet (#305)
|
|
254
260
|
|
|
255
|
-
|
|
256
261
|
## [2.14.0] - 2026-05-02
|
|
257
262
|
|
|
258
263
|
### Features
|
|
259
264
|
|
|
260
265
|
- cleanup + friction-detection + proactive improvement loop (#302)
|
|
261
266
|
|
|
262
|
-
|
|
263
267
|
## [2.13.0] - 2026-05-02
|
|
264
268
|
|
|
265
269
|
### Features
|
|
266
270
|
|
|
267
271
|
- project CLAUDE.md routing + onboarding rewrite (UX phase 4+5) (#301)
|
|
268
272
|
|
|
269
|
-
|
|
270
273
|
## [2.12.0] - 2026-05-02
|
|
271
274
|
|
|
272
275
|
### Features
|
|
273
276
|
|
|
274
277
|
- inject project state per turn (UX phase 3) (#300)
|
|
275
278
|
|
|
276
|
-
|
|
277
279
|
## [2.11.0] - 2026-05-02
|
|
278
280
|
|
|
279
281
|
### Features
|
|
280
282
|
|
|
281
283
|
- verb intent map + suggest/auto-execute protocol (UX phase 1+2) (#299)
|
|
282
284
|
|
|
283
|
-
|
|
284
285
|
## [2.10.1] - 2026-05-02
|
|
285
286
|
|
|
286
287
|
### Bug Fixes
|
|
287
288
|
|
|
288
289
|
- zero-out every quality check (typecheck/lint/tests/knip) (#298)
|
|
289
290
|
|
|
290
|
-
|
|
291
291
|
## [2.10.0] - 2026-05-02
|
|
292
292
|
|
|
293
293
|
### Features
|
|
294
294
|
|
|
295
295
|
- prjct context-save / context-restore (gstack Fase D) (#296)
|
|
296
296
|
|
|
297
|
-
|
|
298
297
|
## [2.9.0] - 2026-05-02
|
|
299
298
|
|
|
300
299
|
### Features
|
|
301
300
|
|
|
302
301
|
- prjct health — composite quality dashboard (gstack Fase C/5) (#295)
|
|
303
302
|
|
|
304
|
-
|
|
305
303
|
## [2.8.0] - 2026-05-02
|
|
306
304
|
|
|
307
305
|
### Features
|
|
308
306
|
|
|
309
307
|
- prjct retro — weekly engineering retrospective (gstack Fase C/6) (#294)
|
|
310
308
|
|
|
311
|
-
|
|
312
309
|
## [2.7.0] - 2026-05-02
|
|
313
310
|
|
|
314
311
|
### Features
|
|
315
312
|
|
|
316
313
|
- gstack Fase B — question registry + 'stop asking me about X' (#293)
|
|
317
314
|
|
|
318
|
-
|
|
319
315
|
## [2.6.0] - 2026-05-02
|
|
320
316
|
|
|
321
317
|
### Features
|
|
322
318
|
|
|
323
319
|
- gstack Fase A — ethos preamble + memory dedupe (#292)
|
|
324
320
|
|
|
325
|
-
|
|
326
321
|
## [2.5.0] - 2026-05-02
|
|
327
322
|
|
|
328
323
|
### Features
|
|
329
324
|
|
|
330
325
|
- adopt gstack patterns — subagent dispatch + audit orchestrator + decision-brief (#291)
|
|
331
326
|
|
|
332
|
-
|
|
333
327
|
## [2.4.43] - 2026-05-02
|
|
334
328
|
|
|
335
329
|
### Added
|
|
@@ -555,28 +549,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
555
549
|
|
|
556
550
|
- feat(mcp): per-project MCP scoping — list, deny, allow
|
|
557
551
|
|
|
558
|
-
|
|
559
552
|
## [2.3.11] - 2026-05-02
|
|
560
553
|
|
|
561
554
|
### Bug Fixes
|
|
562
555
|
|
|
563
556
|
- never silently re-run a command that may have partially run
|
|
564
557
|
|
|
565
|
-
|
|
566
558
|
## [2.3.10] - 2026-05-02
|
|
567
559
|
|
|
568
560
|
### Bug Fixes
|
|
569
561
|
|
|
570
562
|
- upgrade every detected global install, not just one
|
|
571
563
|
|
|
572
|
-
|
|
573
564
|
## [2.3.9] - 2026-05-02
|
|
574
565
|
|
|
575
566
|
### Bug Fixes
|
|
576
567
|
|
|
577
568
|
- remove orphaned context/CLAUDE.md checks; gate auto-update banner
|
|
578
569
|
|
|
579
|
-
|
|
580
570
|
## [2.3.8] - 2026-05-02
|
|
581
571
|
|
|
582
572
|
### Bug Fixes
|
|
@@ -585,42 +575,36 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
585
575
|
- collapse legacy unmanaged duplicates on install
|
|
586
576
|
- runtime-agnostic package manager handling
|
|
587
577
|
|
|
588
|
-
|
|
589
578
|
## [2.3.7] - 2026-05-01
|
|
590
579
|
|
|
591
580
|
### Bug Fixes
|
|
592
581
|
|
|
593
582
|
- regression tests for bugs surfaced in 2.3.5 → 2.3.6
|
|
594
583
|
|
|
595
|
-
|
|
596
584
|
## [2.3.6] - 2026-05-01
|
|
597
585
|
|
|
598
586
|
### Bug Fixes
|
|
599
587
|
|
|
600
588
|
- add `crew` to daemon-shim skip list
|
|
601
589
|
|
|
602
|
-
|
|
603
590
|
## [2.3.5] - 2026-05-01
|
|
604
591
|
|
|
605
592
|
### Refactoring
|
|
606
593
|
|
|
607
594
|
- rename `harness` command to `crew` to avoid concept collision
|
|
608
595
|
|
|
609
|
-
|
|
610
596
|
## [2.3.4] - 2026-05-01
|
|
611
597
|
|
|
612
598
|
### Bug Fixes
|
|
613
599
|
|
|
614
600
|
- switch to OIDC trusted publishing for npm releases
|
|
615
601
|
|
|
616
|
-
|
|
617
602
|
## [2.3.3] - 2026-05-01
|
|
618
603
|
|
|
619
604
|
### Bug Fixes
|
|
620
605
|
|
|
621
606
|
- bump to 2.3.3 to recover from npm publish outage
|
|
622
607
|
|
|
623
|
-
|
|
624
608
|
## [2.3.2] - 2026-05-01
|
|
625
609
|
|
|
626
610
|
### Features
|
|
@@ -631,21 +615,18 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
631
615
|
|
|
632
616
|
- drop dynamic node -e from update checker (scanner mitigation)
|
|
633
617
|
|
|
634
|
-
|
|
635
618
|
## [2.3.1] - 2026-05-01
|
|
636
619
|
|
|
637
620
|
### Bug Fixes
|
|
638
621
|
|
|
639
622
|
- sync bun.lock with package.json (unblock --frozen-lockfile)
|
|
640
623
|
|
|
641
|
-
|
|
642
624
|
## [2.3.0] - 2026-04-30
|
|
643
625
|
|
|
644
626
|
### Features
|
|
645
627
|
|
|
646
628
|
- opt-in multi-agent harness mode (#264)
|
|
647
629
|
|
|
648
|
-
|
|
649
630
|
## [2.2.18] - 2026-04-25
|
|
650
631
|
|
|
651
632
|
### Added
|
|
@@ -682,7 +663,6 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
682
663
|
|
|
683
664
|
- silence Stop nag + drop variable content from SessionStart (cache stability) (#261)
|
|
684
665
|
|
|
685
|
-
|
|
686
666
|
## [2.2.11] - 2026-04-25
|
|
687
667
|
|
|
688
668
|
### Added
|
|
@@ -699,14 +679,12 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
699
679
|
|
|
700
680
|
- replicate bare-verb auto-route to capture (#258)
|
|
701
681
|
|
|
702
|
-
|
|
703
682
|
## [2.2.8] - 2026-04-25
|
|
704
683
|
|
|
705
684
|
### Bug Fixes
|
|
706
685
|
|
|
707
686
|
- re-export getActiveProvider (regression from #256) (#257)
|
|
708
687
|
|
|
709
|
-
|
|
710
688
|
## [2.2.7] - 2026-04-24
|
|
711
689
|
|
|
712
690
|
### Added
|
|
@@ -723,28 +701,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
723
701
|
|
|
724
702
|
- seed main-branch gate + trailing newline in writeJson (#255)
|
|
725
703
|
|
|
726
|
-
|
|
727
704
|
## [2.2.4] - 2026-04-24
|
|
728
705
|
|
|
729
706
|
### Bug Fixes
|
|
730
707
|
|
|
731
708
|
- stop hook counts ships/captures/tags as checkpoints (#254)
|
|
732
709
|
|
|
733
|
-
|
|
734
710
|
## [2.2.3] - 2026-04-23
|
|
735
711
|
|
|
736
712
|
### Refactoring
|
|
737
713
|
|
|
738
714
|
- workflow-first dispatcher + ambiguity gate (#253)
|
|
739
715
|
|
|
740
|
-
|
|
741
716
|
## [2.2.2] - 2026-04-22
|
|
742
717
|
|
|
743
718
|
### Bug Fixes
|
|
744
719
|
|
|
745
720
|
- sandboxable config resolver + stop leaking to real config
|
|
746
721
|
|
|
747
|
-
|
|
748
722
|
## [2.2.1] - 2026-04-22
|
|
749
723
|
|
|
750
724
|
Follow-up to 2.2.0: the vault was generated at the right location but
|
|
@@ -1328,7 +1302,6 @@ usable, not just carved out.
|
|
|
1328
1302
|
|
|
1329
1303
|
- exclude .worktrees from indexing (#248)
|
|
1330
1304
|
|
|
1331
|
-
|
|
1332
1305
|
## [1.56.11] - 2026-04-13
|
|
1333
1306
|
|
|
1334
1307
|
### Fixed
|
|
@@ -1342,7 +1315,6 @@ usable, not just carved out.
|
|
|
1342
1315
|
- prefer direct Glob/Grep over Explore subagent (#247)
|
|
1343
1316
|
- chore: dead code purge + architecture docs (v1.56.8) (#246)
|
|
1344
1317
|
|
|
1345
|
-
|
|
1346
1318
|
## [1.56.9] - 2026-04-11
|
|
1347
1319
|
|
|
1348
1320
|
### Changed
|
|
@@ -1423,7 +1395,6 @@ usable, not just carved out.
|
|
|
1423
1395
|
|
|
1424
1396
|
- obsidian status neutral message when not configured (#242)
|
|
1425
1397
|
|
|
1426
|
-
|
|
1427
1398
|
## [1.56.1] - 2026-04-06
|
|
1428
1399
|
|
|
1429
1400
|
### Fixed
|
|
@@ -1441,7 +1412,6 @@ usable, not just carved out.
|
|
|
1441
1412
|
- biome lint + typecheck errors for clean push
|
|
1442
1413
|
- revert accent to neutral, sidebar/tabs cleanup
|
|
1443
1414
|
|
|
1444
|
-
|
|
1445
1415
|
## [1.54.2] - 2026-04-06
|
|
1446
1416
|
|
|
1447
1417
|
### Added
|
|
@@ -1482,7 +1452,6 @@ usable, not just carved out.
|
|
|
1482
1452
|
- security hardening — command injection, CORS, path traversal, error disclosure (#235)
|
|
1483
1453
|
- security hardening — command injection, CORS, path traversal, error disclosure
|
|
1484
1454
|
|
|
1485
|
-
|
|
1486
1455
|
## [1.52.2] - 2026-03-07
|
|
1487
1456
|
|
|
1488
1457
|
### Added
|
|
@@ -1522,7 +1491,6 @@ usable, not just carved out.
|
|
|
1522
1491
|
|
|
1523
1492
|
- context health system + clean --md output (#231)
|
|
1524
1493
|
|
|
1525
|
-
|
|
1526
1494
|
## [1.50.3] - 2026-03-03
|
|
1527
1495
|
|
|
1528
1496
|
### Added
|
|
@@ -1534,7 +1502,6 @@ usable, not just carved out.
|
|
|
1534
1502
|
|
|
1535
1503
|
- guard against undefined decision.contexts in pattern-store (#230)
|
|
1536
1504
|
|
|
1537
|
-
|
|
1538
1505
|
## [1.50.1] - 2026-03-02
|
|
1539
1506
|
|
|
1540
1507
|
### Fixed
|
|
@@ -1546,35 +1513,30 @@ usable, not just carved out.
|
|
|
1546
1513
|
|
|
1547
1514
|
- auth UX overhaul — out.* utilities, branded browser page, auto-sync (#229)
|
|
1548
1515
|
|
|
1549
|
-
|
|
1550
1516
|
## [1.49.0] - 2026-02-27
|
|
1551
1517
|
|
|
1552
1518
|
### Features
|
|
1553
1519
|
|
|
1554
1520
|
- prjct login — browser-based OTP auth (#228)
|
|
1555
1521
|
|
|
1556
|
-
|
|
1557
1522
|
## [1.48.1] - 2026-02-27
|
|
1558
1523
|
|
|
1559
1524
|
### Bug Fixes
|
|
1560
1525
|
|
|
1561
1526
|
- wire auth command in registry and bypass setup check (#227)
|
|
1562
1527
|
|
|
1563
|
-
|
|
1564
1528
|
## [1.48.0] - 2026-02-27
|
|
1565
1529
|
|
|
1566
1530
|
### Features
|
|
1567
1531
|
|
|
1568
1532
|
- CLI↔Web bidirectional sync (#226)
|
|
1569
1533
|
|
|
1570
|
-
|
|
1571
1534
|
## [1.47.4] - 2026-02-26
|
|
1572
1535
|
|
|
1573
1536
|
### Refactoring
|
|
1574
1537
|
|
|
1575
1538
|
- remove static context generation system (#225)
|
|
1576
1539
|
|
|
1577
|
-
|
|
1578
1540
|
## [1.47.3] - 2026-02-26
|
|
1579
1541
|
|
|
1580
1542
|
### Added
|
|
@@ -1591,7 +1553,6 @@ usable, not just carved out.
|
|
|
1591
1553
|
|
|
1592
1554
|
- centralize type definitions to core/types/ (#224)
|
|
1593
1555
|
|
|
1594
|
-
|
|
1595
1556
|
## [1.47.0] - 2026-02-21
|
|
1596
1557
|
|
|
1597
1558
|
### Features
|
|
@@ -1608,14 +1569,12 @@ usable, not just carved out.
|
|
|
1608
1569
|
- consolidate scattered types into core/types/
|
|
1609
1570
|
- remove duplicate sorting logic and dead markdown-builder
|
|
1610
1571
|
|
|
1611
|
-
|
|
1612
1572
|
## [1.46.7] - 2026-02-21
|
|
1613
1573
|
|
|
1614
1574
|
### Refactoring
|
|
1615
1575
|
|
|
1616
1576
|
- extract context contract builder from workflow.ts (#222)
|
|
1617
1577
|
|
|
1618
|
-
|
|
1619
1578
|
## [1.46.6] - 2026-02-21
|
|
1620
1579
|
|
|
1621
1580
|
### Refactor
|
|
@@ -1686,7 +1645,6 @@ usable, not just carved out.
|
|
|
1686
1645
|
|
|
1687
1646
|
- multi-provider MCP setup + OAuth status fix (v1.45.9) (#216)
|
|
1688
1647
|
|
|
1689
|
-
|
|
1690
1648
|
## [1.45.11] - 2026-02-16
|
|
1691
1649
|
|
|
1692
1650
|
### Added
|
|
@@ -1736,14 +1694,12 @@ usable, not just carved out.
|
|
|
1736
1694
|
|
|
1737
1695
|
- p. workflow agentic natural language parsing (#213)
|
|
1738
1696
|
|
|
1739
|
-
|
|
1740
1697
|
## [1.45.2] - 2026-02-17
|
|
1741
1698
|
|
|
1742
1699
|
### Bug Fixes
|
|
1743
1700
|
|
|
1744
1701
|
- Jira/Linear MCP OAuth setup - guides user through mcp-remote auth (#212)
|
|
1745
1702
|
|
|
1746
|
-
|
|
1747
1703
|
## [1.45.2] - 2026-02-16
|
|
1748
1704
|
|
|
1749
1705
|
### Added
|
|
@@ -1755,7 +1711,6 @@ usable, not just carved out.
|
|
|
1755
1711
|
|
|
1756
1712
|
- prjct update - daemon restart and latest version detection (#211)
|
|
1757
1713
|
|
|
1758
|
-
|
|
1759
1714
|
## [1.45.1] - 2026-02-17
|
|
1760
1715
|
|
|
1761
1716
|
### Bug Fixes
|
|
@@ -1802,21 +1757,18 @@ usable, not just carved out.
|
|
|
1802
1757
|
|
|
1803
1758
|
- analyze shows actual report path (PRJ-348) (#208)
|
|
1804
1759
|
|
|
1805
|
-
|
|
1806
1760
|
## [1.44.3] - 2026-02-16
|
|
1807
1761
|
|
|
1808
1762
|
### Bug Fixes
|
|
1809
1763
|
|
|
1810
1764
|
- widen retry test timing tolerances (PRJ-346) (#207)
|
|
1811
1765
|
|
|
1812
|
-
|
|
1813
1766
|
## [1.44.2] - 2026-02-16
|
|
1814
1767
|
|
|
1815
1768
|
### Bug Fixes
|
|
1816
1769
|
|
|
1817
1770
|
- legacy previousTask not migrated to pausedTasks (PRJ-345) (#206)
|
|
1818
1771
|
|
|
1819
|
-
|
|
1820
1772
|
## [1.44.3] - 2026-02-16
|
|
1821
1773
|
|
|
1822
1774
|
### Bug Fixes
|
|
@@ -1835,7 +1787,6 @@ usable, not just carved out.
|
|
|
1835
1787
|
|
|
1836
1788
|
- migrate sessions from JSON files to SQLite (#204)
|
|
1837
1789
|
|
|
1838
|
-
|
|
1839
1790
|
## [1.43.1] - 2026-02-15
|
|
1840
1791
|
|
|
1841
1792
|
### Added
|
|
@@ -1851,7 +1802,6 @@ usable, not just carved out.
|
|
|
1851
1802
|
|
|
1852
1803
|
- context file suggestion reinforcement learning (#202)
|
|
1853
1804
|
|
|
1854
|
-
|
|
1855
1805
|
## [1.42.4] - 2026-02-15
|
|
1856
1806
|
|
|
1857
1807
|
### Added
|
|
@@ -1863,7 +1813,6 @@ usable, not just carved out.
|
|
|
1863
1813
|
|
|
1864
1814
|
- state storage updates preserve existing state to prevent data loss (#201)
|
|
1865
1815
|
|
|
1866
|
-
|
|
1867
1816
|
## [1.42.4] - 2026-02-15
|
|
1868
1817
|
|
|
1869
1818
|
### Bug Fixes
|
|
@@ -1888,7 +1837,6 @@ usable, not just carved out.
|
|
|
1888
1837
|
- daemon commands ignore request.cwd causing cross-project contamination (#199)
|
|
1889
1838
|
- pass request.cwd to analyze/cleanup/design in daemon
|
|
1890
1839
|
|
|
1891
|
-
|
|
1892
1840
|
## [1.42.1] - 2026-02-15
|
|
1893
1841
|
|
|
1894
1842
|
### Bug Fixes
|
|
@@ -1929,7 +1877,6 @@ usable, not just carved out.
|
|
|
1929
1877
|
|
|
1930
1878
|
- sanitize SQLite bindings in JSON migration (#196)
|
|
1931
1879
|
|
|
1932
|
-
|
|
1933
1880
|
## [1.40.1] - 2026-02-15
|
|
1934
1881
|
|
|
1935
1882
|
### Fixed
|
|
@@ -1941,7 +1888,6 @@ usable, not just carved out.
|
|
|
1941
1888
|
|
|
1942
1889
|
- redesign prjct update as 3-phase system updater (#195)
|
|
1943
1890
|
|
|
1944
|
-
|
|
1945
1891
|
## [1.39.0] - 2026-02-15
|
|
1946
1892
|
|
|
1947
1893
|
### Features
|
|
@@ -1989,7 +1935,6 @@ usable, not just carved out.
|
|
|
1989
1935
|
|
|
1990
1936
|
- reconcile queue with Linear status on sync (#190)
|
|
1991
1937
|
|
|
1992
|
-
|
|
1993
1938
|
## [1.38.3] - 2026-02-14
|
|
1994
1939
|
|
|
1995
1940
|
### Bug Fixes
|
|
@@ -2010,7 +1955,6 @@ usable, not just carved out.
|
|
|
2010
1955
|
|
|
2011
1956
|
- auto-repair Codex router metadata during sync (#187)
|
|
2012
1957
|
|
|
2013
|
-
|
|
2014
1958
|
## [1.38.1] - 2026-02-14
|
|
2015
1959
|
|
|
2016
1960
|
### Bug Fixes
|
|
@@ -2029,7 +1973,6 @@ usable, not just carved out.
|
|
|
2029
1973
|
|
|
2030
1974
|
- neutral banner colors + add Codex to provider selection (#185)
|
|
2031
1975
|
|
|
2032
|
-
|
|
2033
1976
|
## [1.37.1] - 2026-02-14
|
|
2034
1977
|
|
|
2035
1978
|
### Fixed
|
|
@@ -2062,7 +2005,6 @@ usable, not just carved out.
|
|
|
2062
2005
|
|
|
2063
2006
|
- Custom workflows with agentic auto-configuration (#183)
|
|
2064
2007
|
|
|
2065
|
-
|
|
2066
2008
|
## [1.36.0] - 2026-02-13
|
|
2067
2009
|
|
|
2068
2010
|
### Features
|
|
@@ -2085,7 +2027,6 @@ usable, not just carved out.
|
|
|
2085
2027
|
|
|
2086
2028
|
- add analysis rollback to restore previous sealed version (PRJ-276) (#181)
|
|
2087
2029
|
|
|
2088
|
-
|
|
2089
2030
|
## [1.33.1] - 2026-02-12
|
|
2090
2031
|
|
|
2091
2032
|
### Added
|
|
@@ -2114,7 +2055,6 @@ usable, not just carved out.
|
|
|
2114
2055
|
|
|
2115
2056
|
- exquisite terminal UX — rich markdown formatters + branded output (#179)
|
|
2116
2057
|
|
|
2117
|
-
|
|
2118
2058
|
## [1.30.2] - 2026-02-12
|
|
2119
2059
|
|
|
2120
2060
|
### Added
|
|
@@ -2137,7 +2077,6 @@ usable, not just carved out.
|
|
|
2137
2077
|
|
|
2138
2078
|
- enrich AI formatters with analysis data + add Codex support (#176)
|
|
2139
2079
|
|
|
2140
|
-
|
|
2141
2080
|
## [1.29.0] - 2026-02-12
|
|
2142
2081
|
|
|
2143
2082
|
### Features
|
|
@@ -2161,21 +2100,18 @@ usable, not just carved out.
|
|
|
2161
2100
|
|
|
2162
2101
|
- agentic Linear template without MCP dependency
|
|
2163
2102
|
|
|
2164
|
-
|
|
2165
2103
|
## [1.27.1] - 2026-02-11
|
|
2166
2104
|
|
|
2167
2105
|
### Bug Fixes
|
|
2168
2106
|
|
|
2169
2107
|
- exclude router files (p.md/p.toml) from subcommand installation
|
|
2170
2108
|
|
|
2171
|
-
|
|
2172
2109
|
## [1.27.0] - 2026-02-11
|
|
2173
2110
|
|
|
2174
2111
|
### Features
|
|
2175
2112
|
|
|
2176
2113
|
- dual-runtime SQLite — bun:sqlite + better-sqlite3 (#174)
|
|
2177
2114
|
|
|
2178
|
-
|
|
2179
2115
|
## [1.27.6] - 2026-02-11
|
|
2180
2116
|
|
|
2181
2117
|
### Added
|
|
@@ -2284,7 +2220,6 @@ usable, not just carved out.
|
|
|
2284
2220
|
|
|
2285
2221
|
- strip shebangs in build via esbuild plugin (#171)
|
|
2286
2222
|
|
|
2287
|
-
|
|
2288
2223
|
## [1.24.2] - 2026-02-10
|
|
2289
2224
|
|
|
2290
2225
|
### Bug Fixes
|
|
@@ -2539,7 +2474,6 @@ Bridges the outcomes system to semantic memory. Previously, patterns from comple
|
|
|
2539
2474
|
- add task-to-analysis feedback loop (PRJ-272) (#165)
|
|
2540
2475
|
- add task history array with FIFO eviction (PRJ-281) (#164)
|
|
2541
2476
|
|
|
2542
|
-
|
|
2543
2477
|
## [1.22.0] - 2026-02-10
|
|
2544
2478
|
|
|
2545
2479
|
### Features
|
|
@@ -2635,14 +2569,12 @@ Replaced single previousTask field with bounded task history array to enable pat
|
|
|
2635
2569
|
**How to use:** No action needed — task history is automatic on `p. done`
|
|
2636
2570
|
**Breaking changes:** None — fully backward compatible
|
|
2637
2571
|
|
|
2638
|
-
|
|
2639
2572
|
## [1.20.0] - 2026-02-10
|
|
2640
2573
|
|
|
2641
2574
|
### Features
|
|
2642
2575
|
|
|
2643
2576
|
- add retry with exponential backoff for agent and tool operations (#162)
|
|
2644
2577
|
|
|
2645
|
-
|
|
2646
2578
|
## [1.20.0] - 2026-02-09
|
|
2647
2579
|
|
|
2648
2580
|
### Features
|
|
@@ -2809,7 +2741,6 @@ Modified:
|
|
|
2809
2741
|
|
|
2810
2742
|
- implement incremental sync with file hashing (PRJ-305) (#160)
|
|
2811
2743
|
|
|
2812
|
-
|
|
2813
2744
|
## [1.18.0] - 2026-02-09
|
|
2814
2745
|
|
|
2815
2746
|
### Features
|
|
@@ -2860,7 +2791,6 @@ Modified:
|
|
|
2860
2791
|
|
|
2861
2792
|
- implement BM25 + import graph + git co-change for zero-cost file selection (PRJ-304) (#159)
|
|
2862
2793
|
|
|
2863
|
-
|
|
2864
2794
|
## [1.17.0] - 2026-02-08
|
|
2865
2795
|
|
|
2866
2796
|
### Features
|
|
@@ -2937,7 +2867,6 @@ Modified:
|
|
|
2937
2867
|
|
|
2938
2868
|
- replace hardcoded memory domain tags with semantic matching (PRJ-300) (#157)
|
|
2939
2869
|
|
|
2940
|
-
|
|
2941
2870
|
## [1.14.1] - 2026-02-09
|
|
2942
2871
|
|
|
2943
2872
|
### Improved
|
|
@@ -2978,7 +2907,6 @@ Modified:
|
|
|
2978
2907
|
|
|
2979
2908
|
- add sprint-based velocity calculation with trend detection (PRJ-296) (#156)
|
|
2980
2909
|
|
|
2981
|
-
|
|
2982
2910
|
## [1.14.0] - 2026-02-09
|
|
2983
2911
|
|
|
2984
2912
|
### Features
|
|
@@ -3027,7 +2955,6 @@ Key changes:
|
|
|
3027
2955
|
|
|
3028
2956
|
- inject sealed analysis into task prompt context (PRJ-260) (#155)
|
|
3029
2957
|
|
|
3030
|
-
|
|
3031
2958
|
## [1.13.0] - 2026-02-09
|
|
3032
2959
|
|
|
3033
2960
|
### Features
|
|
@@ -3067,7 +2994,6 @@ Key changes:
|
|
|
3067
2994
|
|
|
3068
2995
|
- make subtask output and handoff mandatory (PRJ-262) (#154)
|
|
3069
2996
|
|
|
3070
|
-
|
|
3071
2997
|
## [1.11.0] - 2026-02-09
|
|
3072
2998
|
|
|
3073
2999
|
### Features
|
|
@@ -3133,7 +3059,6 @@ Key changes:
|
|
|
3133
3059
|
- redesign prompt assembly with correct section ordering + anti-hallucination (PRJ-301) (#152)
|
|
3134
3060
|
- add coordinated global token budget (PRJ-266) (#151)
|
|
3135
3061
|
|
|
3136
|
-
|
|
3137
3062
|
## [1.12.0] - 2026-02-07
|
|
3138
3063
|
|
|
3139
3064
|
### Features
|