prjct-cli 3.50.0 → 3.50.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 CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### Bug Fixes
6
+
7
+ - **Routing: `prjct harness score` no longer GTD-captures to inbox** — `harness` was implemented in bin-commands but missing from `BIN_ONLY_COMMANDS`, so multi-word GTD rewrote it to `capture` whenever the daemon path ran. Registered as bin-only + completeness test so handlers cannot outlive the allowlist again.
8
+
9
+ ### Performance
10
+
11
+ - **Lazy hook runners** — Stop/embeddings/transcript graph no longer loads for prompt/pre-edit cold spawns (`hooks/registry.ts` dynamic import per event).
12
+ - **UserPromptSubmit hot path** — `bumpTurnCount` returns post-bump task (one write, no second read); owner from task; parallel queue/ship/inbox/handoff/git; parallel alignment imports.
13
+ - **Usefulness rerank** — `decayedScores` accepts candidate IDs so FTS rerank no longer full-scans `memory_usefulness`.
14
+ - **Typo suggestions** — `findClosestCommand` uses full COMMANDS manifest (bin-only verbs included) + length early-exit.
15
+
16
+ ## [3.50.1] - 2026-07-12
17
+
18
+ ### Performance
19
+
20
+ - fix harness GTD capture + hot-path efficiency (#553)
21
+
22
+
5
23
  ## [3.50.0] - 2026-07-12
6
24
 
7
25
  ### Added