prjct-cli 2.43.4 → 2.44.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,17 +2,25 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### Performance
6
- - **Hot recall queries now use the type index.** Every `type LIKE 'memory.%'` filter (recall, vault index, embeddings backfill anti-join, memory cap, transcript dedup) was a full `SCAN events` SQLite can't derive scan bounds from a parameterized LIKE. Rewritten as indexed range predicates with exact-parity tests; cost stays flat as the events table grows.
7
- - **Prompt hook git snapshot cached for 3s.** The UserPromptSubmit hook forked 3 git processes per turn (~40ms); agentic bursts forked hundreds. The daemon now reuses the snapshot within a 3s TTL per cwd.
8
- - **Upgrade migration no longer opens every project DB.** A `.cli-version` marker per project dir reduces the post-upgrade scan from a SQLite open per directory (~3ms × tens of thousands of dirs ≈ up to a minute) to one tiny file read each.
9
- - Vault writes skip redundant per-file `mkdir` syscalls (dir-ensured cache with delete-retry fallback).
5
+ ### Improved
6
+ - **Token diet across every injected surface** (~17% less per session). Per-turn state block: timestamps use day-level buckets (`today`/`yesterday`/`Nd ago` — minute-level strings flipped every turn for zero signal) and a clean tree with nothing unpushed emits just the branch name. Skill body: the State section is counts-only (task descriptions were stale by the next sync and duplicated by the live prompt hook — detail moves to `prjct context --md`). Session-start: dropped the recall-verb line the skill already carries. Global CLAUDE.md: capture/workflow sections collapsed to the parts the skill doesn't cover. Team-mode block: one-line contract instead of repeating the global instructions.
10
7
 
11
8
  ### Fixed
12
- - **Vault can no longer go stale across upgrades.** The regen fingerprint now includes the CLI version: every upgrade forces one cheap full regen per project, so a builder/format change always renders (previously the old fingerprint blocked new output until unrelated inputs changed).
13
- - **Codex detected in non-interactive shells.** `detectCodex` accepts `~/.codex/auth.json` (a logged-in install) as evidence alongside binary-on-PATH — hooks/daemon run without the interactive PATH, which silently skipped Codex MCP wiring and skill repair.
14
- - Removed dead `memoryService.search()` (1,000-row JS substring scan, zero callers — `prjct search` uses the FTS5 + semantic blend).
15
- - Archive-storage tests no longer leak a real-path SQLite connection across the pathManager patch (stray async sync-publish could cache it and hijack the next test's isolation).
9
+ - The `review-risk` git-integration tests carry a 15s timeout the default 5s flaked under CI runner load and took down a release run.
10
+
11
+ ## [2.44.1] - 2026-06-12
12
+
13
+ ### Performance
14
+
15
+ - token diet — coarse timestamps, quiet state lines, counts-only skill State, instruction dedupe (#430)
16
+
17
+
18
+ ## [2.44.0] - 2026-06-11
19
+
20
+ ### Features
21
+
22
+ - retrieval quality — superseded filter, proven-first digests, MCP parity, push-path ship credit, unicode keywords (#429)
23
+
16
24
 
17
25
  ## [2.43.4] - 2026-06-11
18
26