@vheins/local-memory-mcp 0.10.11 → 0.10.12

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.
@@ -10,7 +10,7 @@ import {
10
10
  createFileSink,
11
11
  listResources,
12
12
  logger
13
- } from "../chunk-5ODTDJZP.js";
13
+ } from "../chunk-WWVIDZ5P.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-5ODTDJZP.js";
60
+ } from "../chunk-WWVIDZ5P.js";
61
61
 
62
62
  // src/mcp/server.ts
63
63
  import readline from "readline";
@@ -1125,7 +1125,7 @@ function buildMissingTaskSchema(task) {
1125
1125
  });
1126
1126
  addRequiredStringField(properties, required, task, "description", {
1127
1127
  title: "Description",
1128
- description: "Detailed description of the task.",
1128
+ description: "Detailed description. MUST follow format: 1. Context & Analysis, 2. Step & Implementation, 3. Acceptance & Verification",
1129
1129
  minLength: 1
1130
1130
  });
1131
1131
  if (!task.status) {
@@ -43,8 +43,8 @@ ONLY call MCP tools. No prose, no code, no plans outside MCP.
43
43
  - **Trigger**: Instruction/finding.
44
44
  - **Observation**: Technical reasoning.
45
45
  - **Goal**: Clear objective.
46
- ### 2. Target Files & Implementation
47
- - Combined scope/steps per path/layer.
46
+ ### 2. Step & Implementation
47
+ - Detailed execution steps per path/layer.
48
48
  ### 3. Acceptance & Verification
49
49
  - **Checklist**: `[ ]` criteria.
50
50
  - **Testing**: Scenarios.
@@ -40,8 +40,8 @@ ONLY call MCP tools. No prose, code, or external plans.
40
40
  - **Finding**: Gap trigger.
41
41
  - **Observation**: Reasoning.
42
42
  - **Goal**: Clear objective.
43
- ### 2. Target Files & Implementation
44
- - Combined scope/steps per path/layer.
43
+ ### 2. Step & Implementation
44
+ - Detailed execution steps per path/layer.
45
45
  ### 3. Acceptance & Verification
46
46
  - **Checklist**: `[ ]` criteria.
47
47
  - **Testing**: Scenarios.
@@ -42,7 +42,7 @@ No prose. No external plans.
42
42
  - **Finding**: Gap trigger.
43
43
  - **Observation**: Reasoning.
44
44
  - **Goal**: Clear objective.
45
- ### 2. Target Files & Implementation
45
+ ### 2. Step & Implementation
46
46
  - Path/layer specific changes.
47
47
  ### 3. Acceptance & Verification
48
48
  - **Checklist**: `[ ]` criteria.
@@ -20,6 +20,6 @@ Steps:
20
20
  5. **Phase**: Group into `research`, `implementation`, and `validation`.
21
21
  6. **Hierarchy**: Use `parent_id` / `depends_on` for sequencing.
22
22
  7. **Priority Scale**: When creating tasks, use the exact MCP scale `1=Low`, `2=Normal`, `3=Medium`, `4=High`, `5=Critical`. Higher number means higher urgency.
23
- 8. **Create**: Use `task-create` in current repo with stable `task_code`, tags, and acceptance criteria.
23
+ 8. **Create**: Use `task-create` in current repo with stable `task_code`, tags, and acceptance criteria following the format: 1. Context & Analysis, 2. Step & Implementation, 3. Acceptance & Verification.
24
24
 
25
25
  Display final plan to user.
@@ -35,7 +35,7 @@ agent: Task Executor
35
35
  ## 2. EXECUTION LOOP
36
36
  1. **Parallelism & Sub-Agents**:
37
37
  - **MANDATORY**: Tasks MUST be delegated to sub-agents if the current agent has sub-agent capabilities.
38
- - **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.
38
+ - **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. All created tasks MUST follow the format: 1. Context & Analysis, 2. Step & Implementation, 3. Acceptance & Verification.
39
39
  - **Spawn Limit**: The total number of parallel sub-agents MUST NOT exceed 2. Each sub-agent executes EXACTLY ONE task at a time.
40
40
  - **Fallback**: If the current agent CANNOT spawn sub-agents, it MUST execute tasks sequentially (exactly ONE concurrent task) until the queue is clear.
41
41
  2. **Hydrate**: Fetch full context via `task-detail` for the assigned task.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.10.11",
3
+ "version": "0.10.12",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",