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