prjct-cli 1.26.0 → 1.27.1
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 +26 -1
- package/dist/bin/prjct-core.mjs +305 -592
- package/dist/cli/linear.mjs +10 -10
- package/dist/daemon/entry.mjs +242 -529
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.27.1] - 2026-02-11
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- exclude router files (p.md/p.toml) from subcommand installation
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.27.0] - 2026-02-11
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- dual-runtime SQLite — bun:sqlite + better-sqlite3 (#174)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.27.6] - 2026-02-11
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Dual-runtime SQLite — bun:sqlite + better-sqlite3 for Node.js compatibility
|
|
21
|
+
|
|
22
|
+
## [1.27.1] - 2026-02-11
|
|
23
|
+
|
|
24
|
+
### Removed
|
|
25
|
+
- Dead context generators (`ContextFileGenerator`, legacy `generateContext()`) — no readers existed
|
|
26
|
+
- StorageManager MD write-through (`toMarkdown()`, `getLayer()`, `getMdFilename()`) from base class and 8 subclasses
|
|
27
|
+
- ~1,750 lines of orphaned code; writes are faster (no MD file I/O on state changes)
|
|
28
|
+
|
|
3
29
|
## [1.26.0] - 2026-02-11
|
|
4
30
|
|
|
5
31
|
### Features
|
|
6
32
|
|
|
7
33
|
- kill JSON I/O + skill-on-demand --md architecture (PRJ-303) (#173)
|
|
8
34
|
|
|
9
|
-
|
|
10
35
|
## [1.27.0] - 2026-02-11
|
|
11
36
|
|
|
12
37
|
### Features
|