mindkeg-mcp 0.5.0 → 0.6.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/README.md CHANGED
@@ -163,6 +163,8 @@ Copy `templates/AGENTS.md` to the root of any repository where you want agents t
163
163
 
164
164
  ## MCP Tools
165
165
 
166
+ ### Learnings
167
+
166
168
  | Tool | Description |
167
169
  |----------------------|------------------------------------------------------|
168
170
  | `get_context` | Prime an agent session with all relevant learnings — ranked, scoped, and budget-controlled |
@@ -177,6 +179,24 @@ Copy `templates/AGENTS.md` to the root of any repository where you want agents t
177
179
  | `list_repositories` | List all repositories with learning counts |
178
180
  | `list_workspaces` | List all workspaces with learning counts |
179
181
 
182
+ ### Agent Memory Entities
183
+
184
+ Structured entity types for capturing decisions, findings, gotchas, and run summaries — richer than atomic learnings, designed for cross-session agent memory.
185
+
186
+ | Tool | Description |
187
+ |------------------------|------------------------------------------------------|
188
+ | `store_decision` | Record an architectural or design decision with rationale |
189
+ | `get_decisions` | Retrieve decisions for a repository, optionally filtered by status |
190
+ | `supersede_decision` | Mark a decision as superseded by a newer one |
191
+ | `store_finding` | Record a bug, issue, or investigation finding |
192
+ | `get_open_findings` | Retrieve unresolved findings for a repository |
193
+ | `resolve_finding` | Mark a finding as resolved with a resolution summary |
194
+ | `store_gotcha` | Record a non-obvious pitfall or gotcha |
195
+ | `get_gotchas` | Retrieve gotchas for a repository |
196
+ | `get_relevant_context` | Retrieve all entity types relevant to a repository |
197
+ | `get_run_history` | Retrieve run summaries for a repository |
198
+ | `complete_run` | Record the completion of an agent run with a summary |
199
+
180
200
  ## CLI Commands
181
201
 
182
202
  ```bash
@@ -463,7 +483,7 @@ src/
463
483
  crypto/ AES-256-GCM field encryption
464
484
  monitoring/ Prometheus metrics + /health endpoint
465
485
  security/ Content sanitization, integrity hashing, rate limiter
466
- tools/ One file per MCP tool (11 tools) + shared tool-utils
486
+ tools/ One file per MCP tool (22 tools) + shared tool-utils
467
487
  services/ LearningService + EmbeddingService + PurgeService + ConflictDetector + StalenessEngine
468
488
  storage/ StorageAdapter interface + SQLite impl
469
489
  models/ Zod schemas + TypeScript types