Skip to content

Commit d3534ad

Browse files
GeneAIclaude
andcommitted
refactor: Update repository name from empathy to empathy-framework
Updated all GitHub URLs to reflect the repository name change from "empathy" to "empathy-framework" for consistency with the PyPI package name. Changes: - Updated pyproject.toml URLs (Repository, Documentation, Issues, Discussions, Changelog) - Updated README.md badges and all clone instructions - Fixed directory name references (cd empathy → cd empathy-framework) - Updated codecov badge URL - Updated all website pages (page.tsx, Footer, Navigation, blog) - Updated documentation files (GOVERNANCE, QUICKSTART, etc.) - Updated local git remote origin URL Repository: https://github.com/Smart-AI-Memory/empathy-framework PyPI Package: https://pypi.org/project/empathy-framework/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent cd78d2a commit d3534ad

File tree

22 files changed

+58
-58
lines changed

22 files changed

+58
-58
lines changed

GOVERNANCE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The **Empathy Framework** is an open-source project providing a five-level matur
88

99
- **License**: Fair Source 0.9 (dual licensing: free for individuals/education/small teams, commercial for larger organizations)
1010
- **Organization**: Deep Study AI, LLC
11-
- **Repository**: https://github.com/Smart-AI-Memory/empathy
12-
- **Documentation**: https://github.com/Smart-AI-Memory/empathy/tree/main/docs
11+
- **Repository**: https://github.com/Smart-AI-Memory/empathy-framework
12+
- **Documentation**: https://github.com/Smart-AI-Memory/empathy-framework/tree/main/docs
1313

1414
## Decision-Making Structure
1515

PUBLISHING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The GitHub Actions workflow ([`.github/workflows/release.yml`](.github/workflows
149149

150150
### Setting up PyPI Token in GitHub
151151

152-
1. Go to: `https://github.com/Smart-AI-Memory/empathy/settings/secrets/actions`
152+
1. Go to: `https://github.com/Smart-AI-Memory/empathy-framework/settings/secrets/actions`
153153
2. Click "New repository secret"
154154
3. Name: `PYPI_API_TOKEN`
155155
4. Value: Your PyPI API token
@@ -189,7 +189,7 @@ pip install empathy[agents] # LangChain agents
189189
pip install empathy[all] # Everything + dev tools
190190

191191
# Development
192-
git clone https://github.com/Smart-AI-Memory/empathy.git
192+
git clone https://github.com/Smart-AI-Memory/empathy-framework.git
193193
cd empathy
194194
pip install -e .[dev]
195195
```

QUICKSTART.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ python examples/performance_demo.py
455455

456456
- **Community Support** (Free tier): GitHub Issues
457457
- **Email Support** (Commercial license): [email protected]
458-
- **Documentation**: https://github.com/Smart-AI-Memory/empathy
458+
- **Documentation**: https://github.com/Smart-AI-Memory/empathy-framework
459459

460460
---
461461

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[![License](https://img.shields.io/badge/License-Fair%20Source%200.9-blue.svg)](LICENSE)
66
[![PyPI version](https://img.shields.io/pypi/v/empathy-framework.svg)](https://pypi.org/project/empathy-framework/)
77
[![Python 3.10+](https://img.shields.io/pypi/pyversions/empathy-framework.svg)](https://www.python.org/downloads/)
8-
[![Tests](https://github.com/Smart-AI-Memory/empathy/actions/workflows/tests.yml/badge.svg)](https://github.com/Smart-AI-Memory/empathy/actions/workflows/tests.yml)
9-
[![codecov](https://codecov.io/gh/Smart-AI-Memory/empathy/branch/main/graph/badge.svg)](https://codecov.io/gh/Smart-AI-Memory/empathy)
10-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy)
8+
[![Tests](https://github.com/Smart-AI-Memory/empathy-framework/actions/workflows/tests.yml/badge.svg)](https://github.com/Smart-AI-Memory/empathy-framework/actions/workflows/tests.yml)
9+
[![codecov](https://codecov.io/gh/Smart-AI-Memory/empathy-framework/branch/main/graph/badge.svg)](https://codecov.io/gh/Smart-AI-Memory/empathy-framework)
10+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy-framework/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy-framework)
1111
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1212
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
1313
[![Downloads](https://img.shields.io/pypi/dm/empathy-framework.svg)](https://pypi.org/project/empathy-framework/)
@@ -31,8 +31,8 @@ pip install empathy-framework[all] # Everything including dev tools
3131

3232
**Development installation:**
3333
```bash
34-
git clone https://github.com/Smart-AI-Memory/empathy.git
35-
cd empathy
34+
git clone https://github.com/Smart-AI-Memory/empathy-framework.git
35+
cd empathy-framework
3636
pip install -e .[dev]
3737
```
3838

@@ -171,8 +171,8 @@ The Empathy provides:
171171

172172
```bash
173173
# Clone and install
174-
git clone https://github.com/Smart-AI-Memory/empathy.git
175-
cd empathy
174+
git clone https://github.com/Smart-AI-Memory/empathy-framework.git
175+
cd empathy-framework
176176
pip install -r requirements.txt
177177

178178
# Set up API key
@@ -186,7 +186,7 @@ pytest -m "not llm"
186186
pytest
187187
```
188188

189-
Share your experience in [GitHub Discussions](https://github.com/Smart-AI-Memory/empathy/discussions).
189+
Share your experience in [GitHub Discussions](https://github.com/Smart-AI-Memory/empathy-framework/discussions).
190190

191191
---
192192

@@ -262,8 +262,8 @@ pre-commit install
262262

263263
```bash
264264
# Clone the repository
265-
git clone https://github.com/Smart-AI-Memory/empathy.git
266-
cd Empathy
265+
git clone https://github.com/Smart-AI-Memory/empathy-framework.git
266+
cd empathy-framework
267267

268268
# Install dependencies
269269
pip install -r requirements.txt
@@ -583,7 +583,7 @@ The Empathy is **source available** (Fair Source 0.9) - free for students, educa
583583
-**Guaranteed response times**
584584
-**Upgrade assistance** and migration help
585585

586-
[Get Support →](https://github.com/Smart-AI-Memory/empathy/blob/main/SPONSORSHIP.md)
586+
[Get Support →](https://github.com/Smart-AI-Memory/empathy-framework/blob/main/SPONSORSHIP.md)
587587

588588
### Professional Services
589589

@@ -633,7 +633,7 @@ If you use the Empathy in your research or product, please cite:
633633
title = {Empathy: A Five-Level Maturity Model for AI-Human Collaboration},
634634
year = {2025},
635635
publisher = {Deep Study AI, LLC},
636-
url = {https://github.com/Smart-AI-Memory/empathy},
636+
url = {https://github.com/Smart-AI-Memory/empathy-framework},
637637
license = {Fair-Source-0.9}
638638
}
639639
```
@@ -650,8 +650,8 @@ If you use the Empathy in your research or product, please cite:
650650
**Resources:**
651651
- Documentation: [docs/](docs/)
652652
- Examples: [examples/](examples/)
653-
- Issues: https://github.com/Smart-AI-Memory/empathy/issues
654-
- Discussions: https://github.com/Smart-AI-Memory/empathy/discussions
653+
- Issues: https://github.com/Smart-AI-Memory/empathy-framework/issues
654+
- Discussions: https://github.com/Smart-AI-Memory/empathy-framework/discussions
655655

656656
---
657657

SOFTWARE_PLUGIN_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ Commercial license required for companies with 6+ employees.
412412
## Support
413413

414414
- Documentation: https://smartaimemory.com/empathy-framework
415-
- Issues: https://github.com/Smart-AI-Memory/empathy/issues
415+
- Issues: https://github.com/Smart-AI-Memory/empathy-framework/issues
416416
417417

418418
---

docs/MEMDOCS_EMPATHY_INTEGRATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This document showcases how **MemDocs** (intelligent document memory) and the **
5353
- Decision history tracking
5454

5555
### Empathy Framework
56-
The **[Empathy Framework](https://github.com/Smart-AI-Memory/empathy)** is a 5-level maturity model for AI-human collaboration:
56+
The **[Empathy Framework](https://github.com/Smart-AI-Memory/empathy-framework)** is a 5-level maturity model for AI-human collaboration:
5757
- **Level 1 (Reactive)**: Help after being asked
5858
- **Level 2 (Guided)**: Collaborative exploration with clarifying questions
5959
- **Level 3 (Proactive)**: Act before being asked based on patterns
@@ -802,7 +802,7 @@ The **Claude Code + MemDocs + Empathy Framework** stack represents a fundamental
802802

803803
## Resources
804804

805-
- **Empathy Framework**: [https://github.com/Smart-AI-Memory/empathy](https://github.com/Smart-AI-Memory/empathy)
805+
- **Empathy Framework**: [https://github.com/Smart-AI-Memory/empathy-framework](https://github.com/Smart-AI-Memory/empathy-framework)
806806
- **MemDocs**: [https://github.com/Smart-AI-Memory/memdocs](https://github.com/Smart-AI-Memory/memdocs)
807807
- **Claude Code**: [https://claude.ai/claude-code](https://claude.ai/claude-code)
808808
- **Book Chapter**: [The Empathy Framework for AI-Human Collaboration](CHAPTER_EMPATHY_FRAMEWORK.md)

docs/THIRD_PARTY_BADGES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
128128
**Badge**:
129129
```markdown
130-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy)
130+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy-framework/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy-framework)
131131
```
132132

133133
---
@@ -191,15 +191,15 @@ For a **professional, credible** README:
191191
```markdown
192192
<!-- Production Readiness -->
193193
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/YOUR_ID/badge)](https://bestpractices.coreinfrastructure.org/projects/YOUR_ID)
194-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy)
194+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Smart-AI-Memory/empathy-framework/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Smart-AI-Memory/empathy-framework)
195195

196196
<!-- PyPI -->
197197
[![PyPI version](https://img.shields.io/pypi/v/empathy.svg)](https://pypi.org/project/empathy/)
198198
[![Python 3.10+](https://img.shields.io/pypi/pyversions/empathy.svg)](https://www.python.org/downloads/)
199199
[![Downloads](https://img.shields.io/pypi/dm/empathy.svg)](https://pypi.org/project/empathy/)
200200

201201
<!-- Quality -->
202-
[![Tests](https://github.com/Smart-AI-Memory/empathy/actions/workflows/tests.yml/badge.svg)](https://github.com/Smart-AI-Memory/empathy/actions/workflows/tests.yml)
202+
[![Tests](https://github.com/Smart-AI-Memory/empathy-framework/actions/workflows/tests.yml/badge.svg)](https://github.com/Smart-AI-Memory/empathy-framework/actions/workflows/tests.yml)
203203
[![codecov](https://codecov.io/gh/Smart-AI-Memory/empathy/branch/main/graph/badge.svg)](https://codecov.io/gh/Smart-AI-Memory/empathy)
204204
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
205205
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ empathy-scan = "empathy_software_plugin.cli:scan_command"
165165

166166
[project.urls]
167167
Homepage = "https://smartaimemory.com"
168-
Documentation = "https://github.com/Smart-AI-Memory/empathy/tree/main/docs"
169-
Repository = "https://github.com/Smart-AI-Memory/empathy"
170-
Issues = "https://github.com/Smart-AI-Memory/empathy/issues"
171-
Discussions = "https://github.com/Smart-AI-Memory/empathy/discussions"
172-
Changelog = "https://github.com/Smart-AI-Memory/empathy/blob/main/CHANGELOG.md"
168+
Documentation = "https://github.com/Smart-AI-Memory/empathy-framework/tree/main/docs"
169+
Repository = "https://github.com/Smart-AI-Memory/empathy-framework"
170+
Issues = "https://github.com/Smart-AI-Memory/empathy-framework/issues"
171+
Discussions = "https://github.com/Smart-AI-Memory/empathy-framework/discussions"
172+
Changelog = "https://github.com/Smart-AI-Memory/empathy-framework/blob/main/CHANGELOG.md"
173173
Funding = "https://smartaimemory.com"
174174

175175
[tool.setuptools]

website/DEPLOYMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ NODE_ENV=production
4040

4141
### One-Click Deploy
4242

43-
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/Smart-AI-Memory/empathy/tree/main/website)
43+
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/Smart-AI-Memory/empathy-framework/tree/main/website)
4444

4545
### Manual Deployment
4646

@@ -149,7 +149,7 @@ The repository includes a GitHub Actions workflow (`.github/workflows/deploy.yml
149149

150150
1. Clone repository:
151151
```bash
152-
git clone https://github.com/Smart-AI-Memory/empathy.git
152+
git clone https://github.com/Smart-AI-Memory/empathy-framework.git
153153
cd empathy/website
154154
```
155155

@@ -343,6 +343,6 @@ pm2 logs
343343
## Support
344344

345345
For deployment issues:
346-
- GitHub Issues: https://github.com/Smart-AI-Memory/empathy/issues
346+
- GitHub Issues: https://github.com/Smart-AI-Memory/empathy-framework/issues
347347
348348
- Documentation: smartaimemory.com/docs

website/ENHANCEMENTS_SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ If you need help with any of these features:
435435
- Check `DEPLOYMENT.md` for deployment help
436436
- Check `.env.example` for configuration
437437
438-
- GitHub: https://github.com/Smart-AI-Memory/empathy
438+
- GitHub: https://github.com/Smart-AI-Memory/empathy-framework
439439

440440
---
441441

0 commit comments

Comments
 (0)