prjct-cli 2.43.3 → 2.44.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 +20 -6
- package/dist/bin/prjct-core.mjs +354 -351
- package/dist/daemon/entry.mjs +340 -337
- package/dist/mcp/server.mjs +292 -284
- 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
|
@@ -3,13 +3,27 @@
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
5
|
### Fixed
|
|
6
|
-
- **
|
|
7
|
-
-
|
|
6
|
+
- **Superseded knowledge can no longer surface as live advice.** `searchFts` (the per-prompt trap cue + the FTS leg of every recall) only filtered soft-deletes — an obsolete decision/gotcha could still inject as current. It now prunes author-declared retirements (`supersedes:` / `superseded-by:` / `duplicates:`) using a mirror-wide dead-id set, catching the case where BM25 never co-returns the superseding entry.
|
|
7
|
+
- **Spanish prompts now produce real retrieval signal.** Keyword extraction was ASCII-only ("búsqueda" → mangled, "qué pasó" → nothing); it now tokenizes unicode, deburrs to match FTS5's diacritic-stripped index, and drops Spanish function words. FTS query sanitizing deburrs too.
|
|
8
|
+
|
|
9
|
+
### Improved
|
|
10
|
+
- **MCP memory tools retrieve like the CLI.** `prjct_mem_list` used plain recency recall and `prjct_mem_similar` a shared-keyword heuristic — subagents (who do the bulk of the editing) got strictly worse retrieval than `prjct context memory`. Both now run the shared `enrichedRecall` pipeline: FTS-first, semantic blend, usefulness rerank, link expansion, ship attribution.
|
|
11
|
+
- **Digest slots are proven-first.** The session-start and subagent digests picked the 3 most RECENT gotchas/decisions; they now overfetch and rerank by the usefulness ledger, so knowledge that keeps paying off wins the slots.
|
|
12
|
+
- **Push-surfaced knowledge earns ship credit.** The pre-edit guard hook, the prompt trap cue, `prjct guard`, and `prjct_guard` now log surfaced entries against the active task — previously only PULL recalls did, so the most effective gotchas decayed in ranking precisely because the push delivery worked.
|
|
13
|
+
|
|
14
|
+
## [2.44.0] - 2026-06-11
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- retrieval quality — superseded filter, proven-first digests, MCP parity, push-path ship credit, unicode keywords (#429)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## [2.43.4] - 2026-06-11
|
|
22
|
+
|
|
23
|
+
### Performance
|
|
24
|
+
|
|
25
|
+
- indexed range queries, git TTL cache, version-aware vault fingerprint, upgrade-scan guard (#428)
|
|
8
26
|
|
|
9
|
-
### Added
|
|
10
|
-
- **Codex MCP wiring.** Setup and sync now ensure `[mcp_servers.prjct]` in `~/.codex/config.toml` (marker-managed TOML block; user-managed entries are never touched) — the `prjct_*` tools finally exist for Codex sessions.
|
|
11
|
-
- **AGENTS.md generation.** `prjct init` writes a vendor-neutral prjct routing block to the project's `AGENTS.md` (marker-merged, user content preserved) when Codex is detected or wizard-selected — Codex has no hooks, so this block is its session-start context.
|
|
12
|
-
- `prjct doctor` now checks the `codex` binary and the installed Claude hooks count.
|
|
13
27
|
|
|
14
28
|
## [2.43.3] - 2026-06-11
|
|
15
29
|
|