@vheins/local-memory-mcp 0.5.11 → 0.5.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.
|
@@ -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,19 @@ The `description` field MUST follow this structure EXACTLY:
|
|
|
100
102
|
|
|
101
103
|
---
|
|
102
104
|
|
|
103
|
-
### 4.
|
|
105
|
+
### 4. MEMORY STORAGE (MANDATORY)
|
|
106
|
+
Whenever you create a task, you MUST ALSO 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
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
### 5. MULTI-TASK HANDLING
|
|
104
111
|
If a directive is complex:
|
|
105
112
|
1. Create a parent task.
|
|
106
113
|
2. Create child tasks using `parent_id` and `depends_on`.
|
|
107
114
|
|
|
108
115
|
---
|
|
109
116
|
|
|
110
|
-
###
|
|
117
|
+
### 6. FINAL SELF-CHECK (MANDATORY)
|
|
111
118
|
Before finishing, validate:
|
|
112
119
|
* ❌ No code was written.
|
|
113
120
|
* ❌ 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,19 @@ The `description` field MUST follow this structure EXACTLY:
|
|
|
105
107
|
|
|
106
108
|
---
|
|
107
109
|
|
|
108
|
-
### 6.
|
|
110
|
+
### 6. MEMORY STORAGE (MANDATORY)
|
|
111
|
+
Whenever you create a task, you MUST ALSO 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
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
### 7. MULTI-TASK HANDLING
|
|
109
116
|
If gaps are complex:
|
|
110
117
|
1. Create a parent task.
|
|
111
118
|
2. Create child tasks using `parent_id` and `depends_on`.
|
|
112
119
|
|
|
113
120
|
---
|
|
114
121
|
|
|
115
|
-
###
|
|
122
|
+
### 8. FINAL SELF-CHECK (MANDATORY)
|
|
116
123
|
Before finishing, validate:
|
|
117
124
|
* ❌ No code was written.
|
|
118
125
|
* ❌ No execution was performed.
|