Skip to content

Commit 2a70eda

Browse files
chore: Remove MemDocs references ahead of repo deprecation
MemDocs functionality has been fully merged into Empathy Framework. - Remove MemDocs link from footer - Update SEO metadata to remove MemDocs references - Update blog posts to reflect built-in memory functionality - Keep internal merger docs as historical reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c521efb commit 2a70eda

4 files changed

Lines changed: 17 additions & 30 deletions

File tree

website/components/Footer.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,9 @@ export default function Footer() {
5252
href="/framework"
5353
className="text-sm text-[var(--text-secondary)] hover:text-[var(--primary)] transition-colors"
5454
>
55-
Empathy
55+
Empathy Framework
5656
</Link>
5757
</li>
58-
<li>
59-
<a
60-
href="https://github.com/Smart-AI-Memory/MemDocs"
61-
target="_blank"
62-
rel="noopener noreferrer"
63-
className="text-sm text-[var(--text-secondary)] hover:text-[var(--primary)] transition-colors"
64-
>
65-
MemDocs
66-
</a>
67-
</li>
6858
<li>
6959
<Link
7060
href="/book"

website/content/blog/memory-architecture.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ So we built something different.
4141

4242
Empathy uses a three-tier memory system, each optimized for different use cases:
4343

44-
### Long-Term Memory (MemDocs)
44+
### Long-Term Memory
4545

46-
**What it is:** Git-based persistent storage for patterns, decisions, and context that should survive across sessions, projects, and even team members.
46+
**What it is:** Git-based persistent storage for patterns, decisions, and context that should survive across sessions, projects, and even team members. This functionality is built directly into the Empathy Framework.
4747

4848
**Where it lives:** Your repository. Your infrastructure. Version-controlled alongside your code.
4949

@@ -61,11 +61,11 @@ Empathy uses a three-tier memory system, each optimized for different use cases:
6161
- Cross-session context ("Remember we're targeting Python 3.10+")
6262

6363
```python
64-
from empathy_llm_toolkit import MemDocs
64+
from empathy_os.memory import LongTermMemory
6565

6666
# Store a pattern - you control where it lives
67-
memdocs = MemDocs(storage_path="./project-memory")
68-
memdocs.store(
67+
memory = LongTermMemory(storage_path="./project-memory")
68+
memory.store(
6969
"architecture_decision",
7070
content="We chose PostgreSQL over MongoDB for ACID compliance",
7171
classification="INTERNAL"
@@ -163,7 +163,7 @@ Here's how the tiers work together:
163163
164164
┌─────────────────────────────────────────────────────┐
165165
│ Long-Term Memory │
166-
│ (MemDocs, git-based, encrypted) │
166+
│ (Git-based, encrypted)
167167
│ │
168168
│ Persistent patterns, architecture decisions, │
169169
│ team knowledge, compliance documentation │
@@ -197,7 +197,7 @@ clean_text, detections = scrubber.scrub(
197197
Install Empathy with memory support:
198198

199199
```bash
200-
pip install empathy[full]
200+
pip install empathy-framework[full]
201201
```
202202

203203
Set up Redis for short-term memory:

website/content/blog/welcome.mdx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: "Welcome to Smart AI Memory: Building the Future of AI-Human Collaboration"
33
date: "2025-01-10"
44
author: "Smart AI Memory Team"
5-
excerpt: "Introducing Empathy and MemDocs - production-ready tools for building Level 4 Anticipatory Intelligence systems."
5+
excerpt: "Introducing the Empathy Framework - production-ready tools for building Level 4 Anticipatory Intelligence systems with built-in memory."
66
tags: ["announcement", "empathy-framework", "ai", "anticipatory-intelligence"]
77
published: true
88
---
99

1010
# Welcome to Smart AI Memory
1111

12-
We're excited to introduce **Smart AI Memory** and our flagship products: **Empathy** and **MemDocs**. Our mission is to transform how humans and AI collaborate by building systems that don't just respond to requests—they anticipate needs and predict problems before they happen.
12+
We're excited to introduce **Smart AI Memory** and the **Empathy Framework**. Our mission is to transform how humans and AI collaborate by building systems that don't just respond to requests—they anticipate needs and predict problems before they happen.
1313

1414
## The Problem with Current AI
1515

@@ -56,24 +56,23 @@ Teams using Empathy report:
5656
- **Higher quality code** with built-in security scanning
5757
- **Better collaboration** between AI and human developers
5858

59-
## MemDocs: Project-Specific Memory
59+
## Built-In Project Memory
6060

61-
**MemDocs** complements Empathy by providing persistent project-specific memory. It enables AI to:
61+
The Empathy Framework includes **built-in persistent memory** that enables AI to:
6262

6363
- Remember context across sessions
6464
- Learn from historical patterns
6565
- Maintain continuity in collaboration
6666
- Evolve with your projects
6767

68-
Together, they create **Level 5 Transformative Intelligence**.
68+
This creates **Level 5 Transformative Intelligence** out of the box.
6969

7070
## The Transformative Development Stack
7171

7272
Our complete stack includes:
7373
- **Claude Code** - The AI development environment
7474
- **VS Code** - Your familiar editor
75-
- **MemDocs** - Persistent memory
76-
- **Empathy** - Anticipatory intelligence
75+
- **Empathy Framework** - Anticipatory intelligence with built-in memory
7776

7877
This combination delivers unprecedented development velocity while maintaining code quality.
7978

@@ -97,7 +96,7 @@ python -m empathy_os.cli wizard security
9796

9897
## What's Next?
9998

100-
We're working on additional wizards and enhanced MemDocs and Empathy integrations.
99+
We're working on additional wizards and enhanced memory integrations.
101100

102101
Stay tuned for more blog posts covering case studies, best practices, and technical deep dives.
103102

website/lib/metadata.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface SEOConfig {
1616
const defaultMetadata = {
1717
siteName: 'Smart AI Memory',
1818
title: 'Smart AI Memory - Building the Future of AI-Human Collaboration',
19-
description: 'Production-ready frameworks for building Level 4 Anticipatory AI systems. Empathy, MemDocs, and tools that enable AI to predict problems before they happen.',
19+
description: 'Production-ready framework for building Level 4 Anticipatory AI systems. Empathy Framework enables AI to predict problems before they happen.',
2020
url: 'https://smartaimemory.com',
2121
image: '/og-image.png',
2222
twitterHandle: '@smartaimemory',
@@ -25,8 +25,7 @@ const defaultMetadata = {
2525
'Anticipatory Intelligence',
2626
'AI-Human Collaboration',
2727
'Level 4 AI',
28-
'Empathy',
29-
'MemDocs',
28+
'Empathy Framework',
3029
'Claude Code',
3130
'AI Development',
3231
'Machine Learning',
@@ -134,7 +133,6 @@ export function generateStructuredData(type: 'organization' | 'product' | 'artic
134133
sameAs: [
135134
'https://github.com/Smart-AI-Memory',
136135
'https://github.com/Smart-AI-Memory/empathy',
137-
'https://github.com/Smart-AI-Memory/MemDocs',
138136
],
139137
contactPoint: {
140138
'@type': 'ContactPoint',

0 commit comments

Comments
 (0)