prjct-cli 2.44.1 → 2.45.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 CHANGED
@@ -2,11 +2,29 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
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.
7
-
8
5
  ### Fixed
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.
6
+ - **The first command after an upgrade no longer stalls.** The post-upgrade re-setup (provider installers, Context7 verification, the per-project migration over the whole projects dir) ran synchronously inside whatever command the user happened to run first — up to ~30s of silent blocking on machines with large project dirs. It now runs in a detached `__post-upgrade` child (the auto-updater pattern): the command returns immediately (measured 31.6s → 0.10s) and a one-line banner says setup is finishing in the background. Explicit `prjct update` keeps its synchronous, progress-printing behavior. Both detached-child internals are now in the daemon shim's skip set — routing them to the daemon silently failed them.
7
+
8
+ ### Internal
9
+ - **Dead-code and anti-pattern sweep** (no user-visible behavior change). Removed: 29 redundant `export default` aliases, the orphaned OAuth token validation/migration family (`tokens.ts` shrinks to the version pin; `system-database.ts` and its write-only MCP-health table die with it), `projectMemory.similar()`, `memoryService.getRecent`/`getByAction`, `hasIndexesAll`, `aggregateHookSignals`, `deriveWorkspaceId`, and five write-only `SkillContext` fields (task/backlog descriptions deliberately never enter the skill body). Deduplicated: the guard label/detail helpers (one canonical pair in `memory/format.ts`), the CLAUDE.md/AGENTS.md routing writers (shared `routing-block.ts` skeleton), and the pathManager test sandbox (one `_setup/path-manager-mock.ts` instead of eight hand-copied patch/restore blocks). Simplified: `selectProvider` (the never-built `userSelected` prompt path removed), static skill frontmatter takes no context by construction.
10
+
11
+ ## [2.45.0] - 2026-06-16
12
+
13
+ ### Features
14
+
15
+ - lean — anti-over-engineering capability (prjct-native ponytail) (#434)
16
+
17
+
18
+ ## [2.44.2] - 2026-06-12
19
+
20
+ ### Bug Fixes
21
+
22
+ - post-upgrade setup no longer stalls the user's first command (~30s → 0.1s) (#432)
23
+
24
+ ### Maintenance
25
+
26
+ - dead-code + anti-pattern sweep — DRY/KISS pass (#431)
27
+
10
28
 
11
29
  ## [2.44.1] - 2026-06-12
12
30