claude-mem 12.7.4 → 13.0.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.
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "id": "claude-mem",
3
3
  "name": "Claude-Mem (Persistent Memory)",
4
- "description": "Official OpenClaw plugin for Claude-Mem. Records observations from embedded runner sessions and streams them to messaging channels.",
4
+ "description": "OpenClaw plugin for Claude-Mem. Records observations from embedded runner sessions and streams them to messaging channels.",
5
5
  "kind": "memory",
6
- "version": "12.7.4",
6
+ "version": "13.0.0",
7
+ "license": "Apache-2.0",
7
8
  "author": "thedotmack",
8
- "homepage": "https://claude-mem.com",
9
+ "homepage": "https://claude-mem.ai",
9
10
  "skills": ["skills/make-plan", "skills/do"],
10
11
  "configSchema": {
11
12
  "type": "object",
@@ -2,6 +2,7 @@
2
2
  "name": "@openclaw/claude-mem",
3
3
  "version": "1.0.0",
4
4
  "private": true,
5
+ "license": "Apache-2.0",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
7
8
  "scripts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "12.7.4",
3
+ "version": "13.0.0",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "keywords": [
6
6
  "claude",
@@ -16,7 +16,7 @@
16
16
  "nodejs"
17
17
  ],
18
18
  "author": "Alex Newman",
19
- "license": "AGPL-3.0",
19
+ "license": "Apache-2.0",
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "https://github.com/thedotmack/claude-mem.git"
@@ -66,7 +66,7 @@
66
66
  "scripts": {
67
67
  "dev": "npm run build-and-sync",
68
68
  "build": "node scripts/sync-plugin-manifests.js && node scripts/build-hooks.js",
69
- "build-and-sync": "npm run build && npm run sync-marketplace && sleep 1 && (cd ~/.claude/plugins/marketplaces/thedotmack && npm run worker:restart) && npm run queue:clear",
69
+ "build-and-sync": "npm run build && npm run sync-marketplace && sleep 1 && (cd ~/.claude/plugins/marketplaces/thedotmack && npm run worker:restart)",
70
70
  "sync-marketplace": "node scripts/sync-marketplace.cjs",
71
71
  "sync-marketplace:force": "node scripts/sync-marketplace.cjs --force",
72
72
  "build:binaries": "node scripts/build-worker-binary.js",
@@ -81,7 +81,7 @@
81
81
  "worker:status": "bun plugin/scripts/worker-service.cjs status",
82
82
  "queue": "bun scripts/check-pending-queue.ts",
83
83
  "queue:process": "bun scripts/check-pending-queue.ts --process",
84
- "queue:clear": "bun scripts/clear-failed-queue.ts --all --force",
84
+ "queue:clear:pending": "bun scripts/clear-pending-queue.ts --all --force",
85
85
  "pr:status": "bun scripts/pr-babysit-status.ts",
86
86
  "claude-md:regenerate": "bun scripts/regenerate-claude-md.ts",
87
87
  "claude-md:dry-run": "bun scripts/regenerate-claude-md.ts --dry-run",
@@ -109,6 +109,7 @@
109
109
  "test:context": "bun test tests/context/",
110
110
  "test:infra": "bun test tests/infrastructure/",
111
111
  "test:server": "bun test tests/server/",
112
+ "e2e:server-beta:docker": "bash scripts/e2e-server-beta-docker.sh",
112
113
  "prepublishOnly": "npm run build",
113
114
  "release": "np",
114
115
  "release:patch": "np patch --no-cleanup",
@@ -123,13 +124,19 @@
123
124
  },
124
125
  "dependencies": {
125
126
  "@anthropic-ai/claude-agent-sdk": "^0.2.119",
127
+ "@better-auth/api-key": "^1.6.9",
126
128
  "@clack/prompts": "^1.2.0",
127
129
  "@modelcontextprotocol/sdk": "^1.29.0",
128
130
  "ansi-to-html": "^0.7.2",
131
+ "better-auth": "^1.6.9",
132
+ "bullmq": "^5.76.6",
133
+ "cors": "^2.8.6",
129
134
  "dompurify": "^3.4.1",
130
135
  "express": "^5.2.1",
131
136
  "glob": "^13.0.6",
132
137
  "handlebars": "^4.7.9",
138
+ "ioredis": "^5.10.1",
139
+ "pg": "^8.20.0",
133
140
  "picocolors": "^1.1.1",
134
141
  "react": "^19.2.5",
135
142
  "react-dom": "^19.2.5",
@@ -150,6 +157,7 @@
150
157
  "@types/dompurify": "^3.2.0",
151
158
  "@types/express": "^5.0.6",
152
159
  "@types/node": "^25.6.0",
160
+ "@types/pg": "^8.20.0",
153
161
  "@types/react": "^19.2.14",
154
162
  "@types/react-dom": "^19.2.3",
155
163
  "esbuild": "^0.28.0",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "12.7.4",
3
+ "version": "13.0.0",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "author": {
6
6
  "name": "Alex Newman"
7
7
  },
8
8
  "repository": "https://github.com/thedotmack/claude-mem",
9
- "license": "AGPL-3.0",
9
+ "license": "Apache-2.0",
10
10
  "keywords": [
11
11
  "claude",
12
12
  "claude-code",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "12.7.4",
3
+ "version": "13.0.0",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "author": {
6
6
  "name": "Alex Newman",
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "homepage": "https://github.com/thedotmack/claude-mem#readme",
10
10
  "repository": "https://github.com/thedotmack/claude-mem",
11
- "license": "AGPL-3.0",
11
+ "license": "Apache-2.0",
12
12
  "keywords": [
13
13
  "claude",
14
14
  "claude-code",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-plugin",
3
- "version": "12.7.4",
3
+ "version": "13.0.0",
4
4
  "private": true,
5
5
  "description": "Runtime dependencies for claude-mem bundled hooks",
6
6
  "type": "module",