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 +10 -0
- package/README.md +5 -6
- package/assets/scripts/refresh-update.mjs +3 -2
- package/dist/bin/prjct-core.mjs +753 -761
- package/dist/bin/prjct-hooks.mjs +373 -381
- package/dist/bin/prjct.mjs +12 -12
- package/dist/daemon/entry.mjs +660 -668
- package/dist/mcp/server.mjs +389 -397
- package/dist/templates.json +1 -1
- package/package.json +4 -3
- package/templates/antigravity/SKILL.md +0 -19
- package/templates/codex/SKILL.md +0 -19
- package/templates/crew/registry.json +0 -27
- package/templates/cursor/router.mdc +0 -9
- package/templates/global/ANTIGRAVITY.md +0 -32
- package/templates/global/CURSOR.mdc +0 -14
- package/templates/global/GEMINI.md +0 -32
- package/templates/global/WINDSURF.md +0 -14
- package/templates/grok/SKILL.md +0 -19
- package/templates/mcp-config.json +0 -29
- package/templates/windsurf/router.md +0 -9
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,
|
|
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
|
|
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
|
-
|
|
521
|
-
|
|
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
|
|
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
|
-
|
|
43
|
+
const chunks = []
|
|
44
44
|
res.on('data', (chunk) => {
|
|
45
|
-
|
|
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 })
|