prjct-cli 2.23.2 → 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 +11 -93
- 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 +36 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +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
|
+
|
|
3
9
|
## [2.23.2] - 2026-05-18
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
6
12
|
|
|
7
13
|
- vault makes every mem_N navigable — Obsidian anchors + linkified cross-refs (mem_3233) (#356)
|
|
8
14
|
|
|
9
|
-
|
|
10
15
|
## [2.23.1] - 2026-05-18
|
|
11
16
|
|
|
12
17
|
### Bug Fixes
|
|
13
18
|
|
|
14
19
|
- orchestrator triage-first — stop funneling every action through spec+reviewers (#355)
|
|
15
20
|
|
|
16
|
-
|
|
17
21
|
## [2.23.0] - 2026-05-18
|
|
18
22
|
|
|
19
23
|
### Features
|
|
@@ -24,14 +28,12 @@
|
|
|
24
28
|
|
|
25
29
|
- make prjct upgrade bulletproof — no silent misroute, no stale-daemon, no downgrade (#353)
|
|
26
30
|
|
|
27
|
-
|
|
28
31
|
## [2.22.1] - 2026-05-18
|
|
29
32
|
|
|
30
33
|
### Bug Fixes
|
|
31
34
|
|
|
32
35
|
- changelog generator PROMOTES [Unreleased] instead of stranding it (mem_2895 root cause) (#352)
|
|
33
36
|
|
|
34
|
-
|
|
35
37
|
## [2.22.0] - 2026-05-18
|
|
36
38
|
|
|
37
39
|
### Features
|
|
@@ -44,7 +46,6 @@
|
|
|
44
46
|
- WS2b SQLite hardening — BEGIN IMMEDIATE txns, statement-cache + daemon-cache gating (#349)
|
|
45
47
|
- WS3 P2 reliability — timer leak, backup clobber, daemon-exit, WAL checkpoint, duplicate-POST (#348)
|
|
46
48
|
|
|
47
|
-
|
|
48
49
|
## [2.21.1] - 2026-05-18
|
|
49
50
|
|
|
50
51
|
### Bug Fixes
|
|
@@ -53,9 +54,13 @@
|
|
|
53
54
|
- optimistic CAS on StorageManager.update() — close the lost-update data race (#346)
|
|
54
55
|
- gate workflow rules ingested from repo markdown (close clone-to-RCE) (#345)
|
|
55
56
|
|
|
56
|
-
|
|
57
57
|
## [Unreleased]
|
|
58
58
|
|
|
59
|
+
## [2.23.3] - 2026-05-18
|
|
60
|
+
|
|
61
|
+
### Added
|
|
62
|
+
- vault: nota por entrada + grafo conectado legible (fix relaciones perdidas)
|
|
63
|
+
|
|
59
64
|
## [2.21.0] - 2026-05-17
|
|
60
65
|
|
|
61
66
|
### Features
|
|
@@ -78,7 +83,6 @@
|
|
|
78
83
|
|
|
79
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`.
|
|
80
85
|
|
|
81
|
-
|
|
82
86
|
## [2.20.0] - 2026-05-17
|
|
83
87
|
|
|
84
88
|
### Added
|
|
@@ -180,28 +184,24 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
180
184
|
|
|
181
185
|
- Phase 1.6 — close the wire on Phase 1.5 (B1-B4) (#324)
|
|
182
186
|
|
|
183
|
-
|
|
184
187
|
## [2.18.1] - 2026-05-05
|
|
185
188
|
|
|
186
189
|
### Bug Fixes
|
|
187
190
|
|
|
188
191
|
- make spec update --json a PATCH (shallow merge), not full replace (#323)
|
|
189
192
|
|
|
190
|
-
|
|
191
193
|
## [2.18.0] - 2026-05-05
|
|
192
194
|
|
|
193
195
|
### Features
|
|
194
196
|
|
|
195
197
|
- auto-breakdown spec acceptance criteria into queue tasks on audit pass (#322)
|
|
196
198
|
|
|
197
|
-
|
|
198
199
|
## [2.17.0] - 2026-05-05
|
|
199
200
|
|
|
200
201
|
### Features
|
|
201
202
|
|
|
202
203
|
- Phase 1.6 — brownfield-aware SDD (auto-context + codebase reviewers + inventory) (#321)
|
|
203
204
|
|
|
204
|
-
|
|
205
205
|
## [2.16.0] - 2026-05-04
|
|
206
206
|
|
|
207
207
|
### Features
|
|
@@ -212,7 +212,6 @@ Crew-mode persistence v7 (spec a50b32d1). SQLite becomes the single source of tr
|
|
|
212
212
|
|
|
213
213
|
- drop unused imports in entity-handlers (#320)
|
|
214
214
|
|
|
215
|
-
|
|
216
215
|
## [2.15.0] - 2026-05-03
|
|
217
216
|
|
|
218
217
|
### Features — SDD: Spec-Driven Development (#318)
|
|
@@ -259,84 +258,72 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
259
258
|
- split 1454-line wiki-generator into pure builders (#307)
|
|
260
259
|
- introduce runHook<I> runner — DRY the hook quartet (#305)
|
|
261
260
|
|
|
262
|
-
|
|
263
261
|
## [2.14.0] - 2026-05-02
|
|
264
262
|
|
|
265
263
|
### Features
|
|
266
264
|
|
|
267
265
|
- cleanup + friction-detection + proactive improvement loop (#302)
|
|
268
266
|
|
|
269
|
-
|
|
270
267
|
## [2.13.0] - 2026-05-02
|
|
271
268
|
|
|
272
269
|
### Features
|
|
273
270
|
|
|
274
271
|
- project CLAUDE.md routing + onboarding rewrite (UX phase 4+5) (#301)
|
|
275
272
|
|
|
276
|
-
|
|
277
273
|
## [2.12.0] - 2026-05-02
|
|
278
274
|
|
|
279
275
|
### Features
|
|
280
276
|
|
|
281
277
|
- inject project state per turn (UX phase 3) (#300)
|
|
282
278
|
|
|
283
|
-
|
|
284
279
|
## [2.11.0] - 2026-05-02
|
|
285
280
|
|
|
286
281
|
### Features
|
|
287
282
|
|
|
288
283
|
- verb intent map + suggest/auto-execute protocol (UX phase 1+2) (#299)
|
|
289
284
|
|
|
290
|
-
|
|
291
285
|
## [2.10.1] - 2026-05-02
|
|
292
286
|
|
|
293
287
|
### Bug Fixes
|
|
294
288
|
|
|
295
289
|
- zero-out every quality check (typecheck/lint/tests/knip) (#298)
|
|
296
290
|
|
|
297
|
-
|
|
298
291
|
## [2.10.0] - 2026-05-02
|
|
299
292
|
|
|
300
293
|
### Features
|
|
301
294
|
|
|
302
295
|
- prjct context-save / context-restore (gstack Fase D) (#296)
|
|
303
296
|
|
|
304
|
-
|
|
305
297
|
## [2.9.0] - 2026-05-02
|
|
306
298
|
|
|
307
299
|
### Features
|
|
308
300
|
|
|
309
301
|
- prjct health — composite quality dashboard (gstack Fase C/5) (#295)
|
|
310
302
|
|
|
311
|
-
|
|
312
303
|
## [2.8.0] - 2026-05-02
|
|
313
304
|
|
|
314
305
|
### Features
|
|
315
306
|
|
|
316
307
|
- prjct retro — weekly engineering retrospective (gstack Fase C/6) (#294)
|
|
317
308
|
|
|
318
|
-
|
|
319
309
|
## [2.7.0] - 2026-05-02
|
|
320
310
|
|
|
321
311
|
### Features
|
|
322
312
|
|
|
323
313
|
- gstack Fase B — question registry + 'stop asking me about X' (#293)
|
|
324
314
|
|
|
325
|
-
|
|
326
315
|
## [2.6.0] - 2026-05-02
|
|
327
316
|
|
|
328
317
|
### Features
|
|
329
318
|
|
|
330
319
|
- gstack Fase A — ethos preamble + memory dedupe (#292)
|
|
331
320
|
|
|
332
|
-
|
|
333
321
|
## [2.5.0] - 2026-05-02
|
|
334
322
|
|
|
335
323
|
### Features
|
|
336
324
|
|
|
337
325
|
- adopt gstack patterns — subagent dispatch + audit orchestrator + decision-brief (#291)
|
|
338
326
|
|
|
339
|
-
|
|
340
327
|
## [2.4.43] - 2026-05-02
|
|
341
328
|
|
|
342
329
|
### Added
|
|
@@ -562,28 +549,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
562
549
|
|
|
563
550
|
- feat(mcp): per-project MCP scoping — list, deny, allow
|
|
564
551
|
|
|
565
|
-
|
|
566
552
|
## [2.3.11] - 2026-05-02
|
|
567
553
|
|
|
568
554
|
### Bug Fixes
|
|
569
555
|
|
|
570
556
|
- never silently re-run a command that may have partially run
|
|
571
557
|
|
|
572
|
-
|
|
573
558
|
## [2.3.10] - 2026-05-02
|
|
574
559
|
|
|
575
560
|
### Bug Fixes
|
|
576
561
|
|
|
577
562
|
- upgrade every detected global install, not just one
|
|
578
563
|
|
|
579
|
-
|
|
580
564
|
## [2.3.9] - 2026-05-02
|
|
581
565
|
|
|
582
566
|
### Bug Fixes
|
|
583
567
|
|
|
584
568
|
- remove orphaned context/CLAUDE.md checks; gate auto-update banner
|
|
585
569
|
|
|
586
|
-
|
|
587
570
|
## [2.3.8] - 2026-05-02
|
|
588
571
|
|
|
589
572
|
### Bug Fixes
|
|
@@ -592,42 +575,36 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
592
575
|
- collapse legacy unmanaged duplicates on install
|
|
593
576
|
- runtime-agnostic package manager handling
|
|
594
577
|
|
|
595
|
-
|
|
596
578
|
## [2.3.7] - 2026-05-01
|
|
597
579
|
|
|
598
580
|
### Bug Fixes
|
|
599
581
|
|
|
600
582
|
- regression tests for bugs surfaced in 2.3.5 → 2.3.6
|
|
601
583
|
|
|
602
|
-
|
|
603
584
|
## [2.3.6] - 2026-05-01
|
|
604
585
|
|
|
605
586
|
### Bug Fixes
|
|
606
587
|
|
|
607
588
|
- add `crew` to daemon-shim skip list
|
|
608
589
|
|
|
609
|
-
|
|
610
590
|
## [2.3.5] - 2026-05-01
|
|
611
591
|
|
|
612
592
|
### Refactoring
|
|
613
593
|
|
|
614
594
|
- rename `harness` command to `crew` to avoid concept collision
|
|
615
595
|
|
|
616
|
-
|
|
617
596
|
## [2.3.4] - 2026-05-01
|
|
618
597
|
|
|
619
598
|
### Bug Fixes
|
|
620
599
|
|
|
621
600
|
- switch to OIDC trusted publishing for npm releases
|
|
622
601
|
|
|
623
|
-
|
|
624
602
|
## [2.3.3] - 2026-05-01
|
|
625
603
|
|
|
626
604
|
### Bug Fixes
|
|
627
605
|
|
|
628
606
|
- bump to 2.3.3 to recover from npm publish outage
|
|
629
607
|
|
|
630
|
-
|
|
631
608
|
## [2.3.2] - 2026-05-01
|
|
632
609
|
|
|
633
610
|
### Features
|
|
@@ -638,21 +615,18 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
638
615
|
|
|
639
616
|
- drop dynamic node -e from update checker (scanner mitigation)
|
|
640
617
|
|
|
641
|
-
|
|
642
618
|
## [2.3.1] - 2026-05-01
|
|
643
619
|
|
|
644
620
|
### Bug Fixes
|
|
645
621
|
|
|
646
622
|
- sync bun.lock with package.json (unblock --frozen-lockfile)
|
|
647
623
|
|
|
648
|
-
|
|
649
624
|
## [2.3.0] - 2026-04-30
|
|
650
625
|
|
|
651
626
|
### Features
|
|
652
627
|
|
|
653
628
|
- opt-in multi-agent harness mode (#264)
|
|
654
629
|
|
|
655
|
-
|
|
656
630
|
## [2.2.18] - 2026-04-25
|
|
657
631
|
|
|
658
632
|
### Added
|
|
@@ -689,7 +663,6 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
689
663
|
|
|
690
664
|
- silence Stop nag + drop variable content from SessionStart (cache stability) (#261)
|
|
691
665
|
|
|
692
|
-
|
|
693
666
|
## [2.2.11] - 2026-04-25
|
|
694
667
|
|
|
695
668
|
### Added
|
|
@@ -706,14 +679,12 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
706
679
|
|
|
707
680
|
- replicate bare-verb auto-route to capture (#258)
|
|
708
681
|
|
|
709
|
-
|
|
710
682
|
## [2.2.8] - 2026-04-25
|
|
711
683
|
|
|
712
684
|
### Bug Fixes
|
|
713
685
|
|
|
714
686
|
- re-export getActiveProvider (regression from #256) (#257)
|
|
715
687
|
|
|
716
|
-
|
|
717
688
|
## [2.2.7] - 2026-04-24
|
|
718
689
|
|
|
719
690
|
### Added
|
|
@@ -730,28 +701,24 @@ prjct now ships an end-to-end SDD primitive. The canonical sequence is `spec →
|
|
|
730
701
|
|
|
731
702
|
- seed main-branch gate + trailing newline in writeJson (#255)
|
|
732
703
|
|
|
733
|
-
|
|
734
704
|
## [2.2.4] - 2026-04-24
|
|
735
705
|
|
|
736
706
|
### Bug Fixes
|
|
737
707
|
|
|
738
708
|
- stop hook counts ships/captures/tags as checkpoints (#254)
|
|
739
709
|
|
|
740
|
-
|
|
741
710
|
## [2.2.3] - 2026-04-23
|
|
742
711
|
|
|
743
712
|
### Refactoring
|
|
744
713
|
|
|
745
714
|
- workflow-first dispatcher + ambiguity gate (#253)
|
|
746
715
|
|
|
747
|
-
|
|
748
716
|
## [2.2.2] - 2026-04-22
|
|
749
717
|
|
|
750
718
|
### Bug Fixes
|
|
751
719
|
|
|
752
720
|
- sandboxable config resolver + stop leaking to real config
|
|
753
721
|
|
|
754
|
-
|
|
755
722
|
## [2.2.1] - 2026-04-22
|
|
756
723
|
|
|
757
724
|
Follow-up to 2.2.0: the vault was generated at the right location but
|
|
@@ -1335,7 +1302,6 @@ usable, not just carved out.
|
|
|
1335
1302
|
|
|
1336
1303
|
- exclude .worktrees from indexing (#248)
|
|
1337
1304
|
|
|
1338
|
-
|
|
1339
1305
|
## [1.56.11] - 2026-04-13
|
|
1340
1306
|
|
|
1341
1307
|
### Fixed
|
|
@@ -1349,7 +1315,6 @@ usable, not just carved out.
|
|
|
1349
1315
|
- prefer direct Glob/Grep over Explore subagent (#247)
|
|
1350
1316
|
- chore: dead code purge + architecture docs (v1.56.8) (#246)
|
|
1351
1317
|
|
|
1352
|
-
|
|
1353
1318
|
## [1.56.9] - 2026-04-11
|
|
1354
1319
|
|
|
1355
1320
|
### Changed
|
|
@@ -1430,7 +1395,6 @@ usable, not just carved out.
|
|
|
1430
1395
|
|
|
1431
1396
|
- obsidian status neutral message when not configured (#242)
|
|
1432
1397
|
|
|
1433
|
-
|
|
1434
1398
|
## [1.56.1] - 2026-04-06
|
|
1435
1399
|
|
|
1436
1400
|
### Fixed
|
|
@@ -1448,7 +1412,6 @@ usable, not just carved out.
|
|
|
1448
1412
|
- biome lint + typecheck errors for clean push
|
|
1449
1413
|
- revert accent to neutral, sidebar/tabs cleanup
|
|
1450
1414
|
|
|
1451
|
-
|
|
1452
1415
|
## [1.54.2] - 2026-04-06
|
|
1453
1416
|
|
|
1454
1417
|
### Added
|
|
@@ -1489,7 +1452,6 @@ usable, not just carved out.
|
|
|
1489
1452
|
- security hardening — command injection, CORS, path traversal, error disclosure (#235)
|
|
1490
1453
|
- security hardening — command injection, CORS, path traversal, error disclosure
|
|
1491
1454
|
|
|
1492
|
-
|
|
1493
1455
|
## [1.52.2] - 2026-03-07
|
|
1494
1456
|
|
|
1495
1457
|
### Added
|
|
@@ -1529,7 +1491,6 @@ usable, not just carved out.
|
|
|
1529
1491
|
|
|
1530
1492
|
- context health system + clean --md output (#231)
|
|
1531
1493
|
|
|
1532
|
-
|
|
1533
1494
|
## [1.50.3] - 2026-03-03
|
|
1534
1495
|
|
|
1535
1496
|
### Added
|
|
@@ -1541,7 +1502,6 @@ usable, not just carved out.
|
|
|
1541
1502
|
|
|
1542
1503
|
- guard against undefined decision.contexts in pattern-store (#230)
|
|
1543
1504
|
|
|
1544
|
-
|
|
1545
1505
|
## [1.50.1] - 2026-03-02
|
|
1546
1506
|
|
|
1547
1507
|
### Fixed
|
|
@@ -1553,35 +1513,30 @@ usable, not just carved out.
|
|
|
1553
1513
|
|
|
1554
1514
|
- auth UX overhaul — out.* utilities, branded browser page, auto-sync (#229)
|
|
1555
1515
|
|
|
1556
|
-
|
|
1557
1516
|
## [1.49.0] - 2026-02-27
|
|
1558
1517
|
|
|
1559
1518
|
### Features
|
|
1560
1519
|
|
|
1561
1520
|
- prjct login — browser-based OTP auth (#228)
|
|
1562
1521
|
|
|
1563
|
-
|
|
1564
1522
|
## [1.48.1] - 2026-02-27
|
|
1565
1523
|
|
|
1566
1524
|
### Bug Fixes
|
|
1567
1525
|
|
|
1568
1526
|
- wire auth command in registry and bypass setup check (#227)
|
|
1569
1527
|
|
|
1570
|
-
|
|
1571
1528
|
## [1.48.0] - 2026-02-27
|
|
1572
1529
|
|
|
1573
1530
|
### Features
|
|
1574
1531
|
|
|
1575
1532
|
- CLI↔Web bidirectional sync (#226)
|
|
1576
1533
|
|
|
1577
|
-
|
|
1578
1534
|
## [1.47.4] - 2026-02-26
|
|
1579
1535
|
|
|
1580
1536
|
### Refactoring
|
|
1581
1537
|
|
|
1582
1538
|
- remove static context generation system (#225)
|
|
1583
1539
|
|
|
1584
|
-
|
|
1585
1540
|
## [1.47.3] - 2026-02-26
|
|
1586
1541
|
|
|
1587
1542
|
### Added
|
|
@@ -1598,7 +1553,6 @@ usable, not just carved out.
|
|
|
1598
1553
|
|
|
1599
1554
|
- centralize type definitions to core/types/ (#224)
|
|
1600
1555
|
|
|
1601
|
-
|
|
1602
1556
|
## [1.47.0] - 2026-02-21
|
|
1603
1557
|
|
|
1604
1558
|
### Features
|
|
@@ -1615,14 +1569,12 @@ usable, not just carved out.
|
|
|
1615
1569
|
- consolidate scattered types into core/types/
|
|
1616
1570
|
- remove duplicate sorting logic and dead markdown-builder
|
|
1617
1571
|
|
|
1618
|
-
|
|
1619
1572
|
## [1.46.7] - 2026-02-21
|
|
1620
1573
|
|
|
1621
1574
|
### Refactoring
|
|
1622
1575
|
|
|
1623
1576
|
- extract context contract builder from workflow.ts (#222)
|
|
1624
1577
|
|
|
1625
|
-
|
|
1626
1578
|
## [1.46.6] - 2026-02-21
|
|
1627
1579
|
|
|
1628
1580
|
### Refactor
|
|
@@ -1693,7 +1645,6 @@ usable, not just carved out.
|
|
|
1693
1645
|
|
|
1694
1646
|
- multi-provider MCP setup + OAuth status fix (v1.45.9) (#216)
|
|
1695
1647
|
|
|
1696
|
-
|
|
1697
1648
|
## [1.45.11] - 2026-02-16
|
|
1698
1649
|
|
|
1699
1650
|
### Added
|
|
@@ -1743,14 +1694,12 @@ usable, not just carved out.
|
|
|
1743
1694
|
|
|
1744
1695
|
- p. workflow agentic natural language parsing (#213)
|
|
1745
1696
|
|
|
1746
|
-
|
|
1747
1697
|
## [1.45.2] - 2026-02-17
|
|
1748
1698
|
|
|
1749
1699
|
### Bug Fixes
|
|
1750
1700
|
|
|
1751
1701
|
- Jira/Linear MCP OAuth setup - guides user through mcp-remote auth (#212)
|
|
1752
1702
|
|
|
1753
|
-
|
|
1754
1703
|
## [1.45.2] - 2026-02-16
|
|
1755
1704
|
|
|
1756
1705
|
### Added
|
|
@@ -1762,7 +1711,6 @@ usable, not just carved out.
|
|
|
1762
1711
|
|
|
1763
1712
|
- prjct update - daemon restart and latest version detection (#211)
|
|
1764
1713
|
|
|
1765
|
-
|
|
1766
1714
|
## [1.45.1] - 2026-02-17
|
|
1767
1715
|
|
|
1768
1716
|
### Bug Fixes
|
|
@@ -1809,21 +1757,18 @@ usable, not just carved out.
|
|
|
1809
1757
|
|
|
1810
1758
|
- analyze shows actual report path (PRJ-348) (#208)
|
|
1811
1759
|
|
|
1812
|
-
|
|
1813
1760
|
## [1.44.3] - 2026-02-16
|
|
1814
1761
|
|
|
1815
1762
|
### Bug Fixes
|
|
1816
1763
|
|
|
1817
1764
|
- widen retry test timing tolerances (PRJ-346) (#207)
|
|
1818
1765
|
|
|
1819
|
-
|
|
1820
1766
|
## [1.44.2] - 2026-02-16
|
|
1821
1767
|
|
|
1822
1768
|
### Bug Fixes
|
|
1823
1769
|
|
|
1824
1770
|
- legacy previousTask not migrated to pausedTasks (PRJ-345) (#206)
|
|
1825
1771
|
|
|
1826
|
-
|
|
1827
1772
|
## [1.44.3] - 2026-02-16
|
|
1828
1773
|
|
|
1829
1774
|
### Bug Fixes
|
|
@@ -1842,7 +1787,6 @@ usable, not just carved out.
|
|
|
1842
1787
|
|
|
1843
1788
|
- migrate sessions from JSON files to SQLite (#204)
|
|
1844
1789
|
|
|
1845
|
-
|
|
1846
1790
|
## [1.43.1] - 2026-02-15
|
|
1847
1791
|
|
|
1848
1792
|
### Added
|
|
@@ -1858,7 +1802,6 @@ usable, not just carved out.
|
|
|
1858
1802
|
|
|
1859
1803
|
- context file suggestion reinforcement learning (#202)
|
|
1860
1804
|
|
|
1861
|
-
|
|
1862
1805
|
## [1.42.4] - 2026-02-15
|
|
1863
1806
|
|
|
1864
1807
|
### Added
|
|
@@ -1870,7 +1813,6 @@ usable, not just carved out.
|
|
|
1870
1813
|
|
|
1871
1814
|
- state storage updates preserve existing state to prevent data loss (#201)
|
|
1872
1815
|
|
|
1873
|
-
|
|
1874
1816
|
## [1.42.4] - 2026-02-15
|
|
1875
1817
|
|
|
1876
1818
|
### Bug Fixes
|
|
@@ -1895,7 +1837,6 @@ usable, not just carved out.
|
|
|
1895
1837
|
- daemon commands ignore request.cwd causing cross-project contamination (#199)
|
|
1896
1838
|
- pass request.cwd to analyze/cleanup/design in daemon
|
|
1897
1839
|
|
|
1898
|
-
|
|
1899
1840
|
## [1.42.1] - 2026-02-15
|
|
1900
1841
|
|
|
1901
1842
|
### Bug Fixes
|
|
@@ -1936,7 +1877,6 @@ usable, not just carved out.
|
|
|
1936
1877
|
|
|
1937
1878
|
- sanitize SQLite bindings in JSON migration (#196)
|
|
1938
1879
|
|
|
1939
|
-
|
|
1940
1880
|
## [1.40.1] - 2026-02-15
|
|
1941
1881
|
|
|
1942
1882
|
### Fixed
|
|
@@ -1948,7 +1888,6 @@ usable, not just carved out.
|
|
|
1948
1888
|
|
|
1949
1889
|
- redesign prjct update as 3-phase system updater (#195)
|
|
1950
1890
|
|
|
1951
|
-
|
|
1952
1891
|
## [1.39.0] - 2026-02-15
|
|
1953
1892
|
|
|
1954
1893
|
### Features
|
|
@@ -1996,7 +1935,6 @@ usable, not just carved out.
|
|
|
1996
1935
|
|
|
1997
1936
|
- reconcile queue with Linear status on sync (#190)
|
|
1998
1937
|
|
|
1999
|
-
|
|
2000
1938
|
## [1.38.3] - 2026-02-14
|
|
2001
1939
|
|
|
2002
1940
|
### Bug Fixes
|
|
@@ -2017,7 +1955,6 @@ usable, not just carved out.
|
|
|
2017
1955
|
|
|
2018
1956
|
- auto-repair Codex router metadata during sync (#187)
|
|
2019
1957
|
|
|
2020
|
-
|
|
2021
1958
|
## [1.38.1] - 2026-02-14
|
|
2022
1959
|
|
|
2023
1960
|
### Bug Fixes
|
|
@@ -2036,7 +1973,6 @@ usable, not just carved out.
|
|
|
2036
1973
|
|
|
2037
1974
|
- neutral banner colors + add Codex to provider selection (#185)
|
|
2038
1975
|
|
|
2039
|
-
|
|
2040
1976
|
## [1.37.1] - 2026-02-14
|
|
2041
1977
|
|
|
2042
1978
|
### Fixed
|
|
@@ -2069,7 +2005,6 @@ usable, not just carved out.
|
|
|
2069
2005
|
|
|
2070
2006
|
- Custom workflows with agentic auto-configuration (#183)
|
|
2071
2007
|
|
|
2072
|
-
|
|
2073
2008
|
## [1.36.0] - 2026-02-13
|
|
2074
2009
|
|
|
2075
2010
|
### Features
|
|
@@ -2092,7 +2027,6 @@ usable, not just carved out.
|
|
|
2092
2027
|
|
|
2093
2028
|
- add analysis rollback to restore previous sealed version (PRJ-276) (#181)
|
|
2094
2029
|
|
|
2095
|
-
|
|
2096
2030
|
## [1.33.1] - 2026-02-12
|
|
2097
2031
|
|
|
2098
2032
|
### Added
|
|
@@ -2121,7 +2055,6 @@ usable, not just carved out.
|
|
|
2121
2055
|
|
|
2122
2056
|
- exquisite terminal UX — rich markdown formatters + branded output (#179)
|
|
2123
2057
|
|
|
2124
|
-
|
|
2125
2058
|
## [1.30.2] - 2026-02-12
|
|
2126
2059
|
|
|
2127
2060
|
### Added
|
|
@@ -2144,7 +2077,6 @@ usable, not just carved out.
|
|
|
2144
2077
|
|
|
2145
2078
|
- enrich AI formatters with analysis data + add Codex support (#176)
|
|
2146
2079
|
|
|
2147
|
-
|
|
2148
2080
|
## [1.29.0] - 2026-02-12
|
|
2149
2081
|
|
|
2150
2082
|
### Features
|
|
@@ -2168,21 +2100,18 @@ usable, not just carved out.
|
|
|
2168
2100
|
|
|
2169
2101
|
- agentic Linear template without MCP dependency
|
|
2170
2102
|
|
|
2171
|
-
|
|
2172
2103
|
## [1.27.1] - 2026-02-11
|
|
2173
2104
|
|
|
2174
2105
|
### Bug Fixes
|
|
2175
2106
|
|
|
2176
2107
|
- exclude router files (p.md/p.toml) from subcommand installation
|
|
2177
2108
|
|
|
2178
|
-
|
|
2179
2109
|
## [1.27.0] - 2026-02-11
|
|
2180
2110
|
|
|
2181
2111
|
### Features
|
|
2182
2112
|
|
|
2183
2113
|
- dual-runtime SQLite — bun:sqlite + better-sqlite3 (#174)
|
|
2184
2114
|
|
|
2185
|
-
|
|
2186
2115
|
## [1.27.6] - 2026-02-11
|
|
2187
2116
|
|
|
2188
2117
|
### Added
|
|
@@ -2291,7 +2220,6 @@ usable, not just carved out.
|
|
|
2291
2220
|
|
|
2292
2221
|
- strip shebangs in build via esbuild plugin (#171)
|
|
2293
2222
|
|
|
2294
|
-
|
|
2295
2223
|
## [1.24.2] - 2026-02-10
|
|
2296
2224
|
|
|
2297
2225
|
### Bug Fixes
|
|
@@ -2546,7 +2474,6 @@ Bridges the outcomes system to semantic memory. Previously, patterns from comple
|
|
|
2546
2474
|
- add task-to-analysis feedback loop (PRJ-272) (#165)
|
|
2547
2475
|
- add task history array with FIFO eviction (PRJ-281) (#164)
|
|
2548
2476
|
|
|
2549
|
-
|
|
2550
2477
|
## [1.22.0] - 2026-02-10
|
|
2551
2478
|
|
|
2552
2479
|
### Features
|
|
@@ -2642,14 +2569,12 @@ Replaced single previousTask field with bounded task history array to enable pat
|
|
|
2642
2569
|
**How to use:** No action needed — task history is automatic on `p. done`
|
|
2643
2570
|
**Breaking changes:** None — fully backward compatible
|
|
2644
2571
|
|
|
2645
|
-
|
|
2646
2572
|
## [1.20.0] - 2026-02-10
|
|
2647
2573
|
|
|
2648
2574
|
### Features
|
|
2649
2575
|
|
|
2650
2576
|
- add retry with exponential backoff for agent and tool operations (#162)
|
|
2651
2577
|
|
|
2652
|
-
|
|
2653
2578
|
## [1.20.0] - 2026-02-09
|
|
2654
2579
|
|
|
2655
2580
|
### Features
|
|
@@ -2816,7 +2741,6 @@ Modified:
|
|
|
2816
2741
|
|
|
2817
2742
|
- implement incremental sync with file hashing (PRJ-305) (#160)
|
|
2818
2743
|
|
|
2819
|
-
|
|
2820
2744
|
## [1.18.0] - 2026-02-09
|
|
2821
2745
|
|
|
2822
2746
|
### Features
|
|
@@ -2867,7 +2791,6 @@ Modified:
|
|
|
2867
2791
|
|
|
2868
2792
|
- implement BM25 + import graph + git co-change for zero-cost file selection (PRJ-304) (#159)
|
|
2869
2793
|
|
|
2870
|
-
|
|
2871
2794
|
## [1.17.0] - 2026-02-08
|
|
2872
2795
|
|
|
2873
2796
|
### Features
|
|
@@ -2944,7 +2867,6 @@ Modified:
|
|
|
2944
2867
|
|
|
2945
2868
|
- replace hardcoded memory domain tags with semantic matching (PRJ-300) (#157)
|
|
2946
2869
|
|
|
2947
|
-
|
|
2948
2870
|
## [1.14.1] - 2026-02-09
|
|
2949
2871
|
|
|
2950
2872
|
### Improved
|
|
@@ -2985,7 +2907,6 @@ Modified:
|
|
|
2985
2907
|
|
|
2986
2908
|
- add sprint-based velocity calculation with trend detection (PRJ-296) (#156)
|
|
2987
2909
|
|
|
2988
|
-
|
|
2989
2910
|
## [1.14.0] - 2026-02-09
|
|
2990
2911
|
|
|
2991
2912
|
### Features
|
|
@@ -3034,7 +2955,6 @@ Key changes:
|
|
|
3034
2955
|
|
|
3035
2956
|
- inject sealed analysis into task prompt context (PRJ-260) (#155)
|
|
3036
2957
|
|
|
3037
|
-
|
|
3038
2958
|
## [1.13.0] - 2026-02-09
|
|
3039
2959
|
|
|
3040
2960
|
### Features
|
|
@@ -3074,7 +2994,6 @@ Key changes:
|
|
|
3074
2994
|
|
|
3075
2995
|
- make subtask output and handoff mandatory (PRJ-262) (#154)
|
|
3076
2996
|
|
|
3077
|
-
|
|
3078
2997
|
## [1.11.0] - 2026-02-09
|
|
3079
2998
|
|
|
3080
2999
|
### Features
|
|
@@ -3140,7 +3059,6 @@ Key changes:
|
|
|
3140
3059
|
- redesign prompt assembly with correct section ordering + anti-hallucination (PRJ-301) (#152)
|
|
3141
3060
|
- add coordinated global token budget (PRJ-266) (#151)
|
|
3142
3061
|
|
|
3143
|
-
|
|
3144
3062
|
## [1.12.0] - 2026-02-07
|
|
3145
3063
|
|
|
3146
3064
|
### Features
|