@strvmarv/total-recall 0.1.0 → 0.1.5
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/.claude-plugin/plugin.json +2 -3
- package/.copilot-plugin/plugin.json +2 -2
- package/.cursor-plugin/plugin.json +2 -2
- package/README.md +18 -21
- package/dist/index.js +698 -178
- package/package.json +1 -1
- package/skills/status/SKILL.md +7 -0
package/README.md
CHANGED
|
@@ -119,27 +119,24 @@ All state lives in `~/.total-recall/db.sqlite`. The embedding model is cached at
|
|
|
119
119
|
|
|
120
120
|
## Commands
|
|
121
121
|
|
|
122
|
-
| Command | Description |
|
|
123
|
-
|
|
124
|
-
| `/memory status` | Dashboard overview |
|
|
125
|
-
| `/memory search <query>` | Semantic search across all tiers |
|
|
126
|
-
| `/memory ingest <path>` | Add files/dirs to knowledge base |
|
|
127
|
-
| `/memory forget <query>` | Find and delete entries |
|
|
128
|
-
| `/memory compact` | Force compaction with preview |
|
|
129
|
-
| `/memory inspect <id>` | Deep dive on single entry |
|
|
130
|
-
| `/memory promote <id>` | Move entry to higher tier |
|
|
131
|
-
| `/memory demote <id>` | Move entry to lower tier |
|
|
132
|
-
| `/memory export` | Export to portable format |
|
|
133
|
-
| `/memory import <file>` | Import from export file |
|
|
134
|
-
| `/memory eval` | Live performance metrics |
|
|
135
|
-
| `/memory eval --benchmark` | Run synthetic benchmark |
|
|
136
|
-
| `/memory
|
|
137
|
-
| `/memory
|
|
138
|
-
| `/memory
|
|
139
|
-
| `/memory
|
|
140
|
-
| `/memory config set <key> <value>` | Update config |
|
|
141
|
-
| `/memory history` | Show recent tier movements |
|
|
142
|
-
| `/memory lineage <id>` | Show compaction ancestry |
|
|
122
|
+
| Command | MCP Tool | Description |
|
|
123
|
+
|---|---|---|
|
|
124
|
+
| `/memory status` | `status` | Dashboard overview |
|
|
125
|
+
| `/memory search <query>` | `memory_search` | Semantic search across all tiers |
|
|
126
|
+
| `/memory ingest <path>` | `kb_ingest_file` / `kb_ingest_dir` | Add files/dirs to knowledge base |
|
|
127
|
+
| `/memory forget <query>` | `memory_search` + `memory_delete` | Find and delete entries |
|
|
128
|
+
| `/memory compact` | `compact_now` | Force compaction with preview |
|
|
129
|
+
| `/memory inspect <id>` | `memory_inspect` | Deep dive on single entry |
|
|
130
|
+
| `/memory promote <id>` | `memory_promote` | Move entry to higher tier |
|
|
131
|
+
| `/memory demote <id>` | `memory_demote` | Move entry to lower tier |
|
|
132
|
+
| `/memory export` | `memory_export` | Export to portable JSON format |
|
|
133
|
+
| `/memory import <file>` | `memory_import` | Import from export file |
|
|
134
|
+
| `/memory eval` | `eval_report` | Live performance metrics |
|
|
135
|
+
| `/memory eval --benchmark` | `eval_benchmark` | Run synthetic benchmark |
|
|
136
|
+
| `/memory config get <key>` | `config_get` | Read config value |
|
|
137
|
+
| `/memory config set <key> <value>` | `config_set` | Update config |
|
|
138
|
+
| `/memory history` | `memory_history` | Show recent tier movements |
|
|
139
|
+
| `/memory lineage <id>` | `memory_lineage` | Show compaction ancestry |
|
|
143
140
|
|
|
144
141
|
---
|
|
145
142
|
|