Skip to content

Commit b4f9c4e

Browse files
committed
Rebrand project from AI MemoryCore to OpenMemory across all documentation
* CONTRIBUTING.md: Updated project name and repository URLs from Kiyoraka/Project-AI-MemoryCore to naimkatiman/OpenMemory * README.md: Rebranded header, description, clone URLs, file structure path, and added naimkatiman as contributor * daily-diary/current/2026-03-01.md: Updated session summary to reference OpenMemory instead of Project-AI-MemoryCore * package.json: Changed package name to "openmemory" and updated repository
1 parent 3ebc1c8 commit b4f9c4e

5 files changed

Lines changed: 17 additions & 16 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Contributing to AI MemoryCore
1+
# Contributing to OpenMemory
22

33
Thanks for your interest! Here's how to contribute.
44

55
## Quick Setup
66

77
```bash
8-
git clone https://github.com/Kiyoraka/Project-AI-MemoryCore.git
9-
cd Project-AI-MemoryCore
8+
git clone https://github.com/naimkatiman/OpenMemory.git
9+
cd OpenMemory
1010
npm install
1111
npm run dev
1212
```

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<div align="center">
22

3-
# 🧠 AI MemoryCore
3+
# 🧠 OpenMemory
44

55
**Give your AI assistant persistent memory that survives across sessions.**
66

7-
AI MemoryCore is an open-source memory server that lets AI assistants remember facts, keep diaries, and maintain context across conversations — backed by SQLite and exposed via REST API + MCP.
7+
OpenMemory is an open-source memory server that lets AI assistants remember facts, keep diaries, and maintain context across conversations — backed by SQLite and exposed via REST API + MCP.
88

99
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
1010
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue?logo=typescript)](https://www.typescriptlang.org/)
@@ -30,8 +30,8 @@ Every AI conversation starts from scratch. **MemoryCore fixes that.**
3030

3131
```bash
3232
# Clone and install
33-
git clone https://github.com/Kiyoraka/Project-AI-MemoryCore.git
34-
cd Project-AI-MemoryCore
33+
git clone https://github.com/naimkatiman/OpenMemory.git
34+
cd OpenMemory
3535
npm install
3636

3737
# Start the server
@@ -124,7 +124,7 @@ Available MCP tools:
124124
### File Structure
125125

126126
```text
127-
Project-AI-MemoryCore/
127+
OpenMemory/
128128
├── src/
129129
│ ├── server.ts # Fastify server bootstrap
130130
│ ├── api.ts # REST route definitions
@@ -221,6 +221,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. Issues and PRs welcome!
221221
## Contributors
222222

223223
- **[Kiyoraka](https://github.com/Kiyoraka)** (Afif Maahi) - Project creator and lead maintainer
224+
- **[naimkatiman](https://github.com/naimkatiman)** (Naim Katiman) - Contributor
224225

225226
## License
226227

daily-diary/current/2026-03-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Session Entry
44

55
**Profile**: Kiyoraka
6-
**Summary**: Architecture analysis and setup fixes applied to Project-AI-MemoryCore. Corrected README name drift (Zaky/Fatin → Kiyoraka/Vanguard), added .env.example, graceful shutdown to server, filled in Working Patterns placeholders, and enabled Fastify logger for dev.
6+
**Summary**: Architecture analysis and setup fixes applied to OpenMemory. Corrected README name drift (Zaky/Fatin → Kiyoraka/Vanguard), added .env.example, graceful shutdown to server, filled in Working Patterns placeholders, and enabled Fastify logger for dev.
77

88
## Details
99

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ai-memorycore",
2+
"name": "openmemory",
33
"version": "1.0.0",
44
"description": "Persistent memory server for AI assistants — SQLite-backed REST API, CLI, and MCP server.",
55
"type": "commonjs",
@@ -17,7 +17,7 @@
1717
],
1818
"repository": {
1919
"type": "git",
20-
"url": "https://github.com/Kiyoraka/Project-AI-MemoryCore.git"
20+
"url": "https://github.com/naimkatiman/OpenMemory.git"
2121
},
2222
"license": "MIT",
2323
"scripts": {

setup-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Setup Guide
2-
*Quick setup for AI MemoryCore*
2+
*Quick setup for OpenMemory*
33

44
## Step 1: Install and Start
55

66
```bash
7-
git clone https://github.com/Kiyoraka/Project-AI-MemoryCore.git
8-
cd Project-AI-MemoryCore
7+
git clone https://github.com/naimkatiman/OpenMemory.git
8+
cd OpenMemory
99
npm install
1010
cp .env.example .env
1111
npm run dev
@@ -55,7 +55,7 @@ Add to your MCP config:
5555
"memorycore": {
5656
"command": "node",
5757
"args": ["dist/src/mcp.js"],
58-
"cwd": "/path/to/Project-AI-MemoryCore"
58+
"cwd": "/path/to/OpenMemory"
5959
}
6060
}
6161
}
@@ -69,4 +69,4 @@ Ensure these directories exist:
6969

7070
---
7171

72-
Version: AI MemoryCore v1.0
72+
Version: OpenMemory v1.0

0 commit comments

Comments
 (0)