@bjlee2024/claude-mem 13.4.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.
Files changed (101) hide show
  1. package/.agents/plugins/marketplace.json +20 -0
  2. package/.codex-plugin/plugin.json +46 -0
  3. package/LICENSE +202 -0
  4. package/README.md +419 -0
  5. package/dist/npx-cli/index.js +10001 -0
  6. package/dist/opencode-plugin/index.js +67 -0
  7. package/openclaw/Dockerfile.e2e +46 -0
  8. package/openclaw/SKILL.md +462 -0
  9. package/openclaw/TESTING.md +279 -0
  10. package/openclaw/dist/index.js +15 -0
  11. package/openclaw/e2e-verify.sh +222 -0
  12. package/openclaw/install.sh +1653 -0
  13. package/openclaw/openclaw.plugin.json +98 -0
  14. package/openclaw/package.json +21 -0
  15. package/openclaw/src/index.test.ts +1124 -0
  16. package/openclaw/src/index.ts +1092 -0
  17. package/openclaw/test-e2e.sh +40 -0
  18. package/openclaw/test-install.sh +2086 -0
  19. package/openclaw/test-sse-consumer.js +98 -0
  20. package/openclaw/tsconfig.json +26 -0
  21. package/package.json +211 -0
  22. package/plugin/.claude-plugin/plugin.json +24 -0
  23. package/plugin/.codex-plugin/plugin.json +46 -0
  24. package/plugin/.mcp.json +12 -0
  25. package/plugin/hooks/bugfixes-2026-01-10.md +92 -0
  26. package/plugin/hooks/codex-hooks.json +74 -0
  27. package/plugin/hooks/hooks.json +87 -0
  28. package/plugin/modes/code--ar.json +24 -0
  29. package/plugin/modes/code--bn.json +24 -0
  30. package/plugin/modes/code--chill.json +8 -0
  31. package/plugin/modes/code--cs.json +24 -0
  32. package/plugin/modes/code--da.json +24 -0
  33. package/plugin/modes/code--de.json +24 -0
  34. package/plugin/modes/code--el.json +24 -0
  35. package/plugin/modes/code--es.json +24 -0
  36. package/plugin/modes/code--fi.json +24 -0
  37. package/plugin/modes/code--fr.json +24 -0
  38. package/plugin/modes/code--he.json +24 -0
  39. package/plugin/modes/code--hi.json +24 -0
  40. package/plugin/modes/code--hu.json +24 -0
  41. package/plugin/modes/code--id.json +24 -0
  42. package/plugin/modes/code--it.json +24 -0
  43. package/plugin/modes/code--ja.json +24 -0
  44. package/plugin/modes/code--ko.json +24 -0
  45. package/plugin/modes/code--nl.json +24 -0
  46. package/plugin/modes/code--no.json +24 -0
  47. package/plugin/modes/code--pl.json +24 -0
  48. package/plugin/modes/code--pt-br.json +24 -0
  49. package/plugin/modes/code--ro.json +24 -0
  50. package/plugin/modes/code--ru.json +24 -0
  51. package/plugin/modes/code--sv.json +24 -0
  52. package/plugin/modes/code--th.json +24 -0
  53. package/plugin/modes/code--tr.json +24 -0
  54. package/plugin/modes/code--uk.json +24 -0
  55. package/plugin/modes/code--ur.json +25 -0
  56. package/plugin/modes/code--vi.json +24 -0
  57. package/plugin/modes/code--zh.json +24 -0
  58. package/plugin/modes/code.json +139 -0
  59. package/plugin/modes/email-investigation.json +120 -0
  60. package/plugin/modes/law-study--chill.json +7 -0
  61. package/plugin/modes/law-study-CLAUDE.md +85 -0
  62. package/plugin/modes/law-study.json +120 -0
  63. package/plugin/modes/meme-tokens.json +125 -0
  64. package/plugin/package.json +46 -0
  65. package/plugin/scripts/bun-runner.js +216 -0
  66. package/plugin/scripts/context-generator.cjs +795 -0
  67. package/plugin/scripts/mcp-server.cjs +239 -0
  68. package/plugin/scripts/server-beta-service.cjs +9856 -0
  69. package/plugin/scripts/statusline-counts.js +40 -0
  70. package/plugin/scripts/version-check.js +69 -0
  71. package/plugin/scripts/worker-cli.js +19 -0
  72. package/plugin/scripts/worker-service.cjs +2368 -0
  73. package/plugin/scripts/worker-wrapper.cjs +2 -0
  74. package/plugin/skills/babysit/SKILL.md +87 -0
  75. package/plugin/skills/design-is/SKILL.md +312 -0
  76. package/plugin/skills/do/SKILL.md +45 -0
  77. package/plugin/skills/how-it-works/SKILL.md +22 -0
  78. package/plugin/skills/how-it-works/onboarding-explainer.md +17 -0
  79. package/plugin/skills/knowledge-agent/SKILL.md +80 -0
  80. package/plugin/skills/learn-codebase/SKILL.md +21 -0
  81. package/plugin/skills/make-plan/SKILL.md +67 -0
  82. package/plugin/skills/mem-search/SKILL.md +131 -0
  83. package/plugin/skills/oh-my-issues/SKILL.md +226 -0
  84. package/plugin/skills/pathfinder/SKILL.md +111 -0
  85. package/plugin/skills/smart-explore/SKILL.md +190 -0
  86. package/plugin/skills/timeline-report/SKILL.md +211 -0
  87. package/plugin/skills/version-bump/SKILL.md +68 -0
  88. package/plugin/skills/version-bump/scripts/generate_changelog.js +34 -0
  89. package/plugin/skills/weekly-digests/SKILL.md +262 -0
  90. package/plugin/skills/wowerpoint/SKILL.md +205 -0
  91. package/plugin/ui/assets/fonts/monaspace-radon-var.woff +0 -0
  92. package/plugin/ui/assets/fonts/monaspace-radon-var.woff2 +0 -0
  93. package/plugin/ui/claude-mem-logo-for-dark-mode.webp +0 -0
  94. package/plugin/ui/claude-mem-logo-stylized.png +0 -0
  95. package/plugin/ui/claude-mem-logomark.webp +0 -0
  96. package/plugin/ui/icon-thick-completed.svg +8 -0
  97. package/plugin/ui/icon-thick-investigated.svg +8 -0
  98. package/plugin/ui/icon-thick-learned.svg +12 -0
  99. package/plugin/ui/icon-thick-next-steps.svg +8 -0
  100. package/plugin/ui/viewer-bundle.js +65 -0
  101. package/plugin/ui/viewer.html +3145 -0
@@ -0,0 +1,98 @@
1
+ {
2
+ "id": "claude-mem",
3
+ "name": "Claude-Mem (Persistent Memory)",
4
+ "description": "OpenClaw plugin for Claude-Mem. Records observations from embedded runner sessions and streams them to messaging channels.",
5
+ "kind": "memory",
6
+ "version": "13.4.0",
7
+ "license": "Apache-2.0",
8
+ "author": "bjlee2024",
9
+ "homepage": "https://claude-mem.ai",
10
+ "skills": ["skills/make-plan", "skills/do"],
11
+ "configSchema": {
12
+ "type": "object",
13
+ "additionalProperties": false,
14
+ "properties": {
15
+ "syncMemoryFile": {
16
+ "type": "boolean",
17
+ "default": true,
18
+ "description": "Inject observation context into the agent system prompt via before_prompt_build hook. When true, agents receive cross-session context without MEMORY.md being overwritten."
19
+ },
20
+ "syncMemoryFileExclude": {
21
+ "type": "array",
22
+ "items": { "type": "string" },
23
+ "default": [],
24
+ "description": "Agent IDs excluded from automatic context injection (observations are still recorded, only prompt injection is skipped)"
25
+ },
26
+ "workerPort": {
27
+ "type": "number",
28
+ "default": 37777,
29
+ "description": "Port for Claude-Mem worker service"
30
+ },
31
+ "workerHost": {
32
+ "type": "string",
33
+ "default": "127.0.0.1",
34
+ "description": "Hostname for Claude-Mem worker service. Set to host.docker.internal when the gateway runs in Docker and the worker runs on the host."
35
+ },
36
+ "project": {
37
+ "type": "string",
38
+ "default": "openclaw",
39
+ "description": "Project name for scoping observations in the memory database"
40
+ },
41
+ "observationFeed": {
42
+ "type": "object",
43
+ "description": "Live observation feed — streams observations to any OpenClaw channel in real-time",
44
+ "properties": {
45
+ "enabled": {
46
+ "type": "boolean",
47
+ "default": false,
48
+ "description": "Enable live observation feed to messaging channels"
49
+ },
50
+ "channel": {
51
+ "type": "string",
52
+ "description": "Channel type: telegram, discord, signal, slack, whatsapp, line"
53
+ },
54
+ "to": {
55
+ "type": "string",
56
+ "description": "Target chat/user ID to send observations to"
57
+ },
58
+ "botToken": {
59
+ "type": "string",
60
+ "description": "Optional dedicated Telegram bot token for the feed (bypasses gateway channel)"
61
+ },
62
+ "emojis": {
63
+ "type": "object",
64
+ "description": "Emoji personalization for the observation feed. Each agent gets a unique emoji automatically — customize here to override.",
65
+ "properties": {
66
+ "primary": {
67
+ "type": "string",
68
+ "default": "🦞",
69
+ "description": "Emoji for the main OpenClaw gateway (project='openclaw')"
70
+ },
71
+ "claudeCode": {
72
+ "type": "string",
73
+ "default": "⌨️",
74
+ "description": "Emoji for Claude Code sessions (non-OpenClaw)"
75
+ },
76
+ "claudeCodeLabel": {
77
+ "type": "string",
78
+ "default": "Claude Code Session",
79
+ "description": "Display label prefix for Claude Code sessions in the feed (project identifier is appended automatically)"
80
+ },
81
+ "default": {
82
+ "type": "string",
83
+ "default": "🦀",
84
+ "description": "Fallback emoji when no match is found"
85
+ },
86
+ "agents": {
87
+ "type": "object",
88
+ "default": {},
89
+ "description": "Pin specific emojis to agent IDs (e.g. {\"devops\": \"🔧\"}). Agents not listed here get auto-assigned emojis.",
90
+ "additionalProperties": { "type": "string" }
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@openclaw/claude-mem",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "test": "tsc && node --test dist/index.test.js"
11
+ },
12
+ "devDependencies": {
13
+ "@types/node": "^25.6.2",
14
+ "typescript": "^6.0.3"
15
+ },
16
+ "openclaw": {
17
+ "extensions": [
18
+ "./dist/index.js"
19
+ ]
20
+ }
21
+ }