prjct-cli 3.49.1 → 3.50.1
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 +33 -2
- package/dist/bin/prjct-core.mjs +800 -772
- package/dist/bin/prjct-hooks.mjs +311 -300
- package/dist/bin/prjct.mjs +1 -1
- package/dist/daemon/entry.mjs +709 -681
- package/dist/mcp/server.mjs +380 -337
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,39 @@
|
|
|
4
4
|
|
|
5
5
|
### Bug Fixes
|
|
6
6
|
|
|
7
|
+
- **Routing: `prjct harness score` no longer GTD-captures to inbox** — `harness` was implemented in bin-commands but missing from `BIN_ONLY_COMMANDS`, so multi-word GTD rewrote it to `capture` whenever the daemon path ran. Registered as bin-only + completeness test so handlers cannot outlive the allowlist again.
|
|
8
|
+
|
|
9
|
+
### Performance
|
|
10
|
+
|
|
11
|
+
- **Lazy hook runners** — Stop/embeddings/transcript graph no longer loads for prompt/pre-edit cold spawns (`hooks/registry.ts` dynamic import per event).
|
|
12
|
+
- **UserPromptSubmit hot path** — `bumpTurnCount` returns post-bump task (one write, no second read); owner from task; parallel queue/ship/inbox/handoff/git; parallel alignment imports.
|
|
13
|
+
- **Usefulness rerank** — `decayedScores` accepts candidate IDs so FTS rerank no longer full-scans `memory_usefulness`.
|
|
14
|
+
- **Typo suggestions** — `findClosestCommand` uses full COMMANDS manifest (bin-only verbs included) + length early-exit.
|
|
15
|
+
|
|
16
|
+
## [3.50.1] - 2026-07-12
|
|
17
|
+
|
|
18
|
+
### Performance
|
|
19
|
+
|
|
20
|
+
- fix harness GTD capture + hot-path efficiency (#553)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [3.50.0] - 2026-07-12
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Claude ecosystem adopt — trust, tiers, session, packs
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
- **Claude ecosystem adopt (patterns, not products)** — model-agnostic harness organs:
|
|
31
|
+
- **Trust boundary** (`core/services/trust-boundary.ts`): single gate for secrets, prompt-injection, package install, imported workflow rules; wired into pre-secrets/pre-package/remember/capture/MCP/projectMemory SoT + workflow-engine
|
|
32
|
+
- **Alignment card** mid-cycle MUST inject (loop / context-pressure / quality / stuck) on UserPromptSubmit
|
|
33
|
+
- **Context cache tiers L0–L3** contract + live L0 budget; `prjct context tiers --md`, harness criterion `context-tiers`
|
|
34
|
+
- **Safe artifacts** audit surface (judgment, ships, handoffs, checkpoints, session continuity); `prjct context artifacts --md`
|
|
35
|
+
- **Managed session continuity**: land stamps `session:continuity`; prime restores resume card; SessionStart cold cue; MCP `prjct_session_resume`
|
|
36
|
+
- **Pack marketplace-lite**: semver + integrity hash, `seed catalog` / `seed verify`, activation receipts in `packs:installs`
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
7
40
|
- **Daemon performance + stability**: spawn single-flight lock kills concurrent bind races (`Failed to listen` / `chmod ENOENT`); hook vs command request lanes (no HOL-block of Claude hooks); graceful drain on shutdown; absorb uncaught errors with capped respawn; hook client timeout 5s (shim parity); version drift only when global is strictly newer semver; self-respawn only on code mtime reload; richer `daemon status` (version, RSS, active, absorbed errors)
|
|
8
41
|
|
|
9
42
|
## [3.49.1] - 2026-07-12
|
|
@@ -12,7 +45,6 @@
|
|
|
12
45
|
|
|
13
46
|
- performance + stability hardening (#550)
|
|
14
47
|
|
|
15
|
-
|
|
16
48
|
## [3.49.0] - 2026-07-12
|
|
17
49
|
|
|
18
50
|
### Features
|
|
@@ -23,7 +55,6 @@
|
|
|
23
55
|
|
|
24
56
|
- project pattern supremacy + mechanical review FP refute (v3.48.0) (#549)
|
|
25
57
|
|
|
26
|
-
|
|
27
58
|
## [3.48.0] - 2026-07-11
|
|
28
59
|
|
|
29
60
|
### Features
|