prjct-cli 2.34.0 → 2.36.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 +20 -0
- package/dist/bin/prjct-core.mjs +415 -414
- package/dist/daemon/entry.mjs +251 -250
- package/dist/mcp/server.mjs +28 -28
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/codex/SKILL.md +8 -15
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.36.0] - 2026-06-01
|
|
6
|
+
|
|
7
|
+
Context-efficiency pivot (push → pull): stop filling the agent's context window, fix Codex, expose anticipation on demand.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Codex skill no longer rejected.** The Codex `SKILL.md` exceeded Codex's hard 1024-byte limit (1085 B), so prjct silently failed to load in Codex entirely. Rewrote it as a minimal router (~870 B) that points at the CLI + MCP instead of inlining instructions.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- `prjct guard <file>` — anticipation primitive: the preventive memory (gotchas / anti-patterns / recurring-bugs) recorded against a file, pulled on demand before editing. Quiet by design ("clear to edit" when nothing matches).
|
|
14
|
+
- `prjct_guard` MCP tool — the same anticipation, pull-based, for Claude and Codex (Codex has no hook system; both reach it here).
|
|
15
|
+
- Installer now prunes retired prjct-managed hooks from existing settings.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- **Pillar 3 anticipation is now pull, not push.** Replaced the `pre-edit` PreToolUse hook (which could inject into every edit) with the on-demand `prjct guard` CLI + `prjct_guard` MCP tool — the agent asks when it matters instead of prjct pushing into context.
|
|
19
|
+
|
|
20
|
+
## [2.35.0] - 2026-05-31
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- feat: pillar 3 anticipation — PreToolUse(Edit|Write) hook surfaces a file's gotchas/anti-patterns/recurring-bugs before you edit it, so traps are prevented not repeated
|
|
24
|
+
|
|
5
25
|
## [2.34.0] - 2026-05-31
|
|
6
26
|
|
|
7
27
|
### Added
|