prjct-cli 3.78.0 → 3.79.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 +12 -10
- package/bin/prjct +2 -1
- package/dist/bin/prjct-core.mjs +663 -657
- package/dist/bin/prjct-hooks.mjs +317 -312
- package/dist/daemon/entry.mjs +582 -576
- package/dist/mcp/server.mjs +297 -292
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.79.0] - 2026-08-03
|
|
6
|
+
|
|
5
7
|
### Added
|
|
8
|
+
- optimize sync performance and remove dead code
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Client `.prjct/` is config-only on every sync.** `CHECKPOINTS.md`, `team.json`, ghost dirs, and any other leftover are **migrated to project SQLite first** (checkpoints → `crew:checkpoints`, team → `team:enrollment`, text → remember ingest) then **deleted** from the customer worktree. The only allowed file is `prjct.config.json` — no more "left in place" legacy files.
|
|
13
|
+
|
|
14
|
+
## [3.78.1] - 2026-07-29
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
6
17
|
|
|
7
|
-
-
|
|
8
|
-
- **A1 Content-bound no-stamp fail-closed** — under code-strict, approved judgment without a content-bound stamp hard-blocks `prjct ship` (consent: `--no-judgment-gate` only). `prjct judgment approve` fails closed if stamp cannot be written.
|
|
9
|
-
- **A2 Judgment ledger RMW** — ledger writes go through `updateDoc` (no silent LWW clobber on concurrent approve/challenge).
|
|
10
|
-
- **B1 Delivery kill switch** — `delivery.killSwitch: "on"` in `.prjct/prjct.config.json` removes the ship mutation path before task complete / workflow. Outranks `--no-judgment-gate` / `--no-spec-gate` / `--force-pressure`. Lift only by setting `off`.
|
|
11
|
-
- **C1 Frozen audit candidate hash** — `prjct spec audit` stamps `audit_candidate_hash`; each lens review binds `candidateHash`; body edits clear reviews + demote `reviewed`→`draft`; promote gate refuses drifted candidates. Legacy specs without a hash keep prior lens-only behavior.
|
|
18
|
+
- sync migrates then deletes all client .prjct junk (config-only) (#599)
|
|
12
19
|
|
|
13
20
|
## [3.78.0] - 2026-07-29
|
|
14
21
|
|
|
@@ -16,7 +23,6 @@
|
|
|
16
23
|
|
|
17
24
|
- steal g-ai v2.2 authority teeth — stamp, candidate hash, kill switch (#598)
|
|
18
25
|
|
|
19
|
-
|
|
20
26
|
## [3.77.0] - 2026-07-28
|
|
21
27
|
|
|
22
28
|
### Fixed
|
|
@@ -35,28 +41,24 @@
|
|
|
35
41
|
|
|
36
42
|
- bind print-mode runs to work cycles (#595)
|
|
37
43
|
|
|
38
|
-
|
|
39
44
|
## [3.75.0] - 2026-07-21
|
|
40
45
|
|
|
41
46
|
### Features
|
|
42
47
|
|
|
43
48
|
- prjct body tools + guard prefix on edit/write (#594)
|
|
44
49
|
|
|
45
|
-
|
|
46
50
|
## [3.74.0] - 2026-07-21
|
|
47
51
|
|
|
48
52
|
### Features
|
|
49
53
|
|
|
50
54
|
- owned print-mode agent loop with root-scoped tools (#593)
|
|
51
55
|
|
|
52
|
-
|
|
53
56
|
## [3.73.0] - 2026-07-21
|
|
54
57
|
|
|
55
58
|
### Features
|
|
56
59
|
|
|
57
60
|
- multi-brain profiles for owned agent loop foundation (#592)
|
|
58
61
|
|
|
59
|
-
|
|
60
62
|
## [3.72.0] - 2026-07-19
|
|
61
63
|
|
|
62
64
|
### Added
|
package/bin/prjct
CHANGED
|
@@ -80,8 +80,8 @@ ensure_setup() {
|
|
|
80
80
|
CLAUDE_STATUSLINE="$HOME/.claude/prjct-statusline.sh"
|
|
81
81
|
|
|
82
82
|
if [ -f "$STATUSLINE_SRC" ]; then
|
|
83
|
-
mkdir -p "$STATUSLINE_DIR" 2>/dev/null
|
|
84
83
|
if [ ! -f "$STATUSLINE_DEST" ] || [ "$STATUSLINE_SRC" -nt "$STATUSLINE_DEST" ]; then
|
|
84
|
+
mkdir -p "$STATUSLINE_DIR" 2>/dev/null
|
|
85
85
|
cp "$STATUSLINE_SRC" "$STATUSLINE_DEST" 2>/dev/null
|
|
86
86
|
chmod +x "$STATUSLINE_DEST" 2>/dev/null
|
|
87
87
|
|
|
@@ -101,6 +101,7 @@ ensure_setup() {
|
|
|
101
101
|
done
|
|
102
102
|
|
|
103
103
|
# Symlink to ~/.claude
|
|
104
|
+
mkdir -p "$(dirname "$CLAUDE_STATUSLINE")" 2>/dev/null
|
|
104
105
|
rm -f "$CLAUDE_STATUSLINE" 2>/dev/null
|
|
105
106
|
ln -s "$STATUSLINE_DEST" "$CLAUDE_STATUSLINE" 2>/dev/null || cp "$STATUSLINE_DEST" "$CLAUDE_STATUSLINE" 2>/dev/null
|
|
106
107
|
chmod +x "$CLAUDE_STATUSLINE" 2>/dev/null
|