prjct-cli 3.80.1 → 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 CHANGED
@@ -2,6 +2,27 @@
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
+
16
+ ## [3.82.0] - 2026-08-10
17
+
18
+ ### Added
19
+ - Enforce const-only JavaScript and TypeScript across every tracked JS/TS source
20
+
21
+ ## [3.81.0] - 2026-08-10
22
+
23
+ ### Added
24
+ - const only modern js
25
+
5
26
  ## [3.80.1] - 2026-08-03
6
27
 
7
28
  ### Fixed
package/README.md CHANGED
@@ -174,7 +174,7 @@ It reports concrete support levels:
174
174
 
175
175
  Run `prjct agents doctor --md` to see the current machine/project matrix for
176
176
  Claude Code, Codex, Gemini CLI, OpenCode, Qwen Code, Kimi CLI, Grok Build,
177
- Cursor, Windsurf, Cline/Roo-family agents, hosted agents, and future
177
+ Cursor, Pi, Cline/Roo-family agents, hosted agents, and future
178
178
  AGENTS.md/MCP clients.
179
179
 
180
180
  Use `prjct agents doctor --fix` inside a prjct project to refresh the portable
@@ -272,7 +272,7 @@ p. performance 7 # inspect dev+LLM efficiency
272
272
  p. ship # commit, push, open PR
273
273
  ```
274
274
 
275
- Cursor and Windsurf use their installed prjct router files; otherwise run `prjct <command> --md` and follow the output.
275
+ Cursor uses its installed prjct router file; other agents use AGENTS.md, a native skill/MCP adapter, or `prjct <command> --md`.
276
276
 
277
277
  ### Harness verbs
278
278
 
@@ -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` |
@@ -517,15 +519,14 @@ prjct-cli/
517
519
  workflow-engine/ Rule state-machine + when-evaluator
518
520
  workflows/ Onboarding wizard
519
521
  templates/
520
- codex/ crew/ cursor/ windsurf/ antigravity/ Per-agent surfaces
521
- global/ Per-editor router templates
522
- skills/ Skill templates
522
+ crew/ Native crew roles and checkpoints
523
+ skills/ Required disk-backed skill template
523
524
  ```
524
525
 
525
526
  ## Requirements
526
527
 
527
528
  - Node.js 22.5+ (ships `node:sqlite`) or Bun 1.0+
528
- - One of: Claude Code, Gemini CLI, Cursor IDE, Windsurf, OpenAI Codex, Antigravity
529
+ - One of: Claude Code, OpenAI Codex, Gemini CLI, Cursor, OpenCode, Cline, Grok Build, Pi, Kimi CLI, or Antigravity
529
530
 
530
531
  ## Common questions
531
532
 
@@ -40,13 +40,14 @@ const opts = {
40
40
  }
41
41
 
42
42
  const req = https.request(opts, (res) => {
43
- let data = ''
43
+ const chunks = []
44
44
  res.on('data', (chunk) => {
45
- data += chunk
45
+ chunks.push(chunk)
46
46
  })
47
47
  res.on('end', () => {
48
48
  try {
49
49
  if (res.statusCode === 200) {
50
+ const data = Buffer.concat(chunks).toString('utf8')
50
51
  const version = JSON.parse(data).version
51
52
  if (typeof version === 'string') {
52
53
  fs.mkdirSync(path.dirname(resolved), { recursive: true })