@gonrocca/zero-pi 0.1.47 → 0.1.48
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/README.md +6 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -92,6 +92,12 @@ zero-pi keeps its state in `~/.pi/zero.json` (per-phase models + autotune mode)
|
|
|
92
92
|
and `~/.pi/zero-runs.jsonl` (the run-metrics log); per-project artifacts live
|
|
93
93
|
under `.sdd/`. Set `ZERO_RESUME=off` to disable the conversation-resume note.
|
|
94
94
|
|
|
95
|
+
## Continuous integration
|
|
96
|
+
|
|
97
|
+
The `.github/workflows/zero-pi-ci.yml` workflow runs on every push to `main` and
|
|
98
|
+
on every pull request that touches `packages/zero-pi/**`. It enforces `npm test`
|
|
99
|
+
and `npm run pack-check` for the package.
|
|
100
|
+
|
|
95
101
|
## 🔗 Relationship to `zero`
|
|
96
102
|
|
|
97
103
|
zero-pi is the pi layer of the **zero** integrator. The `zero` CLI installs it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gonrocca/zero-pi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.48",
|
|
4
4
|
"description": "zero-pi — an installable layer for pi (pi.dev): the zero spec-driven development workflow (explore → plan → build → veredicto) with per-phase model autotune and token-efficient batched builds. Adds capability to pi without modifying pi.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -60,7 +60,8 @@
|
|
|
60
60
|
],
|
|
61
61
|
"scripts": {
|
|
62
62
|
"test": "node --test --experimental-strip-types",
|
|
63
|
-
"prepublishOnly": "node --test --experimental-strip-types"
|
|
63
|
+
"prepublishOnly": "node --test --experimental-strip-types",
|
|
64
|
+
"pack-check": "npm pack --dry-run"
|
|
64
65
|
},
|
|
65
66
|
"engines": {
|
|
66
67
|
"node": ">=20.6.0"
|