prjct-cli 2.51.0 → 2.52.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 +5 -0
- package/dist/bin/prjct-core.mjs +362 -360
- package/dist/daemon/entry.mjs +275 -273
- package/dist/mcp/server.mjs +204 -202
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/skills/prjct/SKILL.md +1 -0
package/package.json
CHANGED
|
@@ -102,6 +102,7 @@ On every turn ask: "what is the user trying to accomplish?" and match to a verb
|
|
|
102
102
|
| pause / resume the working context | `prjct context-save` / `prjct context-restore --md` | 1 |
|
|
103
103
|
| reduce over-engineering — "make it leaner" / YAGNI review / cut complexity | `prjct lean review` (or `audit` / `debt`) | 1 |
|
|
104
104
|
| enforce test-first / "use TDD" / run the tests before shipping | `prjct tdd` (off\|assist\|strict; `check` runs the test command) | 1 |
|
|
105
|
+
| enforce spec-first / "use SDD" / "require a spec for every task" | `prjct sdd` (off\|advisory\|strict) | 1 |
|
|
105
106
|
| sync this project across machines / "share with my other machine" / "is cloud on?" | `prjct cloud link` (then `status` / `sync` / `pull` / `pause`) | 2 |
|
|
106
107
|
|
|
107
108
|
Disambiguators: the "why" separates a `decision` from an `inbox` dump — if you can't state it in one line, capture as inbox. A bare "fix X" is `task`, never `spec`. `audit-spec` requires an existing spec. For `ship`, if the active task has a `linked_spec_id`, ship surfaces the spec's acceptance_criteria as a PR checklist — STOP on any unmet criterion (override: `prjct ship --no-spec-gate`).
|