@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.1") {
7
- pkgVersion = "0.9.1";
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");
@@ -10,7 +10,7 @@ import {
10
10
  createFileSink,
11
11
  listResources,
12
12
  logger
13
- } from "../chunk-RLAFKS7B.js";
13
+ } from "../chunk-PRSVP6TS.js";
14
14
 
15
15
  // src/dashboard/server.ts
16
16
  import express from "express";
@@ -54,7 +54,7 @@ import {
54
54
  setLogLevel,
55
55
  updateSessionFromInitialize,
56
56
  updateSessionRoots
57
- } from "../chunk-RLAFKS7B.js";
57
+ } from "../chunk-PRSVP6TS.js";
58
58
 
59
59
  // src/mcp/server.ts
60
60
  import readline from "readline";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",