Skip to content

Commit 54f9d06

Browse files
committed
🤖 Complete rebrand from AI MemoryCore to OpenMemory in remaining files
* README.md: Updated section headers, descriptions, and example paths from MemoryCore/Project-AI-MemoryCore to OpenMemory * docker-compose.yml: Renamed service and container from memorycore to openmemory * main/current-session.md: Updated header subtitle from "AI MemoryCore" to "OpenMemory" * main/main-memory.md: Updated header subtitle from "AI MemoryCore" to "OpenMemory" * master-memory.md: Updated version footer from "AI MemoryCore v
1 parent b4f9c4e commit 54f9d06

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ OpenMemory is an open-source memory server that lets AI assistants remember fact
1414

1515
---
1616

17-
## Why MemoryCore?
17+
## Why OpenMemory?
1818

19-
Every AI conversation starts from scratch. **MemoryCore fixes that.**
19+
Every AI conversation starts from scratch. **OpenMemory fixes that.**
2020

2121
- 🔒 **Persistent memory** — facts, preferences, and context survive across sessions
2222
- 📓 **Automatic diary** — every `save` appends a timestamped diary entry
@@ -85,7 +85,7 @@ Add to your MCP config (e.g. `~/.cursor/mcp.json` or Claude Code settings):
8585
"memorycore": {
8686
"command": "node",
8787
"args": ["dist/src/mcp.js"],
88-
"cwd": "/path/to/Project-AI-MemoryCore"
88+
"cwd": "/path/to/OpenMemory"
8989
}
9090
}
9191
}

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
2-
memorycore:
2+
openmemory:
33
build: .
4-
container_name: memorycore
4+
container_name: openmemory
55
restart: unless-stopped
66
ports:
77
- "${OPENCLAW_PORT:-8787}:8787"

main/current-session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Session Memory - RAM
2-
*Temporary working memory with recap continuity for AI MemoryCore*
2+
*Temporary working memory with recap continuity for OpenMemory*
33

44
## Session Status
55
- **Current Session**: Active

main/main-memory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Unified Main Memory - `[AI_NAME]`
2-
*Canonical identity and relationship memory for AI MemoryCore*
2+
*Canonical identity and relationship memory for OpenMemory*
33

44
## Canonical Status
55
- Single source of truth: `main/main-memory.md`

master-memory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ Dual profile note:
4848
---
4949

5050
Status: Active
51-
Version: AI MemoryCore v1.0
51+
Version: OpenMemory v1.0

src/mcp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const store = new SQLiteStore(settings.databasePath);
1616
const service = new OpenClawService(store);
1717

1818
const server = new Server(
19-
{ name: "ai-memorycore", version: "1.0.0" },
19+
{ name: "openmemory", version: "1.0.0" },
2020
{ capabilities: { tools: {} } }
2121
);
2222

@@ -197,7 +197,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
197197
async function main(): Promise<void> {
198198
const transport = new StdioServerTransport();
199199
await server.connect(transport);
200-
console.error("AI MemoryCore MCP server running on stdio");
200+
console.error("OpenMemory MCP server running on stdio");
201201
}
202202

203203
void main();

0 commit comments

Comments
 (0)