prjct-cli 2.23.6 → 2.23.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prjct-cli",
3
- "version": "2.23.6",
3
+ "version": "2.23.8",
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": {
@@ -21,5 +21,9 @@ If you need durable state that outlives the session, persist via `prjct` CLI ver
21
21
  ### When this role does NOT apply
22
22
 
23
23
  - Pure exploratory / read-only questions about the repo → answer directly.
24
- - Edits to `.prjct/`, docs, configuration, or this file → you may edit directly.
24
+ - Edits to docs, configuration files (e.g. `.prjct/prjct.config.json`), or this file → you may edit directly.
25
+
26
+ ### Hard persistence rule
27
+
28
+ Never write audit, checkpoint, review, deploy, or report markdown into any new file or subdirectory under the prjct state folder, and no scratch `.md` anywhere else in the worktree. The ONLY hand-editable file in that folder is `.prjct/prjct.config.json`. Everything else — checkpoints, audits, decisions, learnings, deploy notes — lives in SQLite + the regenerated vault, written through `prjct` CLI verbs (`prjct crew checkpoints set`, `prjct remember`, `prjct capture`, `prjct spec record-review`). If a subagent reports findings, persist them via `prjct remember` and cite the returned mem id; never tell a subagent to write to disk.
25
29
  <!-- prjct:crew:end - DO NOT REMOVE THIS MARKER -->
@@ -91,4 +91,8 @@ If the reviewer replies `VERDICT: CHANGES_REQUESTED`, do not call `record-run` f
91
91
  ## When this role does NOT apply
92
92
 
93
93
  - Pure exploration / read-only questions about the repo → answer directly, no subagents.
94
- - Edits to `.prjct/`, docs, configuration, or this file itself → you may edit directly.
94
+ - Edits to docs, configuration files (e.g. `.prjct/prjct.config.json`), or this file itself → you may edit directly.
95
+
96
+ ## Hard persistence rule
97
+
98
+ Never write audit, checklist, review, deploy, or report markdown into any new file or subdirectory under the prjct state folder. The ONLY hand-editable file in that folder is `.prjct/prjct.config.json`. Durable state — checkpoints, audits, reviews, decisions, learnings — goes through `prjct` CLI verbs (`prjct crew checkpoints set`, `prjct remember`, `prjct capture`, `prjct spec record-review`). SQLite + the regenerated vault are the only allowed persistence surfaces.