prjct-cli 1.46.2 → 1.46.5
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 +25 -1
- package/bin/prjct +11 -0
- package/dist/bin/prjct-core.mjs +368 -336
- package/dist/cli/jira.mjs +4 -4
- package/dist/cli/linear.mjs +8 -8
- package/dist/daemon/entry.mjs +335 -303
- package/dist/templates.json +1 -1
- package/package.json +4 -3
- package/scripts/ensure-bun.sh +44 -0
- package/scripts/postinstall.js +11 -0
- package/templates/commands/done.md +15 -2
- package/templates/commands/task.md +21 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.46.5] - 2026-02-21
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- structural fixes for pattern ranking audit (#221)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.46.5] - 2026-02-20
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- structural fixes for pattern ranking
|
|
15
|
+
|
|
16
|
+
## [1.46.4] - 2026-02-18
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- daemon production hardening — WAL checkpoint, log rotation, project cleanup (#220)
|
|
21
|
+
|
|
22
|
+
## [1.46.3] - 2026-02-18
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- Daemon production hardening: WAL checkpoint, log rotation, project cleanup (#220)
|
|
27
|
+
|
|
3
28
|
## [1.46.2] - 2026-02-18
|
|
4
29
|
|
|
5
30
|
### Bug Fixes
|
|
6
31
|
|
|
7
32
|
- daemon memory leaks — LRU pool, buffer cap, DB cleanup (#219)
|
|
8
33
|
|
|
9
|
-
|
|
10
34
|
## [1.46.1] - 2026-02-18
|
|
11
35
|
|
|
12
36
|
### Bug Fixes
|
package/bin/prjct
CHANGED
|
@@ -157,6 +157,17 @@ main() {
|
|
|
157
157
|
if check_bun; then
|
|
158
158
|
run_with_bun "$@"
|
|
159
159
|
elif check_node; then
|
|
160
|
+
# Bun not found but Node available — try auto-install Bun (one-time)
|
|
161
|
+
ENSURE_BUN="$ROOT_DIR/scripts/ensure-bun.sh"
|
|
162
|
+
if [ -f "$ENSURE_BUN" ]; then
|
|
163
|
+
sh "$ENSURE_BUN"
|
|
164
|
+
# Re-source PATH in case Bun was just installed
|
|
165
|
+
export BUN_INSTALL="${BUN_INSTALL:-$HOME/.bun}"
|
|
166
|
+
export PATH="$BUN_INSTALL/bin:$PATH"
|
|
167
|
+
if check_bun; then
|
|
168
|
+
run_with_bun "$@"
|
|
169
|
+
fi
|
|
170
|
+
fi
|
|
160
171
|
run_with_node "$@"
|
|
161
172
|
else
|
|
162
173
|
echo "Error: Neither bun nor node is installed."
|