@strvmarv/total-recall 0.1.0 → 0.2.0
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 +12 -11
- package/.copilot-plugin/plugin.json +2 -2
- package/.cursor-plugin/plugin.json +2 -2
- package/.mcp.json +8 -0
- package/README.md +18 -21
- package/bin/total-recall.sh +70 -0
- package/dist/defaults.toml +28 -0
- package/dist/index.js +723 -183
- package/package.json +4 -1
- package/skills/status/SKILL.md +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strvmarv/total-recall",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Multi-tiered memory and knowledge base plugin for TUI coding assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist/",
|
|
20
|
+
"bin/",
|
|
21
|
+
"models/",
|
|
20
22
|
"skills/",
|
|
21
23
|
"agents/",
|
|
22
24
|
"hooks/",
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
".copilot-plugin/",
|
|
27
29
|
".cursor-plugin/",
|
|
28
30
|
".opencode/",
|
|
31
|
+
".mcp.json",
|
|
29
32
|
"README.md",
|
|
30
33
|
"LICENSE",
|
|
31
34
|
"CONTRIBUTING.md"
|
package/skills/status/SKILL.md
CHANGED
|
@@ -30,3 +30,10 @@ Call `eval_benchmark`. Show synthetic benchmark results with pass/fail threshold
|
|
|
30
30
|
## For /memory eval --compare <name>
|
|
31
31
|
|
|
32
32
|
Call `eval_report` with the named config snapshot for comparison. Show side-by-side metrics with deltas and trend arrows.
|
|
33
|
+
|
|
34
|
+
## For /memory compact
|
|
35
|
+
|
|
36
|
+
Call `compact_now` to force immediate hot tier compaction. Show results:
|
|
37
|
+
- How many entries were carried forward
|
|
38
|
+
- How many were promoted to warm
|
|
39
|
+
- How many were discarded
|