@vheins/local-memory-mcp 0.9.1 → 0.9.2
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.
|
@@ -3,8 +3,8 @@ import { fileURLToPath } from "url";
|
|
|
3
3
|
import path from "path";
|
|
4
4
|
var __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
5
5
|
var pkgVersion = "0.1.0";
|
|
6
|
-
if ("0.9.
|
|
7
|
-
pkgVersion = "0.9.
|
|
6
|
+
if ("0.9.2") {
|
|
7
|
+
pkgVersion = "0.9.2";
|
|
8
8
|
} else {
|
|
9
9
|
let searchDir = __dirname;
|
|
10
10
|
for (let i = 0; i < 5; i++) {
|
|
@@ -330,7 +330,6 @@ var MigrationManager = class {
|
|
|
330
330
|
CREATE INDEX IF NOT EXISTS idx_coding_standards_repo ON coding_standards(repo);
|
|
331
331
|
CREATE INDEX IF NOT EXISTS idx_coding_standards_is_global ON coding_standards(is_global);
|
|
332
332
|
CREATE INDEX IF NOT EXISTS idx_coding_standards_language ON coding_standards(language);
|
|
333
|
-
CREATE INDEX IF NOT EXISTS idx_coding_standards_hit_count ON coding_standards(hit_count);
|
|
334
333
|
|
|
335
334
|
CREATE TABLE IF NOT EXISTS standard_vectors (
|
|
336
335
|
standard_id TEXT PRIMARY KEY,
|
|
@@ -513,6 +512,7 @@ var MigrationManager = class {
|
|
|
513
512
|
CREATE INDEX IF NOT EXISTS idx_memories_status ON memories(status);
|
|
514
513
|
CREATE INDEX IF NOT EXISTS idx_memories_supersedes ON memories(supersedes);
|
|
515
514
|
CREATE INDEX IF NOT EXISTS idx_memories_is_global ON memories(is_global);
|
|
515
|
+
CREATE INDEX IF NOT EXISTS idx_coding_standards_hit_count ON coding_standards(hit_count);
|
|
516
516
|
`);
|
|
517
517
|
try {
|
|
518
518
|
this.run("UPDATE tasks SET task_code = substr(id, 1, 8) WHERE task_code IS NULL");
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED