prjct-cli 3.84.0 → 3.88.0
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 +20 -0
- package/bin/prjct +9 -2
- package/dist/bin/prjct-core.mjs +811 -717
- package/dist/bin/prjct-hooks.mjs +414 -348
- package/dist/daemon/entry.mjs +691 -619
- package/dist/mcp/server.mjs +316 -290
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.88.0] - 2026-08-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- fix Claude Code hook latency: 10s hook timeouts, skip shim setup on hook path, gate Stop transcript parsing behind 10-min cooldown
|
|
9
|
+
|
|
10
|
+
## [3.87.0] - 2026-08-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- efficiency
|
|
14
|
+
|
|
15
|
+
## [3.86.0] - 2026-08-12
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- efficiency
|
|
19
|
+
|
|
20
|
+
## [3.85.0] - 2026-08-12
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- Review AGENTS.md and CLAUDE.md surface optimization using canonical-file symlinks
|
|
24
|
+
|
|
5
25
|
## [3.84.0] - 2026-08-11
|
|
6
26
|
|
|
7
27
|
### Added
|
package/bin/prjct
CHANGED
|
@@ -194,8 +194,15 @@ run_with_node() {
|
|
|
194
194
|
|
|
195
195
|
# Main execution
|
|
196
196
|
main() {
|
|
197
|
-
#
|
|
198
|
-
ensure_setup
|
|
197
|
+
# Hooks fire per prompt / tool call / turn inside Claude Code — the hot
|
|
198
|
+
# path must not pay ensure_setup's stats/cp/sed on every event. The .cjs
|
|
199
|
+
# bin already skips setup for `hook` (bin/prjct.cjs setupSkipCommands);
|
|
200
|
+
# this keeps the POSIX shim consistent. Self-heal still runs on every
|
|
201
|
+
# non-hook invocation, so a stale statusline/skill gets repaired at most
|
|
202
|
+
# one manual command later.
|
|
203
|
+
if [ "$1" != "hook" ]; then
|
|
204
|
+
ensure_setup
|
|
205
|
+
fi
|
|
199
206
|
|
|
200
207
|
# Prefer bun if available (faster, native TS support); otherwise fall back to
|
|
201
208
|
# node. We deliberately do NOT auto-install bun: fetching an unpinned
|