@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.
- package/dist/{chunk-5ODTDJZP.js → chunk-WWVIDZ5P.js} +2049 -2036
- package/dist/dashboard/server.js +1 -1
- package/dist/mcp/server.js +2 -2
- package/dist/prompts/create-task.md +2 -2
- package/dist/prompts/review-and-audit.md +2 -2
- package/dist/prompts/review-and-post-issue.md +1 -1
- package/dist/prompts/session-planner.md +1 -1
- package/dist/prompts/task-memory-executor.md +1 -1
- package/package.json +1 -1
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
toContextSlug,
|
|
58
58
|
updateSessionFromInitialize,
|
|
59
59
|
updateSessionRoots
|
|
60
|
-
} from "../chunk-
|
|
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
|
|
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.
|
|
47
|
-
-
|
|
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.
|
|
44
|
-
-
|
|
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.
|
|
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.
|