@vheins/local-memory-mcp 0.9.17 → 0.10.1
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-M7JX3RQI.js → chunk-Z6FENX4V.js} +5 -4
- package/dist/dashboard/public/assets/index-BX3HILrT.js +87 -0
- package/dist/dashboard/public/assets/{index-CLpwNtkR.css → index-D_W3_eYf.css} +1 -1
- package/dist/dashboard/public/index.html +2 -2
- package/dist/dashboard/server.js +151 -2
- package/dist/mcp/server.js +1 -1
- package/dist/prompts/create-task.md +1 -1
- package/dist/prompts/memory-agent-core.md +1 -1
- package/dist/prompts/project-briefing.md +1 -1
- package/dist/prompts/review-and-audit.md +1 -1
- package/dist/prompts/session-planner.md +1 -1
- package/dist/prompts/task-management-guidelines.md +1 -1
- package/dist/prompts/task-memory-executor.md +1 -1
- package/dist/prompts/tool-usage-guidelines.md +1 -1
- package/package.json +1 -1
- package/dist/dashboard/public/assets/index-sf-Fpcw9.js +0 -87
|
@@ -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.
|
|
7
|
-
pkgVersion = "0.
|
|
6
|
+
if ("0.10.1") {
|
|
7
|
+
pkgVersion = "0.10.1";
|
|
8
8
|
} else {
|
|
9
9
|
let searchDir = __dirname;
|
|
10
10
|
for (let i = 0; i < 5; i++) {
|
|
@@ -31,7 +31,7 @@ Use at the START of every session and before any implementation work:
|
|
|
31
31
|
1. Call \`task-list\` to sync active/pending tasks for the current repository.
|
|
32
32
|
2. Call \`handoff-list\` to check pending context transfers. Close stale handoffs with \`handoff-update\`.
|
|
33
33
|
3. Call \`memory-search\` and \`memory-synthesize\` to hydrate architectural context before coding.
|
|
34
|
-
4. Call \`standard-search\`
|
|
34
|
+
4. Call \`standard-search\` before any code edit, test edit, refactor, migration, or implementation decision. This is mandatory even for small tasks; use the task intent, affected files, inferred language, stack, and repo as filters. If no relevant standards are returned, continue and state that no applicable standards were found.
|
|
35
35
|
|
|
36
36
|
## Core Workflows
|
|
37
37
|
|
|
@@ -46,6 +46,7 @@ Use at the START of every session and before any implementation work:
|
|
|
46
46
|
- Completing a task auto-releases claims and expires linked handoffs.
|
|
47
47
|
|
|
48
48
|
**Standards**: \`standard-search\` \u2192 \`standard-store\`
|
|
49
|
+
- \`standard-search\` is the pre-implementation gate for code, tests, refactors, migrations, and implementation decisions.
|
|
49
50
|
- One rule per entry. Treat as normative implementation contracts, not docs summaries.
|
|
50
51
|
|
|
51
52
|
**Handoffs/Claims**: \`handoff-list\` \u2192 \`handoff-create\` / \`handoff-update\` | \`task-claim\` / \`claim-release\`
|
|
@@ -4707,7 +4708,7 @@ var TOOL_DEFINITIONS = [
|
|
|
4707
4708
|
{
|
|
4708
4709
|
name: "standard-search",
|
|
4709
4710
|
title: "Standard Search",
|
|
4710
|
-
description: "
|
|
4711
|
+
description: "MANDATORY PRE-IMPLEMENTATION CHECK: Call before any code edit, test edit, refactor, migration, or implementation decision to find applicable coding standards. Returns a compact pointer table; use `standard-detail` for relevant results. If no relevant standards are returned, continue and state that no applicable standards were found.",
|
|
4711
4712
|
annotations: {
|
|
4712
4713
|
readOnlyHint: true,
|
|
4713
4714
|
idempotentHint: true,
|