prjct-cli 3.82.0 → 3.83.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 +11 -0
- package/README.md +2 -0
- package/dist/bin/prjct-core.mjs +638 -638
- package/dist/bin/prjct-hooks.mjs +3 -3
- package/dist/daemon/entry.mjs +558 -558
- package/dist/mcp/server.mjs +279 -279
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.83.0] - 2026-08-10
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Document MCP 2026 compatibility and efficiency controls
|
|
10
|
+
- MCP `2026-07-28` stdio negotiation with transparent 2025-era compatibility, cacheable discovery/tool catalogs, and a static-list capability that avoids unused subscriptions.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Migrated to the split MCP TypeScript SDK v2 and Zod 4. The default 10-tool catalog is 36.7% smaller than v3.82.0 (7,699 → 4,871 serialized bytes) with an effectively flat server bundle (+0.09%).
|
|
15
|
+
|
|
5
16
|
## [3.82.0] - 2026-08-10
|
|
6
17
|
|
|
7
18
|
### Added
|
package/README.md
CHANGED
|
@@ -359,6 +359,8 @@ Remove with `prjct claude uninstall` (hooks only) or `prjct uninstall` (everythi
|
|
|
359
359
|
|
|
360
360
|
prjct-cli exposes an MCP server with 6 tool groups (every tool is prefixed `prjct_`):
|
|
361
361
|
|
|
362
|
+
The stdio server negotiates MCP `2026-07-28` while retaining the legacy 2025 handshake for existing hosts. Modern clients skip `initialize`, cache discovery and the static tool catalog privately for 24 hours, and avoid unnecessary list-change subscriptions. The default `core` tier exposes only 10 high-signal tools; set `PRJCT_MCP_TOOLS=standard|all` when a host needs the larger surface.
|
|
363
|
+
|
|
362
364
|
| Group | Tools |
|
|
363
365
|
|---|---|
|
|
364
366
|
| **memory** | `mem_save`, `mem_list`, `mem_similar`, `mem_forget`, `guard`, `record_decision` / `record_gotcha` / `record_learning` / `record_fact`, `capture_inbox` |
|