prjct-cli 3.50.1 → 3.51.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 -1
- package/dist/bin/prjct-core.mjs +591 -633
- package/dist/bin/prjct-hooks.mjs +278 -309
- package/dist/daemon/entry.mjs +653 -695
- package/dist/mcp/server.mjs +254 -297
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/antigravity/SKILL.md +4 -3
- package/templates/codex/SKILL.md +4 -3
- package/templates/global/ANTIGRAVITY.md +2 -2
- package/templates/global/GEMINI.md +2 -2
- package/templates/skills/prjct/SKILL.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.51.0] - 2026-07-13
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- portable multi-LLM L0 skill isolation — no global project stamp
|
|
9
|
+
|
|
10
|
+
## [3.50.2] - 2026-07-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- perf: routing fix + MCP schema slim (19→10 tools)
|
|
14
|
+
|
|
15
|
+
### Performance
|
|
16
|
+
|
|
17
|
+
- **MCP schema slim (ListTools tax)**: default core surface **19 → 10 tools**; `projectPath` optional (cwd / `PRJCT_PROJECT_PATH`); typed record verbs + cost/signals/skills/developer/tiers/artifacts moved to `PRJCT_MCP_TOOLS=standard|all`; shorter server instructions. CLI parity unchanged.
|
|
18
|
+
|
|
5
19
|
### Bug Fixes
|
|
6
20
|
|
|
7
21
|
- **Routing: `prjct harness score` no longer GTD-captures to inbox** — `harness` was implemented in bin-commands but missing from `BIN_ONLY_COMMANDS`, so multi-word GTD rewrote it to `capture` whenever the daemon path ran. Registered as bin-only + completeness test so handlers cannot outlive the allowlist again.
|
|
@@ -13,13 +27,18 @@
|
|
|
13
27
|
- **Usefulness rerank** — `decayedScores` accepts candidate IDs so FTS rerank no longer full-scans `memory_usefulness`.
|
|
14
28
|
- **Typo suggestions** — `findClosestCommand` uses full COMMANDS manifest (bin-only verbs included) + length early-exit.
|
|
15
29
|
|
|
30
|
+
## [3.50.2] - 2026-07-12
|
|
31
|
+
|
|
32
|
+
### Performance
|
|
33
|
+
|
|
34
|
+
- slim core ListTools 19→10 tools (#554)
|
|
35
|
+
|
|
16
36
|
## [3.50.1] - 2026-07-12
|
|
17
37
|
|
|
18
38
|
### Performance
|
|
19
39
|
|
|
20
40
|
- fix harness GTD capture + hot-path efficiency (#553)
|
|
21
41
|
|
|
22
|
-
|
|
23
42
|
## [3.50.0] - 2026-07-12
|
|
24
43
|
|
|
25
44
|
### Added
|