@vheins/local-memory-mcp 0.12.0 → 0.12.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.
|
@@ -81,8 +81,8 @@ function loadServerInstructions() {
|
|
|
81
81
|
// src/mcp/capabilities.ts
|
|
82
82
|
var __dirname2 = path2.dirname(fileURLToPath2(import.meta.url));
|
|
83
83
|
var pkgVersion = "0.1.0";
|
|
84
|
-
if ("0.12.
|
|
85
|
-
pkgVersion = "0.12.
|
|
84
|
+
if ("0.12.1") {
|
|
85
|
+
pkgVersion = "0.12.1";
|
|
86
86
|
} else {
|
|
87
87
|
let searchDir = __dirname2;
|
|
88
88
|
for (let i = 0; i < 5; i++) {
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
toContextSlug,
|
|
58
58
|
updateSessionFromInitialize,
|
|
59
59
|
updateSessionRoots
|
|
60
|
-
} from "../chunk-
|
|
60
|
+
} from "../chunk-I57EED66.js";
|
|
61
61
|
|
|
62
62
|
// src/mcp/server.ts
|
|
63
63
|
import readline from "readline";
|
|
@@ -773,10 +773,10 @@ function buildTaskListSummary(repo, count, status, phase, search, tasksByStatus)
|
|
|
773
773
|
if (items.length > 0) {
|
|
774
774
|
parts.push("");
|
|
775
775
|
parts.push(`${capitalize3(taskStatus)}:`);
|
|
776
|
-
parts.push("- code|status|priority|last_updated|title");
|
|
776
|
+
parts.push("- code|status|priority|phase|last_updated|title");
|
|
777
777
|
for (const t of items) {
|
|
778
778
|
const lastUpdated = t.updated_at ? t.updated_at.slice(0, 16).replace("T", " ") : "never";
|
|
779
|
-
parts.push(`- ${t.task_code}|${t.status}|${t.priority}|${lastUpdated}|${t.title}`);
|
|
779
|
+
parts.push(`- ${t.task_code}|${t.status}|${t.priority}|${t.phase}|${lastUpdated}|${t.title}`);
|
|
780
780
|
}
|
|
781
781
|
}
|
|
782
782
|
}
|