@hiveai/cli 0.10.8 → 0.10.9
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 +2 -0
- package/dist/index.js +483 -33
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -155,6 +155,7 @@ haive enforce status # show whether the repo is protected
|
|
|
155
155
|
haive enforce check --stage local # local policy gate
|
|
156
156
|
haive enforce check --stage pre-push # used by Git hooks
|
|
157
157
|
haive enforce ci # used by required CI checks
|
|
158
|
+
haive enforce finish # final agent-exit gate: commit/push + version/tag protocol
|
|
158
159
|
haive enforce cleanup # remove generated .ai runtime/cache artifacts
|
|
159
160
|
```
|
|
160
161
|
|
|
@@ -166,6 +167,7 @@ Strict mode checks for:
|
|
|
166
167
|
- decision coverage: changed files must have their relevant anchored policies surfaced in the latest briefing
|
|
167
168
|
- known anti-patterns from validated gotchas/decisions
|
|
168
169
|
- visible generated artifacts such as `.ai/.runtime`, `.ai/.cache`, or Python bytecode
|
|
170
|
+
- completed work is committed/pushed; shippable package changes have lockstep version bump + git tag
|
|
169
171
|
|
|
170
172
|
`haive enforce check` prints an enforcement score and fails strict gates when the score drops below the configured threshold.
|
|
171
173
|
|