@vheins/local-memory-mcp 0.19.22 → 0.19.23

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.
@@ -75,8 +75,8 @@ import path from "path";
75
75
  import { fileURLToPath } from "url";
76
76
  var __dirname = path.dirname(fileURLToPath(import.meta.url));
77
77
  var pkgVersion = "0.1.0";
78
- if ("0.19.22") {
79
- pkgVersion = "0.19.22";
78
+ if ("0.19.23") {
79
+ pkgVersion = "0.19.23";
80
80
  } else {
81
81
  let searchDir = __dirname;
82
82
  for (let i = 0; i < 5; i++) {
@@ -21,10 +21,10 @@ Guard: S(N) req S(N-1)✅
21
21
 
22
22
  S0 | review tech_stack & requirements | — | component list, data flow map | —
23
23
  S1 | design: component diagram(blocks+responsibilities) + data flow(information movement) + ADRs(rationale) + scalability/reliability(growth+failure) + security(identity,protection,boundaries) | S0✅ | design decisions | —
24
- S2 | document artifacts | S1✅ | architecture docs | design/architecture/
24
+ S2 | document artifacts | S1✅ | architecture docs | .agents/documents/design/architecture/
25
25
  S3 | verify: validate component completeness, data flow coherence, ADR traceability, security coverage, scalability assumptions | S2✅ | verified | —
26
26
 
27
27
  ## Chain
28
28
 
29
29
  ← N/A
30
- → architecture-documentation: design/architecture/ → as-built architecture doc
30
+ → architecture-documentation: .agents/documents/design/architecture/ → as-built architecture doc
@@ -43,7 +43,7 @@ S0 | categorize: type + tech tags; NEVER store coordination state (claims, file
43
43
  S1 | store: memory-store(type+title+content+importance+agent+model+scope) or decision-log(structured decisions) or standard-store(normative rules) or handoff-create(transfer ctx) | S0✅ | stored | —
44
44
  S2 | verify: confirm stored entity matches category, no forbidden types mixed in | S1✅ | verified | —
45
45
 
46
- **⚠️ `memory-store` requires ALL 7 fields**: `type`, `title`, `content`, `importance`, `agent`, `model`, `scope` (with `scope.owner` + `scope.repo`). Or use `memories[]` array for bulk.
46
+ **⚠️ \`memory-store\` requires ALL 8 fields**: \`type\`, \`title\`, \`content\`, \`importance\`, \`agent\`, \`model\`, \`scope.owner\`, \`scope.repo\`. Never omit \`model\` or \`scope\`.
47
47
 
48
48
  ## Notes
49
49
 
@@ -21,7 +21,7 @@ S0 | fetch: issue_read body + ALL comments (get_comments) | issue_url provided?
21
21
  S1 | analyze comments: extract requirements, hints, root cause clues, reproduction steps, error details | S0✅ | comment analysis | —
22
22
  S2 | detect attachments: parse all comments for image/video markdown URLs, linked assets | S1✅ | attachment URL list | —
23
23
  S3 | download: gh CLI (gh issue view, gh api) to fetch each attachment — private repo, NO curl | S2✅ & attachments exist? | local files | —
24
- S4 | analyze attachments: inspect screenshots/videos for UI bugs, error states, configs, visual hints | S3✅ | attachment analysis | —
24
+ S4 | delegate: pass attachments to vision sub-agent via task tool for analysis (UI bugs, error states, configs, visual hints) | S3✅ | attachment analysis | —
25
25
  S5 | research: agent-context(supplementary) OR memory-search + standard-search + codebase exploration (trace call sites, read docs) | S0-4✅ | full context | —
26
26
  S6 | register: task-create (link issue URL) + task-claim + task-update→in_progress | S5✅ | MCP task | —
27
27
  S7 | implement fix + validate: tests, linters, e2e | S6✅ | verified changes | —
@@ -13,16 +13,16 @@ tags: [workflow, technical-planning]
13
13
 
14
14
  ## Technical Planning
15
15
 
16
- Entry=create-task → task-claim Exit=task-update completed|blocked
16
+ Entry=create-task → task-claim Exit=task-update completed|blocked
17
17
  Guard: A(N) req all prev A✅
18
18
 
19
19
  A1 | tech-stack-selection | — | tech stack decision | —
20
- A2 | architecture-design | A1✅ | architecture plan | design/architecture/
20
+ A2 | architecture-design | A1✅ | architecture plan | .agents/documents/design/architecture/
21
21
  G1 | approve stack + arch | A2✅ | → proceed | —
22
- A3 | domain-modeling | G1✅ | domain model | design/domain/
23
- A4 | database-schema-planning | A3✅ | schema plan | design/database/
22
+ A3 | domain-modeling | G1✅ | domain model | .agents/documents/design/domain/
23
+ A4 | database-schema-planning | A3✅ | schema plan | .agents/documents/design/database/
24
24
  G2 | approve domain + db | A4✅ | → proceed | —
25
- A5 | api-contract-design | G2✅ | API contract | design/api/
25
+ A5 | api-contract-design | G2✅ | API contract | .agents/documents/application/api/
26
26
  G3 | approve API contracts | A5✅ | → proceed | —
27
27
  A6 | derive total_sprints from roadmap timeline+capacity → generate 1 sprint-planning task per sprint(N) + allocation audit + MCP task tree(parent/child + depends_on) | G3✅ | roadmap + sprints-1..N + audit + tasks | tasks/ + MCP
28
28
  GF | final approve — blocked if sprint-N.md missing or MCP task tree not created | A6✅ | → documentation | —
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.19.22",
3
+ "version": "0.19.23",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",