@a-company/paradigm 5.8.0 → 5.8.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.
|
@@ -2277,6 +2277,18 @@ var SessionTracker = class {
|
|
|
2277
2277
|
if (checkpoint && Date.now() - checkpoint.timestamp > CHECKPOINT_MAX_AGE_MS) {
|
|
2278
2278
|
return null;
|
|
2279
2279
|
}
|
|
2280
|
+
if (checkpoint) {
|
|
2281
|
+
for (const key of ["modifiedFiles", "symbolsTouched", "decisions"]) {
|
|
2282
|
+
const val = checkpoint[key];
|
|
2283
|
+
if (typeof val === "string") {
|
|
2284
|
+
try {
|
|
2285
|
+
checkpoint[key] = JSON.parse(val);
|
|
2286
|
+
} catch {
|
|
2287
|
+
checkpoint[key] = [];
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2280
2292
|
return checkpoint;
|
|
2281
2293
|
}
|
|
2282
2294
|
/**
|
package/dist/mcp.js
CHANGED
|
@@ -79,7 +79,7 @@ import {
|
|
|
79
79
|
validateProtocol,
|
|
80
80
|
validatePurposeFile,
|
|
81
81
|
validateUniversityContent
|
|
82
|
-
} from "./chunk-
|
|
82
|
+
} from "./chunk-T3YGSZCI.js";
|
|
83
83
|
import "./chunk-L27I3CPZ.js";
|
|
84
84
|
import {
|
|
85
85
|
getWorkLogSummary,
|
|
@@ -21155,7 +21155,7 @@ Update command:
|
|
|
21155
21155
|
trackToolCall(noWsText.length, name);
|
|
21156
21156
|
return { content: [{ type: "text", text: noWsText }] };
|
|
21157
21157
|
}
|
|
21158
|
-
const { rebuildStaticFiles: rebuildStaticFiles2 } = await import("./reindex-
|
|
21158
|
+
const { rebuildStaticFiles: rebuildStaticFiles2 } = await import("./reindex-KFUPB3ES.js");
|
|
21159
21159
|
const memberResults = [];
|
|
21160
21160
|
for (const member of ctx.workspace.config.members) {
|
|
21161
21161
|
const memberAbsPath = path34.resolve(path34.dirname(ctx.workspace.workspacePath), member.path);
|