@hiveai/cli 0.26.0 → 0.26.1

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -3410,7 +3410,7 @@ ${SEED_FOOTER(stack)}` });
3410
3410
 
3411
3411
  // src/commands/init.ts
3412
3412
  var execFileAsync = promisify2(execFile2);
3413
- var HAIVE_GITHUB_ACTION_REF = `v${"0.26.0"}`;
3413
+ var HAIVE_GITHUB_ACTION_REF = `v${"0.26.1"}`;
3414
3414
  var PROJECT_CONTEXT_TEMPLATE = `# Project context
3415
3415
 
3416
3416
  > Generated by \`haive init\`. Run \`haive init --bootstrap\` to auto-fill from your codebase,
@@ -8698,7 +8698,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
8698
8698
  };
8699
8699
  }
8700
8700
  var SERVER_NAME = "haive";
8701
- var SERVER_VERSION = "0.26.0";
8701
+ var SERVER_VERSION = "0.26.1";
8702
8702
  function jsonResult(data) {
8703
8703
  return {
8704
8704
  content: [
@@ -14475,7 +14475,7 @@ function registerDoctor(program2) {
14475
14475
  fix: "Edit .ai/haive.config.json: set autoSessionEnd: true (or re-run `haive init` without --manual)."
14476
14476
  });
14477
14477
  }
14478
- findings.push(...await collectInstallFindings(root, "0.26.0"));
14478
+ findings.push(...await collectInstallFindings(root, "0.26.1"));
14479
14479
  findings.push(...await collectToolchainFindings(root));
14480
14480
  try {
14481
14481
  const legacyRaw = execSync3("haive-mcp --version", {
@@ -14483,7 +14483,7 @@ function registerDoctor(program2) {
14483
14483
  timeout: 3e3,
14484
14484
  stdio: ["ignore", "pipe", "ignore"]
14485
14485
  }).trim();
14486
- const cliVersion = "0.26.0";
14486
+ const cliVersion = "0.26.1";
14487
14487
  if (legacyRaw && legacyRaw !== cliVersion) {
14488
14488
  findings.push({
14489
14489
  severity: "warn",
@@ -16187,7 +16187,7 @@ async function buildEnforcementReport(dir, stage, sessionId) {
16187
16187
  findings: [{ severity: "info", code: "enforcement-off", message: "hAIve enforcement is disabled." }]
16188
16188
  });
16189
16189
  }
16190
- findings.push(...await inspectIntegrationVersions(root, "0.26.0"));
16190
+ findings.push(...await inspectIntegrationVersions(root, "0.26.1"));
16191
16191
  if (config.enforcement?.requireBriefingFirst !== false && stage !== "ci") {
16192
16192
  const hasBriefing = await hasRecentBriefingMarker2(paths, sessionId);
16193
16193
  findings.push(hasBriefing ? { severity: "ok", code: "briefing-loaded", message: "A recent hAIve briefing marker exists." } : {
@@ -18352,7 +18352,7 @@ function registerBridges(program2) {
18352
18352
 
18353
18353
  // src/index.ts
18354
18354
  var program = new Command64();
18355
- program.name("haive").description("hAIve - repo-native memory and context policy for coding-agent harnesses").version("0.26.0").option("--advanced", "show maintenance and experimental commands in help");
18355
+ program.name("haive").description("hAIve - repo-native memory and context policy for coding-agent harnesses").version("0.26.1").option("--advanced", "show maintenance and experimental commands in help");
18356
18356
  registerInit(program);
18357
18357
  registerWelcome(program);
18358
18358
  registerResolveProject(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiveai/cli",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "hAIve CLI - repo-native memory and context policy for coding-agent harnesses",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -41,9 +41,9 @@
41
41
  "picocolors": "^1.1.1",
42
42
  "react": "^19.2.5",
43
43
  "zod": "^3.23.8",
44
- "@hiveai/core": "0.26.0",
45
- "@hiveai/embeddings": "0.26.0",
46
- "@hiveai/mcp": "0.26.0"
44
+ "@hiveai/core": "0.26.1",
45
+ "@hiveai/embeddings": "0.26.1",
46
+ "@hiveai/mcp": "0.26.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/react": "^19.2.14"