@vheins/local-memory-mcp 0.8.12 → 0.8.14
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.
|
@@ -1901,9 +1901,9 @@ var SummaryEntity = class extends BaseEntity {
|
|
|
1901
1901
|
import lockfile from "proper-lockfile";
|
|
1902
1902
|
import path2 from "path";
|
|
1903
1903
|
import fs3 from "fs";
|
|
1904
|
-
var LOCK_STALE_MS =
|
|
1905
|
-
var LOCK_RETRY_DELAY_MS =
|
|
1906
|
-
var LOCK_RETRY_COUNT =
|
|
1904
|
+
var LOCK_STALE_MS = 3e4;
|
|
1905
|
+
var LOCK_RETRY_DELAY_MS = 200;
|
|
1906
|
+
var LOCK_RETRY_COUNT = 250;
|
|
1907
1907
|
var WriteLock = class {
|
|
1908
1908
|
lockTarget;
|
|
1909
1909
|
locked = false;
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
setLogLevel,
|
|
44
44
|
updateSessionFromInitialize,
|
|
45
45
|
updateSessionRoots
|
|
46
|
-
} from "../chunk-
|
|
46
|
+
} from "../chunk-4LVZQKWD.js";
|
|
47
47
|
|
|
48
48
|
// src/mcp/server.ts
|
|
49
49
|
import readline from "readline";
|
|
@@ -1358,7 +1358,7 @@ async function handleTaskUpdate(args, storage, vectors2) {
|
|
|
1358
1358
|
}
|
|
1359
1359
|
});
|
|
1360
1360
|
const isCompleted = updates.status === "completed" && updatedCount > 0;
|
|
1361
|
-
const summaryText = isCompleted ? `Updated ${updatedCount} task(s) in repo "${repo}". \u2705 Task marked as completed \u2014 don't forget to commit
|
|
1361
|
+
const summaryText = isCompleted ? `Updated ${updatedCount} task(s) in repo "${repo}". \u2705 Task marked as completed \u2014 don't forget to commit your changes!` : `Updated ${updatedCount} task(s) in repo "${repo}".`;
|
|
1362
1362
|
return createMcpResponse(
|
|
1363
1363
|
{
|
|
1364
1364
|
success: true,
|