engrams 0.2.0 → 0.2.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 +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,11 +26,11 @@ That's it. Your AI agent now has persistent memory.
|
|
|
26
26
|
|
|
27
27
|
## What You Get
|
|
28
28
|
|
|
29
|
-
Engrams provides
|
|
29
|
+
Engrams provides 20 MCP tools:
|
|
30
30
|
|
|
31
31
|
| Tool | Description |
|
|
32
32
|
|------|-------------|
|
|
33
|
-
| `memory_write` | Create a new memory with
|
|
33
|
+
| `memory_write` | Create a new memory with dedup detection and resolution |
|
|
34
34
|
| `memory_search` | Full-text search across all memories (FTS5) |
|
|
35
35
|
| `memory_update` | Modify a memory's content, detail, or domain |
|
|
36
36
|
| `memory_remove` | Soft-delete a memory |
|
|
@@ -39,9 +39,17 @@ Engrams provides 12 MCP tools:
|
|
|
39
39
|
| `memory_flag_mistake` | Flag a memory as incorrect (degrades confidence) |
|
|
40
40
|
| `memory_connect` | Create typed relationships between memories |
|
|
41
41
|
| `memory_get_connections` | View a memory's relationship graph |
|
|
42
|
-
| `
|
|
42
|
+
| `memory_split` | Break compound memories into atomic units |
|
|
43
|
+
| `memory_scrub` | Detect and redact PII or secrets from memory content |
|
|
43
44
|
| `memory_list` | Browse memories by domain, sorted by confidence or recency |
|
|
45
|
+
| `memory_list_domains` | List all memory domains with counts |
|
|
46
|
+
| `memory_list_entities` | List extracted entities grouped by type |
|
|
47
|
+
| `memory_classify` | Batch-classify untyped memories using entity extraction |
|
|
44
48
|
| `memory_set_permissions` | Configure per-agent read/write access |
|
|
49
|
+
| `memory_configure` | Configure LLM provider for entity extraction and corrections |
|
|
50
|
+
| `memory_onboard` | Get a personalized onboarding plan to seed your memory |
|
|
51
|
+
| `memory_import` | Import from Claude, ChatGPT, Cursor, gitconfig, or plaintext |
|
|
52
|
+
| `memory_sync` | Sync memories with cloud (Pro tier) |
|
|
45
53
|
|
|
46
54
|
## MCP Config Examples
|
|
47
55
|
|