prjct-cli 2.37.0 → 2.37.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 +7 -1
- package/dist/bin/prjct-core.mjs +135 -135
- package/dist/daemon/entry.mjs +138 -138
- package/dist/mcp/server.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## [2.37.
|
|
5
|
+
## [2.37.1] - 2026-06-01
|
|
6
|
+
|
|
7
|
+
Context-efficiency, part 3: trim the recurring per-turn surfaces.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **Per-prompt topical-memory injection is now selective, not padded.** It fires on every prompt. Previously, when FTS/BM25 returned fewer than 8 matches it padded the set up to 8 with weaker recency/substring matches — spending tokens on low-relevance entries every turn. Now it injects exactly the BM25-ranked matches and only falls back to the recency window when FTS returns *nothing* (fresh DB / no indexed match). Narrow prompts inject few, highly-relevant entries instead of a padded eight. Also condensed the per-block preamble that repeated verbatim each prompt.
|
|
11
|
+
- **MCP tool descriptions condensed** (~820 → ~680 tokens) without losing the "when to call" signal — they load into context whenever the prjct MCP server is connected.
|
|
6
12
|
|
|
7
13
|
Context-efficiency, part 2: cut the Claude skill's always-on footprint by 73%.
|
|
8
14
|
|