claude-mem 12.6.5 → 12.7.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/.agents/plugins/marketplace.json +20 -0
- package/.codex-plugin/plugin.json +46 -0
- package/.mcp.json +12 -0
- package/dist/binaries/worker-service-v10.3.1-win-x64.exe +0 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +8 -0
- package/dist/npx-cli/index.js +179 -176
- package/dist/sdk/index.d.ts +109 -0
- package/dist/sdk/index.js +183 -0
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +7 -1
- package/plugin/.claude-plugin/plugin.json +14 -7
- package/plugin/.codex-plugin/plugin.json +46 -0
- package/plugin/.mcp.json +12 -0
- package/plugin/hooks/codex-hooks.json +74 -0
- package/plugin/package.json +3 -2
- package/plugin/scripts/mcp-server.cjs +99 -36
- package/plugin/scripts/version-check.js +16 -3
- package/plugin/scripts/worker-service.cjs +218 -209
- package/plugin/skills/babysit/SKILL.md +87 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-mem-local",
|
|
3
|
+
"interface": {
|
|
4
|
+
"displayName": "claude-mem (local)"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "claude-mem",
|
|
9
|
+
"source": {
|
|
10
|
+
"source": "local",
|
|
11
|
+
"path": "./"
|
|
12
|
+
},
|
|
13
|
+
"policy": {
|
|
14
|
+
"installation": "AVAILABLE",
|
|
15
|
+
"authentication": "ON_INSTALL"
|
|
16
|
+
},
|
|
17
|
+
"category": "Productivity"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-mem",
|
|
3
|
+
"version": "12.7.1",
|
|
4
|
+
"description": "Memory compression system for Claude Code - persist context across sessions",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Alex Newman",
|
|
7
|
+
"url": "https://github.com/thedotmack"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/thedotmack/claude-mem#readme",
|
|
10
|
+
"repository": "https://github.com/thedotmack/claude-mem",
|
|
11
|
+
"license": "AGPL-3.0",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"claude",
|
|
14
|
+
"claude-code",
|
|
15
|
+
"claude-agent-sdk",
|
|
16
|
+
"mcp",
|
|
17
|
+
"plugin",
|
|
18
|
+
"memory",
|
|
19
|
+
"compression",
|
|
20
|
+
"knowledge-graph",
|
|
21
|
+
"transcript",
|
|
22
|
+
"typescript",
|
|
23
|
+
"nodejs"
|
|
24
|
+
],
|
|
25
|
+
"skills": "./plugin/skills/",
|
|
26
|
+
"mcpServers": "./.mcp.json",
|
|
27
|
+
"hooks": "./plugin/hooks/codex-hooks.json",
|
|
28
|
+
"interface": {
|
|
29
|
+
"displayName": "claude-mem",
|
|
30
|
+
"shortDescription": "Persistent memory and context compression across coding sessions.",
|
|
31
|
+
"longDescription": "claude-mem captures coding-session activity, compresses it into reusable observations, and injects relevant context back into future Claude Code and Codex-compatible sessions.",
|
|
32
|
+
"developerName": "Alex Newman",
|
|
33
|
+
"category": "Productivity",
|
|
34
|
+
"capabilities": [
|
|
35
|
+
"Interactive",
|
|
36
|
+
"Write"
|
|
37
|
+
],
|
|
38
|
+
"websiteURL": "https://github.com/thedotmack/claude-mem",
|
|
39
|
+
"defaultPrompt": [
|
|
40
|
+
"Find what I already learned about this codebase before I start a new task.",
|
|
41
|
+
"Show recent observations related to the files I am editing right now.",
|
|
42
|
+
"Summarize the last session and inject the most relevant context into this one."
|
|
43
|
+
],
|
|
44
|
+
"brandColor": "#1F6FEB"
|
|
45
|
+
}
|
|
46
|
+
}
|
package/.mcp.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"mcp-search": {
|
|
4
|
+
"type": "stdio",
|
|
5
|
+
"command": "sh",
|
|
6
|
+
"args": [
|
|
7
|
+
"-c",
|
|
8
|
+
"_R=\"${CLAUDE_PLUGIN_ROOT:-$PLUGIN_ROOT}\"; [ -d \"$_R/plugin/scripts\" ] && _P=\"$_R/plugin\" || _P=\"$_R\"; exec node \"$_P/scripts/mcp-server.cjs\""
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
Binary file
|
package/dist/index.d.ts
ADDED