@vheins/local-memory-mcp 0.10.6 → 0.10.8

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.
@@ -8,7 +8,7 @@
8
8
  <link rel="preconnect" href="https://fonts.googleapis.com">
9
9
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
10
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
11
- <script type="module" crossorigin src="/assets/index-BLUZoPoT.js"></script>
11
+ <script type="module" crossorigin src="/assets/index-B1wu-BqO.js"></script>
12
12
  <link rel="stylesheet" crossorigin href="/assets/index-D_W3_eYf.css">
13
13
  </head>
14
14
  <body>
@@ -10,7 +10,7 @@ import {
10
10
  createFileSink,
11
11
  listResources,
12
12
  logger
13
- } from "../chunk-LDCBJBQN.js";
13
+ } from "../chunk-U2NZ5E3P.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-LDCBJBQN.js";
60
+ } from "../chunk-U2NZ5E3P.js";
61
61
 
62
62
  // src/mcp/server.ts
63
63
  import readline from "readline";
@@ -20,7 +20,7 @@ agent: Task Executor
20
20
  1. **Parallelism & Sub-Agents**:
21
21
  - **MANDATORY**: Tasks MUST be delegated to sub-agents if the current agent has sub-agent capabilities.
22
22
  - **Decomposition**: If a task is too broad, the agent is allowed to decompose it into multiple tasks (via `task-create`) and delegate them to sub-agents.
23
- - **Spawn Limit**: The total number of parallel sub-agents MUST NOT exceed 4. Each sub-agent executes EXACTLY ONE task at a time.
23
+ - **Spawn Limit**: The total number of parallel sub-agents MUST NOT exceed 2. Each sub-agent executes EXACTLY ONE task at a time.
24
24
  - **Fallback**: If the current agent CANNOT spawn sub-agents, it MUST execute tasks sequentially (exactly ONE concurrent task) until the queue is clear.
25
25
  2. **Hydrate**: Fetch full context via `task-detail` for the assigned task.
26
26
  3. **Claim**: Use `task-claim` with `task_code` or `task_id` before implementation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.10.6",
3
+ "version": "0.10.8",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",