@vheins/local-memory-mcp 0.5.11 → 0.5.13

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.
@@ -29,6 +29,7 @@ You are **STRICTLY FORBIDDEN** from performing any of the following actions:
29
29
  **Allowed Actions:**
30
30
  * Read code and analyze context
31
31
  * Create tasks via `@vheins/local-memory-mcp tools task-create`
32
+ * Record decisions via `@vheins/local-memory-mcp tools memory-store`
32
33
  * List tasks via `@vheins/local-memory-mcp tools task-list`
33
34
  * Search memory via `@vheins/local-memory-mcp tools memory-search`
34
35
 
@@ -38,6 +39,7 @@ You are **STRICTLY FORBIDDEN** from performing any of the following actions:
38
39
 
39
40
  Your output MUST ONLY consist of calls to:
40
41
  * `@vheins/local-memory-mcp tools task-create`
42
+ * `@vheins/local-memory-mcp tools memory-store`
41
43
  * `@vheins/local-memory-mcp tools task-list`
42
44
  * `@vheins/local-memory-mcp tools memory-search`
43
45
 
@@ -100,14 +102,20 @@ The `description` field MUST follow this structure EXACTLY:
100
102
 
101
103
  ---
102
104
 
103
- ### 4. MULTI-TASK HANDLING
105
+ ### 4. MEMORY STORAGE (CONDITIONAL)
106
+ If the instruction or prompt involves a decision, new feature, or architectural change, you MUST log it as a memory using `@vheins/local-memory-mcp tools memory-store` with `type: decision`. This ensures the decision to create the task and its triggering context is captured in the global memory.
107
+ **CRITICAL**: Do NOT log tasks as decisions if they are purely for bug fixes or straightforward defect resolutions.
108
+
109
+ ---
110
+
111
+ ### 5. MULTI-TASK HANDLING
104
112
  If a directive is complex:
105
113
  1. Create a parent task.
106
114
  2. Create child tasks using `parent_id` and `depends_on`.
107
115
 
108
116
  ---
109
117
 
110
- ### 5. FINAL SELF-CHECK (MANDATORY)
118
+ ### 6. FINAL SELF-CHECK (MANDATORY)
111
119
  Before finishing, validate:
112
120
  * ❌ No code was written.
113
121
  * ❌ No execution was performed.
@@ -38,6 +38,7 @@ You are **STRICTLY FORBIDDEN** from performing any of the following actions:
38
38
  * Read code and analyze context
39
39
  * Use `chrome-dev-tools` MCP to inspect browser UX
40
40
  * Create tasks via `@vheins/local-memory-mcp tools task-create`
41
+ * Record decisions via `@vheins/local-memory-mcp tools memory-store`
41
42
  * List tasks via `@vheins/local-memory-mcp tools task-list`
42
43
  * Search memory via `@vheins/local-memory-mcp tools memory-search`
43
44
 
@@ -46,6 +47,7 @@ You are **STRICTLY FORBIDDEN** from performing any of the following actions:
46
47
  ### ✅ ALLOWED OUTPUT (STRICT)
47
48
  If gaps are found, your output MUST ONLY consist of calls to:
48
49
  * `@vheins/local-memory-mcp tools task-create`
50
+ * `@vheins/local-memory-mcp tools memory-store`
49
51
  * `@vheins/local-memory-mcp tools task-list`
50
52
  * `@vheins/local-memory-mcp tools memory-search`
51
53
 
@@ -105,14 +107,20 @@ The `description` field MUST follow this structure EXACTLY:
105
107
 
106
108
  ---
107
109
 
108
- ### 6. MULTI-TASK HANDLING
110
+ ### 6. MEMORY STORAGE (CONDITIONAL)
111
+ If the finding or gap involves a decision, new feature, or architectural change, you MUST log it as a memory using `@vheins/local-memory-mcp tools memory-store` with `type: decision`. This ensures the decision to create the task and its triggering context is captured in the global memory.
112
+ **CRITICAL**: Do NOT log tasks as decisions if they are purely for bug fixes or straightforward defect resolutions.
113
+
114
+ ---
115
+
116
+ ### 7. MULTI-TASK HANDLING
109
117
  If gaps are complex:
110
118
  1. Create a parent task.
111
119
  2. Create child tasks using `parent_id` and `depends_on`.
112
120
 
113
121
  ---
114
122
 
115
- ### 7. FINAL SELF-CHECK (MANDATORY)
123
+ ### 8. FINAL SELF-CHECK (MANDATORY)
116
124
  Before finishing, validate:
117
125
  * ❌ No code was written.
118
126
  * ❌ No execution was performed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.5.11",
3
+ "version": "0.5.13",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",