@hivelore/mcp 0.33.0 → 0.34.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.
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/server.js +4 -4
- package/dist/server.js.map +1 -1
- package/package.json +3 -3
package/dist/server.js
CHANGED
|
@@ -1585,7 +1585,7 @@ var SessionTracker = class {
|
|
|
1585
1585
|
this.shutdownRegistered = true;
|
|
1586
1586
|
const save = async () => {
|
|
1587
1587
|
const writingTools = this.events.filter(
|
|
1588
|
-
(e) => ["mem_save", "mem_tried", "
|
|
1588
|
+
(e) => ["mem_save", "mem_tried", "mem_update", "bootstrap_project_save"].includes(e.tool)
|
|
1589
1589
|
);
|
|
1590
1590
|
const totalCalls = this.events.length;
|
|
1591
1591
|
if (totalCalls === 0) return;
|
|
@@ -2552,7 +2552,7 @@ Invoke the \`bootstrap_repo\` MCP prompt, or close these gaps directly:
|
|
|
2552
2552
|
}
|
|
2553
2553
|
if (input.task && outputMemories.length > 0 && actionRequired.length === 0) {
|
|
2554
2554
|
hints.push(
|
|
2555
|
-
"After completing the task: capture
|
|
2555
|
+
"After completing the task: capture failed approaches with mem_tried, new gotchas and validated patterns with mem_save."
|
|
2556
2556
|
);
|
|
2557
2557
|
}
|
|
2558
2558
|
if (outputMemories.length > 2 && !input.budget_preset && input.task && !hints.some((h) => h.includes("budget_preset"))) {
|
|
@@ -2704,7 +2704,7 @@ function oneLine(value) {
|
|
|
2704
2704
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2705
2705
|
}
|
|
2706
2706
|
function serverVersion() {
|
|
2707
|
-
return true ? "0.
|
|
2707
|
+
return true ? "0.34.1" : "dev";
|
|
2708
2708
|
}
|
|
2709
2709
|
|
|
2710
2710
|
// src/tools/code-map.ts
|
|
@@ -4132,7 +4132,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4132
4132
|
// src/server.ts
|
|
4133
4133
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4134
4134
|
var SERVER_NAME = "hivelore";
|
|
4135
|
-
var SERVER_VERSION = "0.
|
|
4135
|
+
var SERVER_VERSION = "0.34.1";
|
|
4136
4136
|
function jsonResult(data) {
|
|
4137
4137
|
return {
|
|
4138
4138
|
content: [
|