docs: fix stale milla-jovovich org URLs in website and plugin manifests (#787)
Follow-up to #766 which covers version.py, pyproject.toml, README, CHANGELOG, and CONTRIBUTING. These 11 files still had the old org name in URLs: - website/ (VitePress config + 6 docs pages) - .claude-plugin/ (plugin.json repository, README marketplace command) - .codex-plugin/ (plugin.json URLs, README links) Author name fields are intentionally unchanged.
This commit is contained in:
@@ -11,7 +11,7 @@ A Claude Code plugin that gives your AI a persistent memory system. Mine project
|
|||||||
### Claude Code Marketplace
|
### Claude Code Marketplace
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
claude plugin marketplace add milla-jovovich/mempalace
|
claude plugin marketplace add MemPalace/mempalace
|
||||||
claude plugin install --scope user mempalace
|
claude plugin install --scope user mempalace
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -25,5 +25,5 @@
|
|||||||
"palace",
|
"palace",
|
||||||
"search"
|
"search"
|
||||||
],
|
],
|
||||||
"repository": "https://github.com/milla-jovovich/mempalace"
|
"repository": "https://github.com/MemPalace/mempalace"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ codex /init
|
|||||||
1. Clone the MemPalace repository:
|
1. Clone the MemPalace repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/milla-jovovich/mempalace.git
|
git clone https://github.com/MemPalace/mempalace.git
|
||||||
cd mempalace
|
cd mempalace
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -71,5 +71,5 @@ Set the `MEMPAL_DIR` environment variable to a directory path to automatically r
|
|||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- Repository: https://github.com/milla-jovovich/mempalace
|
- Repository: https://github.com/MemPalace/mempalace
|
||||||
- Issues: https://github.com/milla-jovovich/mempalace/issues
|
- Issues: https://github.com/MemPalace/mempalace/issues
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
"author": {
|
"author": {
|
||||||
"name": "milla-jovovich"
|
"name": "milla-jovovich"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/milla-jovovich/mempalace",
|
"homepage": "https://github.com/MemPalace/mempalace",
|
||||||
"repository": "https://github.com/milla-jovovich/mempalace",
|
"repository": "https://github.com/MemPalace/mempalace",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"memory",
|
"memory",
|
||||||
@@ -39,9 +39,9 @@
|
|||||||
"Read",
|
"Read",
|
||||||
"Write"
|
"Write"
|
||||||
],
|
],
|
||||||
"websiteURL": "https://github.com/milla-jovovich/mempalace",
|
"websiteURL": "https://github.com/MemPalace/mempalace",
|
||||||
"privacyPolicyURL": "https://github.com/milla-jovovich/mempalace",
|
"privacyPolicyURL": "https://github.com/MemPalace/mempalace",
|
||||||
"termsOfServiceURL": "https://github.com/milla-jovovich/mempalace",
|
"termsOfServiceURL": "https://github.com/MemPalace/mempalace",
|
||||||
"defaultPrompt": [
|
"defaultPrompt": [
|
||||||
"Search my memories for recent decisions",
|
"Search my memories for recent decisions",
|
||||||
"Mine this project into my memory palace",
|
"Mine this project into my memory palace",
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ export default withMermaid(
|
|||||||
},
|
},
|
||||||
|
|
||||||
socialLinks: [
|
socialLinks: [
|
||||||
{ icon: 'github', link: 'https://github.com/milla-jovovich/mempalace' },
|
{ icon: 'github', link: 'https://github.com/MemPalace/mempalace' },
|
||||||
{ icon: 'discord', link: 'https://discord.com/invite/ycTQQCu6kn' },
|
{ icon: 'discord', link: 'https://discord.com/invite/ycTQQCu6kn' },
|
||||||
],
|
],
|
||||||
|
|
||||||
@@ -100,7 +100,7 @@ export default withMermaid(
|
|||||||
},
|
},
|
||||||
|
|
||||||
editLink: {
|
editLink: {
|
||||||
pattern: `https://github.com/milla-jovovich/mempalace/edit/${editBranch}/website/:path`,
|
pattern: `https://github.com/MemPalace/mempalace/edit/${editBranch}/website/:path`,
|
||||||
text: 'Edit this page on GitHub',
|
text: 'Edit this page on GitHub',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ The recommended way to use MemPalace with Claude Code — native marketplace ins
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
claude plugin marketplace add milla-jovovich/mempalace
|
claude plugin marketplace add MemPalace/mempalace
|
||||||
claude plugin install --scope user mempalace
|
claude plugin install --scope user mempalace
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ MemPalace works natively with [Gemini CLI](https://github.com/google/gemini-cli)
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
# Clone the repository
|
||||||
git clone https://github.com/milla-jovovich/mempalace.git
|
git clone https://github.com/MemPalace/mempalace.git
|
||||||
cd mempalace
|
cd mempalace
|
||||||
|
|
||||||
# Create a virtual environment
|
# Create a virtual environment
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ pip install mempalace
|
|||||||
```
|
```
|
||||||
|
|
||||||
::: danger Security Warning
|
::: danger Security Warning
|
||||||
The domain `mempalace.tech` is a **brand-squatting site** not affiliated with this project. It is known to run ad-redirects and potential malware. The official MemPalace distribution is only available via this [GitHub repository](https://github.com/milla-jovovich/mempalace) and [PyPI](https://pypi.org/project/mempalace/). Never install binaries or scripts from unofficial domains.
|
The domain `mempalace.tech` is a **brand-squatting site** not affiliated with this project. It is known to run ad-redirects and potential malware. The official MemPalace distribution is only available via this [GitHub repository](https://github.com/MemPalace/mempalace) and [PyPI](https://pypi.org/project/mempalace/). Never install binaries or scripts from unofficial domains.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
### Requirements
|
### Requirements
|
||||||
@@ -23,7 +23,7 @@ No API key required for the core local workflow. After installation, the main st
|
|||||||
### From Source
|
### From Source
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/milla-jovovich/mempalace.git
|
git clone https://github.com/MemPalace/mempalace.git
|
||||||
cd mempalace
|
cd mempalace
|
||||||
pip install -e ".[dev]"
|
pip install -e ".[dev]"
|
||||||
```
|
```
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@ hero:
|
|||||||
link: /concepts/the-palace
|
link: /concepts/the-palace
|
||||||
- theme: alt
|
- theme: alt
|
||||||
text: GitHub ↗
|
text: GitHub ↗
|
||||||
link: https://github.com/milla-jovovich/mempalace
|
link: https://github.com/MemPalace/mempalace
|
||||||
|
|
||||||
features:
|
features:
|
||||||
- icon:
|
- icon:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Benchmarks
|
# Benchmarks
|
||||||
|
|
||||||
Curated summary of MemPalace benchmark results. For the full 725-line progression with every experiment, see [`benchmarks/BENCHMARKS.md`](https://github.com/milla-jovovich/mempalace/blob/main/benchmarks/BENCHMARKS.md) in the repository.
|
Curated summary of MemPalace benchmark results. For the full 725-line progression with every experiment, see [`benchmarks/BENCHMARKS.md`](https://github.com/MemPalace/mempalace/blob/main/benchmarks/BENCHMARKS.md) in the repository.
|
||||||
|
|
||||||
## The Core Finding
|
## The Core Finding
|
||||||
|
|
||||||
@@ -76,7 +76,7 @@ On this benchmark, MemPalace materially outperforms the Mem0 result cited in the
|
|||||||
All benchmarks are reproducible with public datasets:
|
All benchmarks are reproducible with public datasets:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/milla-jovovich/mempalace.git
|
git clone https://github.com/MemPalace/mempalace.git
|
||||||
cd mempalace
|
cd mempalace
|
||||||
pip install chromadb pyyaml
|
pip install chromadb pyyaml
|
||||||
|
|
||||||
@@ -92,4 +92,4 @@ python benchmarks/longmemeval_bench.py /tmp/longmemeval_s_cleaned.json
|
|||||||
Results are deterministic. Same data + same script = same result every time. Every result JSONL file contains every question, every retrieved document, every score.
|
Results are deterministic. Same data + same script = same result every time. Every result JSONL file contains every question, every retrieved document, every score.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
For complete reproduction instructions, benchmark integrity notes, and the full score progression, see the [full benchmark documentation](https://github.com/milla-jovovich/mempalace/blob/main/benchmarks/BENCHMARKS.md).
|
For complete reproduction instructions, benchmark integrity notes, and the full score progression, see the [full benchmark documentation](https://github.com/MemPalace/mempalace/blob/main/benchmarks/BENCHMARKS.md).
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ PRs welcome. MemPalace is open source and we welcome contributions of all sizes
|
|||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/milla-jovovich/mempalace.git
|
git clone https://github.com/MemPalace/mempalace.git
|
||||||
cd mempalace
|
cd mempalace
|
||||||
pip install -e ".[dev]"
|
pip install -e ".[dev]"
|
||||||
```
|
```
|
||||||
@@ -53,7 +53,7 @@ See [Benchmarks](/reference/benchmarks) for data download instructions.
|
|||||||
|
|
||||||
## Good First Issues
|
## Good First Issues
|
||||||
|
|
||||||
Check the [Issues](https://github.com/milla-jovovich/mempalace/issues) tab:
|
Check the [Issues](https://github.com/MemPalace/mempalace/issues) tab:
|
||||||
|
|
||||||
- **New chat formats** — add import support for Cursor, Copilot, or other AI tool exports
|
- **New chat formats** — add import support for Cursor, Copilot, or other AI tool exports
|
||||||
- **Room detection** — improve pattern matching in `room_detector_local.py`
|
- **Room detection** — improve pattern matching in `room_detector_local.py`
|
||||||
@@ -73,8 +73,8 @@ If you're planning a significant change, open an issue first. Key principles:
|
|||||||
## Community
|
## Community
|
||||||
|
|
||||||
- [Discord](https://discord.com/invite/ycTQQCu6kn)
|
- [Discord](https://discord.com/invite/ycTQQCu6kn)
|
||||||
- [GitHub Issues](https://github.com/milla-jovovich/mempalace/issues) — bug reports and feature requests
|
- [GitHub Issues](https://github.com/MemPalace/mempalace/issues) — bug reports and feature requests
|
||||||
- [GitHub Discussions](https://github.com/milla-jovovich/mempalace/discussions) — questions and ideas
|
- [GitHub Discussions](https://github.com/MemPalace/mempalace/discussions) — questions and ideas
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user