prjct-cli 3.78.1 → 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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.79.0] - 2026-08-03
6
+
7
+ ### Added
8
+ - optimize sync performance and remove dead code
9
+
5
10
  ### Fixed
6
11
 
7
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.
@@ -12,14 +17,12 @@
12
17
 
13
18
  - sync migrates then deletes all client .prjct junk (config-only) (#599)
14
19
 
15
-
16
20
  ## [3.78.0] - 2026-07-29
17
21
 
18
22
  ### Features
19
23
 
20
24
  - steal g-ai v2.2 authority teeth — stamp, candidate hash, kill switch (#598)
21
25
 
22
-
23
26
  ## [3.77.0] - 2026-07-28
24
27
 
25
28
  ### Fixed
@@ -38,28 +41,24 @@
38
41
 
39
42
  - bind print-mode runs to work cycles (#595)
40
43
 
41
-
42
44
  ## [3.75.0] - 2026-07-21
43
45
 
44
46
  ### Features
45
47
 
46
48
  - prjct body tools + guard prefix on edit/write (#594)
47
49
 
48
-
49
50
  ## [3.74.0] - 2026-07-21
50
51
 
51
52
  ### Features
52
53
 
53
54
  - owned print-mode agent loop with root-scoped tools (#593)
54
55
 
55
-
56
56
  ## [3.73.0] - 2026-07-21
57
57
 
58
58
  ### Features
59
59
 
60
60
  - multi-brain profiles for owned agent loop foundation (#592)
61
61
 
62
-
63
62
  ## [3.72.0] - 2026-07-19
64
63
 
65
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