@vheins/local-memory-mcp 0.8.32 → 0.8.33
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.
|
@@ -3,8 +3,8 @@ import { fileURLToPath } from "url";
|
|
|
3
3
|
import path from "path";
|
|
4
4
|
var __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
5
5
|
var pkgVersion = "0.1.0";
|
|
6
|
-
if ("0.8.
|
|
7
|
-
pkgVersion = "0.8.
|
|
6
|
+
if ("0.8.33") {
|
|
7
|
+
pkgVersion = "0.8.33";
|
|
8
8
|
} else {
|
|
9
9
|
let searchDir = __dirname;
|
|
10
10
|
for (let i = 0; i < 5; i++) {
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -11,6 +11,11 @@ agent: Task Executor
|
|
|
11
11
|
2. **List**: Call `task-list` ONCE for active tasks.
|
|
12
12
|
3. **Audit**: Identify stale `in_progress` tasks (>30m no update). Hydrate via `task-detail` to check timestamps.
|
|
13
13
|
|
|
14
|
+
## Task Cache (MANDATORY)
|
|
15
|
+
- `task-detail` MUST be called at most ONCE per task
|
|
16
|
+
- result MUST be reused across all steps
|
|
17
|
+
- do NOT re-fetch or re-inject full detail
|
|
18
|
+
|
|
14
19
|
## 2. EXECUTION LOOP
|
|
15
20
|
1. **Parallelism & Sub-Agents**:
|
|
16
21
|
- **MANDATORY**: Tasks MUST be delegated to sub-agents if the current agent has sub-agent capabilities.
|