prjct-cli 2.36.0 → 2.37.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 +7 -0
- package/dist/bin/prjct-core.mjs +290 -289
- package/dist/daemon/entry.mjs +230 -229
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/skills/prjct/SKILL.md +34 -365
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.37.0] - 2026-06-01
|
|
6
|
+
|
|
7
|
+
Context-efficiency, part 2: cut the Claude skill's always-on footprint by 73%.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **Claude skill split into a lean core + pull-on-demand `workflows.md`.** The SKILL.md body stays in the model's context for the whole session ("every line is a recurring token cost"). It was ~9.3k tokens of always-on context. Now the core is ~2.5k tokens (use-when, project context, TRIAGE gate, a compact intent→verb→tier table, routing tiers, gotchas) and the heavy methodology (quality workflows, subagent dispatch + model policy, decision-brief, prefs, builder ethos) lives in `workflows.md`, written next to SKILL.md and read only when the agent actually runs one of those workflows. Same pull-not-push rule as the rest of the runtime; behavior preserved.
|
|
11
|
+
|
|
5
12
|
## [2.36.0] - 2026-06-01
|
|
6
13
|
|
|
7
14
|
Context-efficiency pivot (push → pull): stop filling the agent's context window, fix Codex, expose anticipation on demand.
|