@hmanlab/memo 0.5.0 → 0.5.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 +44 -2
- package/dist/cli.js +36902 -351
- package/dist/memo-mcp-server.js +38242 -1379
- package/package.json +23 -2
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmanlab/memo",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Local-first MCP server for persistent, persona-aware memory across projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"bin",
|
|
8
8
|
"claude",
|
|
9
9
|
"dist",
|
|
10
|
+
"node_modules",
|
|
10
11
|
"README.md"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
@@ -19,19 +20,23 @@
|
|
|
19
20
|
"hmanlab-memory": "./bin/hmanlab-memory.js"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
23
|
+
"@huggingface/transformers": "^4.2.0",
|
|
22
24
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
23
25
|
"adm-zip": "^0.5.16",
|
|
24
26
|
"commander": "^12.1.0",
|
|
27
|
+
"optional": "^0.1.4",
|
|
25
28
|
"yaml": "^2.6.0",
|
|
26
29
|
"zod": "^3.25.76"
|
|
27
30
|
},
|
|
28
31
|
"devDependencies": {
|
|
29
32
|
"@types/bun": "^1.3.14",
|
|
33
|
+
"sharp": "0.34.5",
|
|
30
34
|
"typescript": "^5.7.2"
|
|
31
35
|
},
|
|
32
36
|
"hl-plugins": {
|
|
33
37
|
"defaultInstall": false,
|
|
34
38
|
"claudeMcp": "./dist/memo-mcp-server.js",
|
|
39
|
+
"cli": "./dist/cli.js",
|
|
35
40
|
"claudeSkill": "./claude/skill/memo/SKILL.md",
|
|
36
41
|
"requires": [
|
|
37
42
|
{
|
|
@@ -41,6 +46,22 @@
|
|
|
41
46
|
"install": "curl -fsSL https://bun.sh/install | bash"
|
|
42
47
|
}
|
|
43
48
|
],
|
|
44
|
-
"postInstall": []
|
|
49
|
+
"postInstall": [],
|
|
50
|
+
"embedder": {
|
|
51
|
+
"name": "MiniLM-L6-v2",
|
|
52
|
+
"sizeMb": 25,
|
|
53
|
+
"purpose": "powers semantic search so paraphrase and typo queries still hit the right memory",
|
|
54
|
+
"tradeoff": {
|
|
55
|
+
"with": "73.3% recall@5",
|
|
56
|
+
"without": "paraphrase queries drop to ~30%",
|
|
57
|
+
"note": "30-seed eval across coding, glossary, and preferences"
|
|
58
|
+
},
|
|
59
|
+
"preInstall": [
|
|
60
|
+
"embedder install"
|
|
61
|
+
],
|
|
62
|
+
"disableCommand": [
|
|
63
|
+
"embedder disable"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
45
66
|
}
|
|
46
67
|
}
|