prjct-cli 3.80.1 → 3.82.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,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.82.0] - 2026-08-10
6
+
7
+ ### Added
8
+ - Enforce const-only JavaScript and TypeScript across every tracked JS/TS source
9
+
10
+ ## [3.81.0] - 2026-08-10
11
+
12
+ ### Added
13
+ - const only modern js
14
+
5
15
  ## [3.80.1] - 2026-08-03
6
16
 
7
17
  ### 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
 
@@ -517,15 +517,14 @@ prjct-cli/
517
517
  workflow-engine/ Rule state-machine + when-evaluator
518
518
  workflows/ Onboarding wizard
519
519
  templates/
520
- codex/ crew/ cursor/ windsurf/ antigravity/ Per-agent surfaces
521
- global/ Per-editor router templates
522
- skills/ Skill templates
520
+ crew/ Native crew roles and checkpoints
521
+ skills/ Required disk-backed skill template
523
522
  ```
524
523
 
525
524
  ## Requirements
526
525
 
527
526
  - Node.js 22.5+ (ships `node:sqlite`) or Bun 1.0+
528
- - One of: Claude Code, Gemini CLI, Cursor IDE, Windsurf, OpenAI Codex, Antigravity
527
+ - One of: Claude Code, OpenAI Codex, Gemini CLI, Cursor, OpenCode, Cline, Grok Build, Pi, Kimi CLI, or Antigravity
529
528
 
530
529
  ## Common questions
531
530
 
@@ -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 })