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