@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.
@@ -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.9.17") {
7
- pkgVersion = "0.9.17";
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\` when implementation may be governed by language/stack conventions.
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: "NAVIGATION LAYER: Returns a compact pointer table of matching coding standards. Use `standard-detail` to fetch full content for a selected result.",
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,