@hiveai/cli 0.9.13 → 0.9.14
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/dist/index.js +3 -3
- package/package.json +8 -5
package/dist/index.js
CHANGED
|
@@ -6273,7 +6273,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
6273
6273
|
};
|
|
6274
6274
|
}
|
|
6275
6275
|
var SERVER_NAME = "haive";
|
|
6276
|
-
var SERVER_VERSION = "0.9.
|
|
6276
|
+
var SERVER_VERSION = "0.9.14";
|
|
6277
6277
|
function jsonResult(data) {
|
|
6278
6278
|
return {
|
|
6279
6279
|
content: [
|
|
@@ -10838,7 +10838,7 @@ function registerDoctor(program2) {
|
|
|
10838
10838
|
timeout: 3e3,
|
|
10839
10839
|
stdio: ["ignore", "pipe", "ignore"]
|
|
10840
10840
|
}).trim();
|
|
10841
|
-
const cliVersion = "0.9.
|
|
10841
|
+
const cliVersion = "0.9.14";
|
|
10842
10842
|
if (legacyRaw && legacyRaw !== cliVersion) {
|
|
10843
10843
|
findings.push({
|
|
10844
10844
|
severity: "warn",
|
|
@@ -12141,7 +12141,7 @@ function registerRun(program2) {
|
|
|
12141
12141
|
|
|
12142
12142
|
// src/index.ts
|
|
12143
12143
|
var program = new Command51();
|
|
12144
|
-
program.name("haive").description("hAIve \u2014 policy enforcement layer for AI coding agents").version("0.9.
|
|
12144
|
+
program.name("haive").description("hAIve \u2014 policy enforcement layer for AI coding agents").version("0.9.14");
|
|
12145
12145
|
registerInit(program);
|
|
12146
12146
|
registerWelcome(program);
|
|
12147
12147
|
registerResolveProject(program);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiveai/cli",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "hAIve CLI — enforce
|
|
3
|
+
"version": "0.9.14",
|
|
4
|
+
"description": "hAIve CLI — enforce repo context, briefings, Git hooks, and CI policy for AI agents",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -14,11 +14,14 @@
|
|
|
14
14
|
"ai",
|
|
15
15
|
"enforcement",
|
|
16
16
|
"policy",
|
|
17
|
+
"context",
|
|
18
|
+
"breadcrumbs",
|
|
17
19
|
"memory",
|
|
18
20
|
"mcp",
|
|
19
21
|
"haive",
|
|
20
22
|
"agent",
|
|
21
23
|
"team",
|
|
24
|
+
"harness",
|
|
22
25
|
"cli",
|
|
23
26
|
"ci"
|
|
24
27
|
],
|
|
@@ -37,11 +40,11 @@
|
|
|
37
40
|
"picocolors": "^1.1.1",
|
|
38
41
|
"react": "^19.2.5",
|
|
39
42
|
"zod": "^3.23.8",
|
|
40
|
-
"@hiveai/core": "0.9.
|
|
41
|
-
"@hiveai/mcp": "0.9.
|
|
43
|
+
"@hiveai/core": "0.9.14",
|
|
44
|
+
"@hiveai/mcp": "0.9.14"
|
|
42
45
|
},
|
|
43
46
|
"peerDependencies": {
|
|
44
|
-
"@hiveai/embeddings": "0.9.
|
|
47
|
+
"@hiveai/embeddings": "0.9.14"
|
|
45
48
|
},
|
|
46
49
|
"peerDependenciesMeta": {
|
|
47
50
|
"@hiveai/embeddings": {
|