prjct-cli 3.48.0 → 3.49.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 +26 -12
- package/dist/bin/prjct-core.mjs +678 -657
- package/dist/bin/prjct-hooks.mjs +289 -280
- package/dist/daemon/entry.mjs +602 -473
- package/dist/mcp/server.mjs +365 -359
- package/dist/templates.json +1 -1
- package/package.json +2 -2
- package/templates/skills/prjct/SKILL.md +9 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,24 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Bug Fixes
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- **Repo hygiene (complete)**: knip-clean; no repo-local AGENTS/CLAUDE/Copilot/MCP harness; dead template docs removed; contributor architecture in `CONTRIBUTING.md` + `docs/`.
|
|
9
|
-
- **Source renames (product-only naming)**: `host-agents-md` / `host-claude-md` / `runtime-claude` / `agent-info` / `agents-md-discovery`; crew templates under `templates/crew/roles/`; standalone installer `scripts/install-standalone.sh`. Destination host paths (e.g. user-project `CLAUDE.md`, `.claude/agents/`) unchanged — those are host APIs.
|
|
10
|
-
- **Licensing**: MIT © 2024–2026, `NOTICE`, package author/SPDX, CONTRIBUTING contribution clause.
|
|
7
|
+
- **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)
|
|
11
8
|
|
|
12
|
-
## [3.
|
|
9
|
+
## [3.49.1] - 2026-07-12
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- performance + stability hardening (#550)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [3.49.0] - 2026-07-12
|
|
13
17
|
|
|
14
18
|
### Features
|
|
15
19
|
|
|
16
|
-
-
|
|
17
|
-
- freeze review scope from git (gentle-ai v1.49)
|
|
20
|
+
- Dynasty program — unbridgeable moat (v3.48.0) (#548)
|
|
18
21
|
|
|
19
22
|
### Bug Fixes
|
|
20
23
|
|
|
21
|
-
-
|
|
24
|
+
- project pattern supremacy + mechanical review FP refute (v3.48.0) (#549)
|
|
25
|
+
|
|
22
26
|
|
|
27
|
+
## [3.48.0] - 2026-07-11
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
- **Dynasty program** (#548): public harness Δ, content-bound stamp, SoT hard-bind H2+, trap-surface SLO, impact-ranked next, geometry-at-intent, skill diet ≤900, cycle budget card, land Rho dry-run, one-breath install, doctor --fix
|
|
32
|
+
- **Project pattern supremacy** (#549): match house style; upgrade only real anti-patterns; work alignment brief; mechanical prefer-const refute when reassignment present
|
|
33
|
+
- freeze review scope from git (gentle-ai v1.49) (#547)
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- **Repo hygiene (complete)**: knip-clean; no repo-local AGENTS/CLAUDE/Copilot/MCP harness; dead template docs removed; contributor architecture in `CONTRIBUTING.md` + `docs/`.
|
|
38
|
+
- **Source renames (product-only naming)**: `host-agents-md` / `host-claude-md` / `runtime-claude` / `agent-info` / `agents-md-discovery`; crew templates under `templates/crew/roles/`; standalone installer `scripts/install-standalone.sh`. Destination host paths (e.g. user-project `CLAUDE.md`, `.claude/agents/`) unchanged — those are host APIs.
|
|
39
|
+
- **Licensing**: MIT © 2024–2026, `NOTICE`, package author/SPDX, CONTRIBUTING contribution clause.
|
|
23
40
|
|
|
24
41
|
## [3.47.1] - 2026-07-11
|
|
25
42
|
|
|
@@ -35,7 +52,6 @@
|
|
|
35
52
|
- strip non-product agent harness from repo tree
|
|
36
53
|
- repo hygiene — dead code, root cruft, solid MIT licensing
|
|
37
54
|
|
|
38
|
-
|
|
39
55
|
## [3.47.0] - 2026-07-10
|
|
40
56
|
|
|
41
57
|
### Added
|
|
@@ -58,7 +74,6 @@
|
|
|
58
74
|
|
|
59
75
|
- align tip→user tests + ship as v3.45.0
|
|
60
76
|
|
|
61
|
-
|
|
62
77
|
## [3.45.0] - 2026-07-10
|
|
63
78
|
|
|
64
79
|
### Added
|
|
@@ -79,7 +94,6 @@
|
|
|
79
94
|
- complete retention plan — apply, inbox triage, done-trigger, selective embed
|
|
80
95
|
- retention score service + sync dry-run report (PR1 of value-based cleanup)
|
|
81
96
|
|
|
82
|
-
|
|
83
97
|
## [3.44.0] - 2026-07-10
|
|
84
98
|
|
|
85
99
|
### Added
|