@aihq/harness 0.6.0 → 1.0.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/README.md +11 -0
- package/dist/{chunk-PHJ6DL2Y.js → chunk-HPWF2YPV.js} +132 -131
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +35 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -368,6 +368,17 @@ are enforced in [vitest.config.ts](vitest.config.ts) — set just below the achi
|
|
|
368
368
|
levels so coverage only ratchets up; CI and releases fail on regression. See
|
|
369
369
|
[CONTRIBUTING.md](CONTRIBUTING.md) for the contributor workflow.
|
|
370
370
|
|
|
371
|
+
### Stability
|
|
372
|
+
|
|
373
|
+
The CLI surface and machine-readable outputs are contract-tested in
|
|
374
|
+
[tests/contract/](tests/contract/): every command and option is snapshotted against a
|
|
375
|
+
committed fixture ([command-surface.json](tests/contract/command-surface.json)), the
|
|
376
|
+
`--json` envelope is schema-pinned, and exit-code semantics are pinned. Any drift fails
|
|
377
|
+
CI and forces a reviewed decision — additive changes regenerate the fixture in the same
|
|
378
|
+
PR (label it `contract:additive`); removals or renames of anything pinned are breaking
|
|
379
|
+
and ship in majors only, per the stability policy in [STABILITY.md](STABILITY.md) —
|
|
380
|
+
renames ship with a deprecated alias of the old name until the removing major.
|
|
381
|
+
|
|
371
382
|
## License
|
|
372
383
|
|
|
373
384
|
[Apache-2.0](LICENSE).
|