@hiveai/cli 0.10.1 → 0.10.2
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 +4 -4
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @hiveai/cli
|
|
2
2
|
|
|
3
|
-
> **hAIve**
|
|
3
|
+
> **hAIve** - repo-native memory and context policy for coding-agent harnesses.
|
|
4
4
|
|
|
5
|
-
hAIve makes your team knowledge enforceable. It gives agents a required briefing before work starts, stores decisions/gotchas/failed attempts as version-controlled Markdown, and adds MCP, Git, CI, and wrapper gates so AI-generated changes cannot quietly bypass project policy.
|
|
5
|
+
hAIve makes your team knowledge enforceable inside the harness around AI coding agents. It gives agents a required briefing before work starts, stores decisions/gotchas/failed attempts as version-controlled Markdown, and adds MCP, Git, CI, and wrapper gates so AI-generated changes cannot quietly bypass project policy.
|
|
6
6
|
|
|
7
|
-
The memory system is the mechanism. The CLI is the control plane: initialize policy, run agents inside hAIve, check the repo, and block unsafe workflow states.
|
|
7
|
+
The memory system is the mechanism. The CLI is the control plane: initialize context policy, run agents inside hAIve, check the repo, and block unsafe workflow states. hAIve complements tests, linters, evals, and observability by carrying the repo-specific knowledge they cannot infer.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -72,7 +72,7 @@ haive --advanced --help
|
|
|
72
72
|
haive --advanced memory --help
|
|
73
73
|
```
|
|
74
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
|
|
75
|
+
This keeps hAIve from feeling like a grab bag: day-to-day users see the core harness loop first - context loading, enforcement, diagnostics, sync, recaps, and the high-signal memory operations.
|
|
76
76
|
|
|
77
77
|
### `haive init`
|
|
78
78
|
|
package/dist/index.js
CHANGED
|
@@ -7389,7 +7389,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
7389
7389
|
};
|
|
7390
7390
|
}
|
|
7391
7391
|
var SERVER_NAME = "haive";
|
|
7392
|
-
var SERVER_VERSION = "0.10.
|
|
7392
|
+
var SERVER_VERSION = "0.10.2";
|
|
7393
7393
|
function jsonResult(data) {
|
|
7394
7394
|
return {
|
|
7395
7395
|
content: [
|
|
@@ -12467,14 +12467,14 @@ function registerDoctor(program2) {
|
|
|
12467
12467
|
fix: "Edit .ai/haive.config.json: set autoSessionEnd: true (or re-run `haive init` without --manual)."
|
|
12468
12468
|
});
|
|
12469
12469
|
}
|
|
12470
|
-
findings.push(...await collectInstallFindings(root, "0.10.
|
|
12470
|
+
findings.push(...await collectInstallFindings(root, "0.10.2"));
|
|
12471
12471
|
try {
|
|
12472
12472
|
const legacyRaw = execSync3("haive-mcp --version", {
|
|
12473
12473
|
encoding: "utf8",
|
|
12474
12474
|
timeout: 3e3,
|
|
12475
12475
|
stdio: ["ignore", "pipe", "ignore"]
|
|
12476
12476
|
}).trim();
|
|
12477
|
-
const cliVersion = "0.10.
|
|
12477
|
+
const cliVersion = "0.10.2";
|
|
12478
12478
|
if (legacyRaw && legacyRaw !== cliVersion) {
|
|
12479
12479
|
findings.push({
|
|
12480
12480
|
severity: "warn",
|
|
@@ -13772,7 +13772,7 @@ async function buildEnforcementReport(dir, stage, sessionId) {
|
|
|
13772
13772
|
findings: [{ severity: "info", code: "enforcement-off", message: "hAIve enforcement is disabled." }]
|
|
13773
13773
|
});
|
|
13774
13774
|
}
|
|
13775
|
-
findings.push(...await inspectIntegrationVersions(root, "0.10.
|
|
13775
|
+
findings.push(...await inspectIntegrationVersions(root, "0.10.2"));
|
|
13776
13776
|
if (config.enforcement?.requireBriefingFirst !== false && stage !== "ci") {
|
|
13777
13777
|
const hasBriefing = await hasRecentBriefingMarker(paths, sessionId);
|
|
13778
13778
|
findings.push(hasBriefing ? { severity: "ok", code: "briefing-loaded", message: "A recent hAIve briefing marker exists." } : {
|
|
@@ -14384,7 +14384,7 @@ function registerRun(program2) {
|
|
|
14384
14384
|
|
|
14385
14385
|
// src/index.ts
|
|
14386
14386
|
var program = new Command52();
|
|
14387
|
-
program.name("haive").description("hAIve
|
|
14387
|
+
program.name("haive").description("hAIve - repo-native memory and context policy for coding-agent harnesses").version("0.10.2").option("--advanced", "show maintenance and experimental commands in help");
|
|
14388
14388
|
registerInit(program);
|
|
14389
14389
|
registerWelcome(program);
|
|
14390
14390
|
registerResolveProject(program);
|