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 +17 -9
- package/dist/bin/prjct-core.mjs +345 -343
- package/dist/daemon/entry.mjs +264 -262
- package/dist/mcp/server.mjs +267 -260
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/antigravity/SKILL.md +1 -0
- package/templates/codex/SKILL.md +1 -1
- package/templates/global/GEMINI.md +1 -0
- package/templates/skills/prjct/SKILL.md +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
- **
|
|
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
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
|