prjct-cli 3.78.1 → 3.80.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 +10 -6
- package/bin/prjct +2 -1
- package/dist/bin/prjct-core.mjs +665 -658
- package/dist/bin/prjct-hooks.mjs +325 -319
- package/dist/daemon/entry.mjs +588 -581
- package/dist/mcp/server.mjs +289 -283
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.80.0] - 2026-08-03
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- improve session performance, task efficiency, and secret scanning security
|
|
9
|
+
|
|
10
|
+
## [3.79.0] - 2026-08-03
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- optimize sync performance and remove dead code
|
|
14
|
+
|
|
5
15
|
### Fixed
|
|
6
16
|
|
|
7
17
|
- **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.
|
|
@@ -12,14 +22,12 @@
|
|
|
12
22
|
|
|
13
23
|
- sync migrates then deletes all client .prjct junk (config-only) (#599)
|
|
14
24
|
|
|
15
|
-
|
|
16
25
|
## [3.78.0] - 2026-07-29
|
|
17
26
|
|
|
18
27
|
### Features
|
|
19
28
|
|
|
20
29
|
- steal g-ai v2.2 authority teeth — stamp, candidate hash, kill switch (#598)
|
|
21
30
|
|
|
22
|
-
|
|
23
31
|
## [3.77.0] - 2026-07-28
|
|
24
32
|
|
|
25
33
|
### Fixed
|
|
@@ -38,28 +46,24 @@
|
|
|
38
46
|
|
|
39
47
|
- bind print-mode runs to work cycles (#595)
|
|
40
48
|
|
|
41
|
-
|
|
42
49
|
## [3.75.0] - 2026-07-21
|
|
43
50
|
|
|
44
51
|
### Features
|
|
45
52
|
|
|
46
53
|
- prjct body tools + guard prefix on edit/write (#594)
|
|
47
54
|
|
|
48
|
-
|
|
49
55
|
## [3.74.0] - 2026-07-21
|
|
50
56
|
|
|
51
57
|
### Features
|
|
52
58
|
|
|
53
59
|
- owned print-mode agent loop with root-scoped tools (#593)
|
|
54
60
|
|
|
55
|
-
|
|
56
61
|
## [3.73.0] - 2026-07-21
|
|
57
62
|
|
|
58
63
|
### Features
|
|
59
64
|
|
|
60
65
|
- multi-brain profiles for owned agent loop foundation (#592)
|
|
61
66
|
|
|
62
|
-
|
|
63
67
|
## [3.72.0] - 2026-07-19
|
|
64
68
|
|
|
65
69
|
### 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
|