@vheins/local-memory-mcp 0.8.41 → 0.8.42
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.42") {
|
|
7
|
+
pkgVersion = "0.8.42";
|
|
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
|
@@ -37,7 +37,9 @@ agent: Task Executor
|
|
|
37
37
|
- **Evidence**: `task-update` status to `completed` with detailed 'comment' (inspected files, verified logic, test results).
|
|
38
38
|
- **Memory**: Store insights as `code_fact`/`pattern` via `memory-store`.
|
|
39
39
|
- **Retrospective**: Invoke `learning-retrospective`.
|
|
40
|
-
- **Commit**: Atomic git commit
|
|
40
|
+
- **Commit**: Atomic git commit. The commit message MUST include the task code (for example: `fix: ... [TASK-123]`).
|
|
41
|
+
- **GitHub Issue Traceability**: If task metadata contains a GitHub Issue reference, the commit message MUST also include the issue hashtag in `#123` format.
|
|
42
|
+
- **Issue Number Extraction**: Read the issue number from task metadata when available. If metadata only contains a GitHub Issue URL, extract the trailing issue number from that URL before committing.
|
|
41
43
|
8. **Repeat**: Claim next task from `task-list`.
|
|
42
44
|
|
|
43
45
|
## 3. BACKLOG MAINTENANCE
|