prjct-cli 3.44.0 → 3.46.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 +36 -0
- package/dist/bin/prjct-core.mjs +574 -557
- package/dist/bin/prjct-hooks.mjs +381 -365
- package/dist/daemon/entry.mjs +455 -438
- package/dist/mcp/server.mjs +267 -251
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,42 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
## [3.46.0] - 2026-07-10
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- value-based memory retention (full plan: score + apply + triggers) (#542)
|
|
12
|
+
- terminal tip channel — agent surfaces SoT/suggest to user
|
|
13
|
+
- living apply — SoT binding + live mod suggestions
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- align tip→user tests + ship as v3.45.0
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [3.45.0] - 2026-07-10
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **Living apply (SoT · live suggest · tip→user)**: Rho-kept memory injects as binding SoT (decision/gotcha/fact) or live modification suggestions (anti-pattern/pattern + files). Agent is the terminal tip channel (no web UI) — restates SoT/SUGGEST in chat, then acts.
|
|
24
|
+
- **Rho-inspired selective memory (microsoft/rho analogy)** — real reference model R (judgment + living-v2), excess = 1−max_sim vs R via local subword embeddings (0 tokens), capture gate rejects low-excess noise, score/apply/embed driven by excess + usage + groundedness. Modules: `retention/reference-model.ts`, `excess.ts`, `capture-gate.ts`.
|
|
25
|
+
- Value-based retention apply path: archive/delete caps, inbox triage, done-trigger, `config.retention.mode` off|dry-run|apply.
|
|
26
|
+
- **Historical bloat mitigation on `prjct sync`**: soft-deleted vacuum (30d), orphan remember-events purge, archive prune, auto-source live cap (20), vault health line; auto-source capture gate (stricter excess); inject filter demotes aged auto history on recall.
|
|
27
|
+
- **Distill-then-hard-delete**: worthless history analyzed into one digest then hard-deleted; auto-source overflow distilled; delete verdicts hard-delete (protected types archive only).
|
|
28
|
+
|
|
29
|
+
## [3.45.0] - 2026-07-10
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
- paid UX — account status, connect, billing (v3.45.0) (#543)
|
|
34
|
+
- distill-then-hard-delete worthless history
|
|
35
|
+
- historical bloat mitigation on prjct sync
|
|
36
|
+
- real Rho excess vs reference model R
|
|
37
|
+
- complete retention plan — apply, inbox triage, done-trigger, selective embed
|
|
38
|
+
- retention score service + sync dry-run report (PR1 of value-based cleanup)
|
|
39
|
+
|
|
40
|
+
|
|
5
41
|
## [3.44.0] - 2026-07-10
|
|
6
42
|
|
|
7
43
|
### Added
|