@hivelore/cli 0.49.0 → 0.51.0
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/{chunk-VW4U72ET.js → chunk-UK4CWVS7.js} +6 -5
- package/dist/chunk-UK4CWVS7.js.map +1 -0
- package/dist/index.js +191 -120
- package/dist/index.js.map +1 -1
- package/dist/{server-ZE5Y3Z4A.js → server-Z4M6ERWN.js} +2 -2
- package/package.json +5 -7
- package/dist/chunk-VW4U72ET.js.map +0 -1
- /package/dist/{server-ZE5Y3Z4A.js.map → server-Z4M6ERWN.js.map} +0 -0
|
@@ -3245,7 +3245,7 @@ function oneLine(value) {
|
|
|
3245
3245
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
3246
3246
|
}
|
|
3247
3247
|
function serverVersion() {
|
|
3248
|
-
return true ? "0.
|
|
3248
|
+
return true ? "0.51.0" : "dev";
|
|
3249
3249
|
}
|
|
3250
3250
|
var CodeMapInputSchema = {
|
|
3251
3251
|
file: z21.string().optional().describe("Filter to files whose path contains this substring"),
|
|
@@ -3514,7 +3514,7 @@ function isHaiveOwnedPath(p) {
|
|
|
3514
3514
|
if (p.startsWith(".ai/")) return true;
|
|
3515
3515
|
if (HAIVE_GENERATED_FILES.has(p)) return true;
|
|
3516
3516
|
if (p.startsWith(".cursor/rules/")) return true;
|
|
3517
|
-
if (/^\.github\/workflows\/haive-.*\.ya?ml$/.test(p)) return true;
|
|
3517
|
+
if (/^\.github\/workflows\/(hivelore|haive)-.*\.ya?ml$/.test(p)) return true;
|
|
3518
3518
|
return false;
|
|
3519
3519
|
}
|
|
3520
3520
|
var MAX_FUZZY_SCAN_LINES = 2e4;
|
|
@@ -4608,7 +4608,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4608
4608
|
};
|
|
4609
4609
|
}
|
|
4610
4610
|
var SERVER_NAME = "hivelore";
|
|
4611
|
-
var SERVER_VERSION = "0.
|
|
4611
|
+
var SERVER_VERSION = "0.51.0";
|
|
4612
4612
|
function jsonResult(data) {
|
|
4613
4613
|
return {
|
|
4614
4614
|
content: [
|
|
@@ -4685,7 +4685,8 @@ var MUTATING_TOOLS = /* @__PURE__ */ new Set([
|
|
|
4685
4685
|
function createHaiveServer(options = {}) {
|
|
4686
4686
|
const context = createContext(options);
|
|
4687
4687
|
const config = loadConfigSync(context.paths);
|
|
4688
|
-
const toolProfile = options.env?.
|
|
4688
|
+
const toolProfile = options.env?.HIVELORE_TOOL_PROFILE ?? options.env?.HAIVE_TOOL_PROFILE ?? // legacy env name
|
|
4689
|
+
config.enforcement?.toolProfile ?? "enforcement";
|
|
4689
4690
|
const requireBriefingFirst = options.env?.HAIVE_REQUIRE_BRIEFING_FIRST === "0" ? false : config.enforcement?.requireBriefingFirst ?? true;
|
|
4690
4691
|
let briefingLoaded = false;
|
|
4691
4692
|
const tracker = new SessionTracker(context);
|
|
@@ -5600,4 +5601,4 @@ export {
|
|
|
5600
5601
|
runHaiveMcpStdio,
|
|
5601
5602
|
writeMcpRuntimeMarker
|
|
5602
5603
|
};
|
|
5603
|
-
//# sourceMappingURL=chunk-
|
|
5604
|
+
//# sourceMappingURL=chunk-UK4CWVS7.js.map
|