@hivelore/cli 0.33.0 → 0.35.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-XDB7EKL4.js → chunk-ZR7UPTRR.js} +5 -5
- package/dist/chunk-ZR7UPTRR.js.map +1 -0
- package/dist/index.js +1038 -560
- package/dist/index.js.map +1 -1
- package/dist/{server-LZKYO5O5.js → server-2FUYM6KI.js} +2 -2
- package/package.json +4 -4
- package/dist/chunk-XDB7EKL4.js.map +0 -1
- /package/dist/{server-LZKYO5O5.js.map → server-2FUYM6KI.js.map} +0 -0
|
@@ -1666,7 +1666,7 @@ var SessionTracker = class {
|
|
|
1666
1666
|
this.shutdownRegistered = true;
|
|
1667
1667
|
const save = async () => {
|
|
1668
1668
|
const writingTools = this.events.filter(
|
|
1669
|
-
(e) => ["mem_save", "mem_tried", "
|
|
1669
|
+
(e) => ["mem_save", "mem_tried", "mem_update", "bootstrap_project_save"].includes(e.tool)
|
|
1670
1670
|
);
|
|
1671
1671
|
const totalCalls = this.events.length;
|
|
1672
1672
|
if (totalCalls === 0) return;
|
|
@@ -2571,7 +2571,7 @@ Invoke the \`bootstrap_repo\` MCP prompt, or close these gaps directly:
|
|
|
2571
2571
|
}
|
|
2572
2572
|
if (input.task && outputMemories.length > 0 && actionRequired.length === 0) {
|
|
2573
2573
|
hints.push(
|
|
2574
|
-
"After completing the task: capture
|
|
2574
|
+
"After completing the task: capture failed approaches with mem_tried, new gotchas and validated patterns with mem_save."
|
|
2575
2575
|
);
|
|
2576
2576
|
}
|
|
2577
2577
|
if (outputMemories.length > 2 && !input.budget_preset && input.task && !hints.some((h) => h.includes("budget_preset"))) {
|
|
@@ -2723,7 +2723,7 @@ function oneLine(value) {
|
|
|
2723
2723
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2724
2724
|
}
|
|
2725
2725
|
function serverVersion() {
|
|
2726
|
-
return true ? "0.
|
|
2726
|
+
return true ? "0.35.0" : "dev";
|
|
2727
2727
|
}
|
|
2728
2728
|
var CodeMapInputSchema = {
|
|
2729
2729
|
file: z20.string().optional().describe("Filter to files whose path contains this substring"),
|
|
@@ -4050,7 +4050,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4050
4050
|
};
|
|
4051
4051
|
}
|
|
4052
4052
|
var SERVER_NAME = "hivelore";
|
|
4053
|
-
var SERVER_VERSION = "0.
|
|
4053
|
+
var SERVER_VERSION = "0.35.0";
|
|
4054
4054
|
function jsonResult(data) {
|
|
4055
4055
|
return {
|
|
4056
4056
|
content: [
|
|
@@ -4993,4 +4993,4 @@ export {
|
|
|
4993
4993
|
printHaiveMcpVersion,
|
|
4994
4994
|
runHaiveMcpStdio
|
|
4995
4995
|
};
|
|
4996
|
-
//# sourceMappingURL=chunk-
|
|
4996
|
+
//# sourceMappingURL=chunk-ZR7UPTRR.js.map
|