prjct-cli 3.56.1 → 3.58.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 +17 -9
- package/assets/statusline/components/context.sh +11 -4
- package/dist/bin/prjct-core.mjs +766 -752
- package/dist/bin/prjct-hooks.mjs +293 -286
- package/dist/daemon/entry.mjs +527 -513
- package/dist/mcp/server.mjs +230 -225
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/skills/prjct/SKILL.md +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.58.0] - 2026-07-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Fix ship_* retention archive + context-pressure compact path
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Retention/dream: `ship_*` candidates archive via `shipped_features` delete (no more wouldArchive>0 while archived=0)
|
|
12
|
+
- Context pressure: warn (≥60%) is hard compact-path (land→prime); Claude statusline shows `→land` at ≥60% host context
|
|
13
|
+
|
|
14
|
+
## [3.57.0] - 2026-07-14
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- Memory auto-dream + L0 compact index (Claude Code steal Sprint A)
|
|
18
|
+
- `prjct dream` — memory auto-dream (KAIROS-style): gates (24h + 5 lands), 4-phase consolidate + L0 index rebuild; also on `prjct land` when gates open
|
|
19
|
+
- L0 compact memory index (`prjct memory index`) — ≤4k TOC injected on SessionStart; stored in kv `memory:l0-index`
|
|
20
|
+
- `prjct memory close|forget|dream|index` aliases; skill continue-vs-spawn + hygiene verbs
|
|
21
|
+
|
|
5
22
|
## [3.56.1] - 2026-07-14
|
|
6
23
|
|
|
7
24
|
### Bug Fixes
|
|
@@ -14,19 +31,11 @@
|
|
|
14
31
|
- point all URLs at github.com/prjct-app/cli (#560)
|
|
15
32
|
- point product surface at prjct-app/prjct-cli (#559)
|
|
16
33
|
|
|
17
|
-
|
|
18
34
|
## [3.56.0] - 2026-07-13
|
|
19
35
|
|
|
20
36
|
### Added
|
|
21
37
|
- skill generator l0 test assertions
|
|
22
38
|
|
|
23
|
-
<<<<<<< HEAD
|
|
24
|
-
|
|
25
|
-
## [3.39.0] - 2026-07-09
|
|
26
|
-
|
|
27
|
-
### Added
|
|
28
|
-
- pre-secrets CI parity after #534 — wire dispatcher + cursor multi-matcher
|
|
29
|
-
=======
|
|
30
39
|
## [3.55.0] - 2026-07-13
|
|
31
40
|
|
|
32
41
|
### Added
|
|
@@ -231,7 +240,6 @@
|
|
|
231
240
|
|
|
232
241
|
### Added
|
|
233
242
|
- quality orchestrator P0: auto ledger + inject; ship suggest with text confirm
|
|
234
|
-
>>>>>>> origin/main
|
|
235
243
|
|
|
236
244
|
## [3.38.0] - 2026-07-09
|
|
237
245
|
|
|
@@ -5,21 +5,28 @@
|
|
|
5
5
|
component_context() {
|
|
6
6
|
component_enabled "context" || return
|
|
7
7
|
|
|
8
|
-
# CTX_PERCENT is set by parse_stdin in cache.sh
|
|
8
|
+
# CTX_PERCENT is set by parse_stdin in cache.sh (host context-window fill %)
|
|
9
9
|
local min_percent="${CONFIG_CONTEXT_MIN_PERCENT:-30}"
|
|
10
10
|
|
|
11
11
|
# Only show when usage is significant
|
|
12
|
+
[[ -z "$CTX_PERCENT" || ! "$CTX_PERCENT" =~ ^[0-9]+$ ]] && return
|
|
12
13
|
[[ "$CTX_PERCENT" -lt "$min_percent" ]] && return
|
|
13
14
|
|
|
14
|
-
# Determine color based on usage
|
|
15
|
+
# Determine color based on usage — ≥60% is prjct compact-path territory
|
|
16
|
+
# (align with context-pressure WARN_RATIO 0.6 / Claude utilization guard).
|
|
15
17
|
local color
|
|
16
|
-
|
|
18
|
+
local suffix=""
|
|
19
|
+
if [[ "$CTX_PERCENT" -ge 70 ]]; then
|
|
17
20
|
color="$ERROR"
|
|
21
|
+
suffix=" →land"
|
|
22
|
+
elif [[ "$CTX_PERCENT" -ge 60 ]]; then
|
|
23
|
+
color="$ERROR"
|
|
24
|
+
suffix=" →land"
|
|
18
25
|
elif [[ "$CTX_PERCENT" -ge 50 ]]; then
|
|
19
26
|
color="$ACCENT"
|
|
20
27
|
else
|
|
21
28
|
color="$MUTED"
|
|
22
29
|
fi
|
|
23
30
|
|
|
24
|
-
echo -e "${color}${CTX_PERCENT}%${NC}"
|
|
31
|
+
echo -e "${color}${CTX_PERCENT}%${suffix}${NC}"
|
|
25
32
|
}
|