prjct-cli 2.61.0 → 2.63.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 +17 -0
- package/README.md +19 -1
- package/bin/prjct.cjs +1 -0
- package/dist/bin/prjct-core.mjs +534 -464
- package/dist/daemon/entry.mjs +394 -324
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.63.1] - 2026-06-23
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- harden prjct eval workflow inputs
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [2.63.0] - 2026-06-23
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- eval result publishing
|
|
16
|
+
|
|
17
|
+
## [2.62.0] - 2026-06-23
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Point CLI metadata to cli site
|
|
21
|
+
|
|
5
22
|
## [2.61.0] - 2026-06-23
|
|
6
23
|
|
|
7
24
|
### Added
|
package/README.md
CHANGED
|
@@ -178,6 +178,24 @@ command is idempotent and reports what changed.
|
|
|
178
178
|
prjct should justify itself with project evidence, not vague claims. These
|
|
179
179
|
read-only commands show whether the project is actually compounding:
|
|
180
180
|
|
|
181
|
+
### Version evals
|
|
182
|
+
|
|
183
|
+
Use `prjct eval` to measure product readiness between versions and publish the
|
|
184
|
+
evidence to GitHub:
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
prjct eval run --candidate 2.62.0
|
|
188
|
+
prjct eval compare --baseline 2.61.0 --candidate 2.62.0 --md
|
|
189
|
+
prjct eval run --candidate "$GITHUB_SHA" --publish --target github
|
|
190
|
+
prjct eval compare --baseline "$BASELINE" --candidate "$CANDIDATE" --publish --target github
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
Local artifacts live under `$PRJCT_CLI_HOME/evals/<repo>/`. GitHub publishing
|
|
194
|
+
writes JSON + Markdown to an `eval-results` branch, including
|
|
195
|
+
`summary/latest.json` and `summary/latest-comparison.json`. See
|
|
196
|
+
[EVALS.md](./EVALS.md) and `.github/workflows/prjct-evals.yml` for the
|
|
197
|
+
CI workflow.
|
|
198
|
+
|
|
181
199
|
| Command | What it proves |
|
|
182
200
|
|---|---|
|
|
183
201
|
| `prjct value --md` | Durable memory, preventive guardrails, shipped work, sync metrics, and detected agent coverage. |
|
|
@@ -609,7 +627,7 @@ tradeoffs: [docs/storage-and-paths.md](./docs/storage-and-paths.md).
|
|
|
609
627
|
|
|
610
628
|
## Links
|
|
611
629
|
|
|
612
|
-
- [Website](https://prjct.app)
|
|
630
|
+
- [Website](https://cli.prjct.app)
|
|
613
631
|
- [GitHub](https://github.com/jlopezlira/prjct-cli)
|
|
614
632
|
- [npm](https://www.npmjs.com/package/prjct-cli)
|
|
615
633
|
- [Changelog](CHANGELOG.md)
|