prjct-cli 2.19.0 → 2.19.3
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 +16 -0
- package/dist/bin/prjct-core.mjs +406 -402
- package/dist/daemon/entry.mjs +217 -217
- package/dist/mcp/server.mjs +1 -1
- package/dist/templates.json +1 -1
- package/package.json +5 -2
- package/templates/spec-template.md +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prjct-cli",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.3",
|
|
4
4
|
"description": "Context layer for AI agents. Project context for Claude Code, Gemini CLI, and more.",
|
|
5
5
|
"main": "dist/bin/prjct.mjs",
|
|
6
6
|
"bin": {
|
|
@@ -64,7 +64,10 @@
|
|
|
64
64
|
},
|
|
65
65
|
"overrides": {
|
|
66
66
|
"path-to-regexp": "8.4.0",
|
|
67
|
-
"brace-expansion": "5.0.5"
|
|
67
|
+
"brace-expansion": "5.0.5",
|
|
68
|
+
"fast-uri": ">=3.1.2",
|
|
69
|
+
"hono": ">=4.12.18",
|
|
70
|
+
"ip-address": ">=10.1.1"
|
|
68
71
|
},
|
|
69
72
|
"devDependencies": {
|
|
70
73
|
"@biomejs/biome": "2.3.13",
|
|
@@ -82,13 +82,16 @@ draft → reviewed → in_progress → shipped
|
|
|
82
82
|
## Verb cheatsheet
|
|
83
83
|
|
|
84
84
|
```
|
|
85
|
-
prjct spec "<title>" # draft
|
|
85
|
+
prjct spec "<title>" # draft — NO `draft` subverb, pass title directly
|
|
86
86
|
prjct spec list [--status <s>]
|
|
87
87
|
prjct spec show <id>
|
|
88
|
-
prjct spec update <id> --json '{...}' #
|
|
88
|
+
prjct spec update <id> --json '{...}' # PATCH content (shallow merge)
|
|
89
89
|
prjct spec audit <id> # emit subagent dispatch
|
|
90
90
|
prjct spec record-review <id> --reviewer <name> --verdict <pass|fail> --notes "..."
|
|
91
91
|
prjct spec link-task <id> --task-id <task>
|
|
92
92
|
prjct spec ship <id> [--pr <n>]
|
|
93
93
|
prjct spec set-status <id> --status archived
|
|
94
|
+
prjct spec inventory [--md|--json] # coverage map per module
|
|
94
95
|
```
|
|
96
|
+
|
|
97
|
+
> **No `draft` subverb.** `prjct spec "<title>"` already creates a draft. The CLI tolerates `prjct spec draft|new|create "<title>"` as friendly aliases (the leading word is stripped) so `prjct spec draft "rate limiting"` and `prjct spec "rate limiting"` produce the same spec — but the canonical form has no leading verb.
|