@hiveai/cli 0.9.14 → 0.9.16
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 +16 -1
- package/dist/index.js +465 -33
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -52,13 +52,28 @@ haive memory add \
|
|
|
52
52
|
haive enforce status
|
|
53
53
|
haive enforce check --stage pre-commit
|
|
54
54
|
haive enforce ci
|
|
55
|
-
haive benchmark report --dir benchmarks/agent-benchmark
|
|
56
55
|
```
|
|
57
56
|
|
|
58
57
|
---
|
|
59
58
|
|
|
60
59
|
## Commands
|
|
61
60
|
|
|
61
|
+
The default help is intentionally small and centered on the core harness workflow. Run:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
haive --help
|
|
65
|
+
haive memory --help
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
to see the focused surface. Maintenance and experimental commands remain available, but are hidden from default help:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
haive --advanced --help
|
|
72
|
+
haive --advanced memory --help
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
This keeps hAIve from feeling like a grab bag: day-to-day users see context loading, enforcement, diagnostics, sync, recaps, and the high-signal memory operations first.
|
|
76
|
+
|
|
62
77
|
### `haive init`
|
|
63
78
|
|
|
64
79
|
Initialize the `.ai/` structure in a project. **Autopilot mode is ON by default** and now installs strict enforcement gates by default.
|