prjct-cli 2.44.2 → 2.45.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 +7 -0
- package/dist/bin/prjct-core.mjs +376 -348
- package/dist/daemon/entry.mjs +296 -268
- package/dist/mcp/server.mjs +242 -242
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/skills/prjct/SKILL.md +1 -0
package/package.json
CHANGED
|
@@ -87,6 +87,7 @@ On every turn ask: "what is the user trying to accomplish?" and match to a verb
|
|
|
87
87
|
| "is the codebase healthy?" | `prjct health --md` | 1 |
|
|
88
88
|
| "what did we accomplish?" | `prjct retro 7d --md` | 1 |
|
|
89
89
|
| pause / resume the working context | `prjct context-save` / `prjct context-restore --md` | 1 |
|
|
90
|
+
| reduce over-engineering — "make it leaner" / YAGNI review / cut complexity | `prjct lean review` (or `audit` / `debt`) | 1 |
|
|
90
91
|
|
|
91
92
|
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`).
|
|
92
93
|
|