claude-mem 10.4.4 → 10.5.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/package.json +11 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/hooks/hooks.json +7 -30
- package/plugin/package.json +11 -2
- package/plugin/scripts/CLAUDE.md +2 -0
- package/plugin/scripts/mcp-server.cjs +88 -24
- package/plugin/scripts/worker-service.cjs +2 -2
- package/plugin/skills/smart-explore/SKILL.md +141 -0
- package/plugin/scripts/setup.sh +0 -228
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-mem",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0",
|
|
4
4
|
"description": "Memory compression system for Claude Code - persist context across sessions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -117,6 +117,16 @@
|
|
|
117
117
|
"@types/react-dom": "^18.3.0",
|
|
118
118
|
"esbuild": "^0.27.2",
|
|
119
119
|
"np": "^11.0.2",
|
|
120
|
+
"tree-sitter-c": "^0.24.1",
|
|
121
|
+
"tree-sitter-cli": "^0.26.5",
|
|
122
|
+
"tree-sitter-cpp": "^0.23.4",
|
|
123
|
+
"tree-sitter-go": "^0.25.0",
|
|
124
|
+
"tree-sitter-java": "^0.23.5",
|
|
125
|
+
"tree-sitter-javascript": "^0.25.0",
|
|
126
|
+
"tree-sitter-python": "^0.25.0",
|
|
127
|
+
"tree-sitter-ruby": "^0.23.1",
|
|
128
|
+
"tree-sitter-rust": "^0.24.0",
|
|
129
|
+
"tree-sitter-typescript": "^0.23.2",
|
|
120
130
|
"tsx": "^4.20.6",
|
|
121
131
|
"typescript": "^5.3.0"
|
|
122
132
|
}
|
package/plugin/hooks/hooks.json
CHANGED
|
@@ -1,40 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Claude-mem memory system hooks",
|
|
3
3
|
"hooks": {
|
|
4
|
-
"Setup": [
|
|
5
|
-
{
|
|
6
|
-
"matcher": "*",
|
|
7
|
-
"hooks": [
|
|
8
|
-
{
|
|
9
|
-
"type": "command",
|
|
10
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT}\"; [ -z \"$_R\" ] && _R=\"$HOME/.claude/plugins/marketplaces/thedotmack/plugin\"; \"$_R/scripts/setup.sh\"",
|
|
11
|
-
"timeout": 300
|
|
12
|
-
}
|
|
13
|
-
]
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
4
|
"SessionStart": [
|
|
17
5
|
{
|
|
18
6
|
"matcher": "startup|clear|compact",
|
|
19
7
|
"hooks": [
|
|
20
8
|
{
|
|
21
9
|
"type": "command",
|
|
22
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
10
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/smart-install.js\"",
|
|
23
11
|
"timeout": 300
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"matcher": "startup|clear|compact",
|
|
29
|
-
"hooks": [
|
|
30
|
-
{
|
|
31
|
-
"type": "command",
|
|
32
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT}\"; [ -z \"$_R\" ] && _R=\"$HOME/.claude/plugins/marketplaces/thedotmack/plugin\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" start",
|
|
33
|
-
"timeout": 60
|
|
34
12
|
},
|
|
35
13
|
{
|
|
36
14
|
"type": "command",
|
|
37
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
15
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" hook claude-code context",
|
|
38
16
|
"timeout": 60
|
|
39
17
|
}
|
|
40
18
|
]
|
|
@@ -45,7 +23,7 @@
|
|
|
45
23
|
"hooks": [
|
|
46
24
|
{
|
|
47
25
|
"type": "command",
|
|
48
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
26
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" hook claude-code session-init",
|
|
49
27
|
"timeout": 60
|
|
50
28
|
}
|
|
51
29
|
]
|
|
@@ -53,11 +31,10 @@
|
|
|
53
31
|
],
|
|
54
32
|
"PostToolUse": [
|
|
55
33
|
{
|
|
56
|
-
"matcher": "*",
|
|
57
34
|
"hooks": [
|
|
58
35
|
{
|
|
59
36
|
"type": "command",
|
|
60
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
37
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" hook claude-code observation",
|
|
61
38
|
"timeout": 120
|
|
62
39
|
}
|
|
63
40
|
]
|
|
@@ -68,13 +45,13 @@
|
|
|
68
45
|
"hooks": [
|
|
69
46
|
{
|
|
70
47
|
"type": "command",
|
|
71
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
48
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" hook claude-code summarize",
|
|
72
49
|
"timeout": 120
|
|
73
50
|
},
|
|
74
51
|
{
|
|
75
52
|
"type": "command",
|
|
76
|
-
"command": "_R=\"${CLAUDE_PLUGIN_ROOT
|
|
77
|
-
"timeout":
|
|
53
|
+
"command": "_R=\"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/thedotmack/plugin}\"; node \"$_R/scripts/bun-runner.js\" \"$_R/scripts/worker-service.cjs\" hook claude-code session-complete",
|
|
54
|
+
"timeout": 120
|
|
78
55
|
}
|
|
79
56
|
]
|
|
80
57
|
}
|
package/plugin/package.json
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-mem-plugin",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Runtime dependencies for claude-mem bundled hooks",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"
|
|
8
|
+
"tree-sitter-cli": "^0.26.5",
|
|
9
|
+
"tree-sitter-c": "^0.24.1",
|
|
10
|
+
"tree-sitter-cpp": "^0.23.4",
|
|
11
|
+
"tree-sitter-go": "^0.25.0",
|
|
12
|
+
"tree-sitter-java": "^0.23.5",
|
|
13
|
+
"tree-sitter-javascript": "^0.25.0",
|
|
14
|
+
"tree-sitter-python": "^0.25.0",
|
|
15
|
+
"tree-sitter-ruby": "^0.23.1",
|
|
16
|
+
"tree-sitter-rust": "^0.24.0",
|
|
17
|
+
"tree-sitter-typescript": "^0.23.2"
|
|
9
18
|
},
|
|
10
19
|
"engines": {
|
|
11
20
|
"node": ">=18.0.0",
|