Skip to content

Commit 8ce3726

Browse files
committed
docs: finish Mneme -> Perseus Vault brand sweep
- Fix broken bootstrap.sh links (github.com/.../mneme/... 404s post-rename) - manifest.json, server.json: brand strings, docker image tag, DB path - comparison docs, awesome-mimir.md, clawhub SKILL.md, obsidian plugin manifest - CONTRIBUTING.md cd path fix Historical CHANGELOG.md entries describing the actual rename PRs are left as-is (accurate historical record). No src/*.rs, Cargo.toml, proto/, or pyproject.toml touched -- those are already correct per PR #322.
1 parent 5115df8 commit 8ce3726

21 files changed

Lines changed: 187 additions & 187 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ All notable changes to Mimir are documented here. This project adheres to
88
## [2.9.0] - 2026-07-01
99

1010
### Changed
11-
- **Product rename: Mneme → Perseus Vault.** "Mneme" collided with an active
11+
- **Product rename: Perseus Vault → Perseus Vault.** "Perseus Vault" collided with an active
1212
commercial competitor (mneme.tools) plus several other unrelated AI-memory
1313
products and open-source projects already using that exact name — a repeat
1414
of the earlier Mimir naming collision. The crate and `[[bin]]` are now
1515
`perseus-vault`; the default database for fresh installs is
16-
`~/.mimir/data/perseus-vault.db` (an existing `mneme.db` or `mimir.db` at
16+
`~/.mimir/data/perseus-vault.db` (an existing `perseus-vault.db` or `mimir.db` at
1717
that path is still used automatically, in that fallback order, so upgraders
1818
keep their data — see `default_db_path()` in `src/main.rs`). Every
1919
`mimir_*` MCP tool is now additionally registered under a `perseus_vault_*`
@@ -32,7 +32,7 @@ All notable changes to Mimir are documented here. This project adheres to
3232
own timeline.
3333

3434
### Breaking (soft — back-compat aliases provided)
35-
- Fresh installs now default to `perseus-vault.db` instead of `mneme.db`/
35+
- Fresh installs now default to `perseus-vault.db` instead of `perseus-vault.db`/
3636
`mimir.db`. Existing databases at the old paths are auto-detected and used
3737
as-is (no migration needed), but new installs on a machine with no prior
3838
database will create the new filename. Set `--db`/`MIMIR_DB_PATH`
@@ -41,18 +41,18 @@ All notable changes to Mimir are documented here. This project adheres to
4141
## [2.8.0] - 2026-06-30
4242

4343
### Changed
44-
- **Product rename: Mimir → Mneme.** Avoids a trademark/SEO collision with
44+
- **Product rename: Mimir → Perseus Vault.** Avoids a trademark/SEO collision with
4545
Grafana Mimir and a same-niche competitor also named Mimir. The crate and
4646
`[[bin]]` are now `mneme`; the default database for fresh installs is
47-
`~/.mimir/data/mneme.db` (an existing `mimir.db` at that path is still used
47+
`~/.mimir/data/perseus-vault.db` (an existing `mimir.db` at that path is still used
4848
automatically, so upgraders keep their data — see `default_db_path()` in
4949
`src/main.rs`). Every `mimir_*` MCP tool is now also registered under the
5050
equivalent `mneme_*` name — both dispatch to the same handler, so existing
5151
MCP host configs that call `mimir_remember`/`mimir_recall`/etc. keep working
5252
unchanged during the transition. `mimir doctor`/`--help` output now refers to
5353
the `mneme` binary. Internal-only Rust identifiers (`MimirGrpcServer`, the
5454
optional `grpc` feature's generated `Mimir`/`MimirServer` proto types) are
55-
renamed to their `Mneme` equivalents with no back-compat surface, since
55+
renamed to their `Perseus Vault` equivalents with no back-compat surface, since
5656
nothing outside the binary depends on them.
5757

5858
### Fixed
@@ -309,5 +309,5 @@ search works with zero config and zero network by default.
309309
semantic-search claim on every platform a developer runs. Added a `lite-build`
310310
job guarding `--no-default-features`.
311311

312-
[2.2.1]: https://github.com/Perseus-Computing-LLC/mneme/compare/v2.2.0...v2.2.1
313-
[2.2.0]: https://github.com/Perseus-Computing-LLC/mneme/compare/v2.1.0...v2.2.0
312+
[2.2.1]: https://github.com/Perseus-Computing-LLC/perseus-vault/compare/v2.2.0...v2.2.1
313+
[2.2.0]: https://github.com/Perseus-Computing-LLC/perseus-vault/compare/v2.1.0...v2.2.0

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Contributing to Mneme
1+
# Contributing to Perseus Vault
22

3-
Thanks for wanting to help! Mneme is a Rust MCP server for persistent AI agent
3+
Thanks for wanting to help! Perseus Vault is a Rust MCP server for persistent AI agent
44
memory. Contributions of all kinds are welcome — code, docs, bug reports, feature
55
ideas.
66

77
## Development Setup
88

99
```bash
10-
git clone https://github.com/Perseus-Computing-LLC/mneme.git
11-
cd mneme
10+
git clone https://github.com/Perseus-Computing-LLC/perseus-vault.git
11+
cd perseus-vault
1212

1313
# Build (requires Rust 1.70+)
1414
cargo build --release
@@ -49,5 +49,5 @@ Keep PRs focused — one concern per PR. If you're fixing a bug, add a test.
4949

5050
## Questions?
5151

52-
Open a [discussion](https://github.com/Perseus-Computing-LLC/mneme/discussions) or file an
52+
Open a [discussion](https://github.com/Perseus-Computing-LLC/perseus-vault/discussions) or file an
5353
issue with the `question` label.

SUPPORT.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
## Getting Help
44

55
- **Documentation:** Start with the [README](README.md) for setup and usage
6-
- **Discussions:** [GitHub Discussions](https://github.com/Perseus-Computing-LLC/mneme/discussions)
6+
- **Discussions:** [GitHub Discussions](https://github.com/Perseus-Computing-LLC/perseus-vault/discussions)
77
for questions, ideas, and community support
8-
- **Bug reports:** File an issue using the [bug report template](https://github.com/Perseus-Computing-LLC/mneme/issues/new?template=bug_report.yml)
9-
- **Feature requests:** Use the [feature request template](https://github.com/Perseus-Computing-LLC/mneme/issues/new?template=feature_request.yml)
8+
- **Bug reports:** File an issue using the [bug report template](https://github.com/Perseus-Computing-LLC/perseus-vault/issues/new?template=bug_report.yml)
9+
- **Feature requests:** Use the [feature request template](https://github.com/Perseus-Computing-LLC/perseus-vault/issues/new?template=feature_request.yml)
1010

1111
## MCP Host Integration
1212

13-
Mneme works with any MCP-compatible host. See the [README](README.md#mcp-configuration)
13+
Perseus Vault works with any MCP-compatible host. See the [README](README.md#mcp-configuration)
1414
for Claude Desktop, Cursor, OpenClaw, and Hermes Agent configuration examples.
1515

1616
## Perseus Integration
1717

18-
If you're using Mneme as the memory backend for Perseus, see the
18+
If you're using Perseus Vault as the memory backend for Perseus, see the
1919
[Perseus docs](https://github.com/Perseus-Computing-LLC/perseus) for the full
2020
`.perseus/config.yaml` setup.

awesome-mimir.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Awesome Mneme
1+
# Awesome Perseus Vault
22

3-
> Curated list of Mneme integrations, tools, and resources.
4-
> Mneme is an MCP-native, local-first persistent memory engine for AI agents.
3+
> Curated list of Perseus Vault integrations, tools, and resources.
4+
> Perseus Vault is an MCP-native, local-first persistent memory engine for AI agents.
55
66
## Contents
77

@@ -15,40 +15,40 @@
1515

1616
## Official Resources
1717

18-
- [Mneme GitHub Repo](https://github.com/Perseus-Computing-LLC/mneme) — The Mneme source
19-
- [Roadmap](https://github.com/Perseus-Computing-LLC/mneme/blob/main/ROADMAP.md)
20-
- [Contributing Guide](https://github.com/Perseus-Computing-LLC/mneme/blob/main/CONTRIBUTING.md)
21-
- [Security Policy](https://github.com/Perseus-Computing-LLC/mneme/blob/main/SECURITY.md)
18+
- [Perseus Vault GitHub Repo](https://github.com/Perseus-Computing-LLC/perseus-vault) — The Perseus Vault source
19+
- [Roadmap](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/ROADMAP.md)
20+
- [Contributing Guide](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/CONTRIBUTING.md)
21+
- [Security Policy](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/SECURITY.md)
2222

2323
## Framework Integrations
2424

25-
Mneme adapters for popular AI agent frameworks:
25+
Perseus Vault adapters for popular AI agent frameworks:
2626

2727
### LangGraph (LangChain)
28-
- [mimir-langgraph](https://github.com/Perseus-Computing-LLC/mneme/tree/main/integrations/langgraph)`MimirStore` implementing `BaseStore`
28+
- [mimir-langgraph](https://github.com/Perseus-Computing-LLC/perseus-vault/tree/main/integrations/langgraph)`MimirStore` implementing `BaseStore`
2929
- Drop-in persistent memory for LangGraph agents
3030
- `pip install -e integrations/langgraph/`
3131

3232
### CrewAI
33-
- [mimir-crewai](https://github.com/Perseus-Computing-LLC/mneme/tree/main/integrations/crewai)`MimirMemoryTool` as a CrewAI agent tool
33+
- [mimir-crewai](https://github.com/Perseus-Computing-LLC/perseus-vault/tree/main/integrations/crewai)`MimirMemoryTool` as a CrewAI agent tool
3434
- Agents can remember, recall, journal, and get context
3535
- `pip install -e integrations/crewai/`
3636

3737
### AutoGen (AG2 / autogen-core)
38-
- [mimir-autogen](https://github.com/Perseus-Computing-LLC/mneme/tree/main/integrations/autogen)`MimirMemory` implementing `autogen_core.memory.Memory`
38+
- [mimir-autogen](https://github.com/Perseus-Computing-LLC/perseus-vault/tree/main/integrations/autogen)`MimirMemory` implementing `autogen_core.memory.Memory`
3939
- Context injection before each inference turn
4040
- `pip install -e integrations/autogen/`
4141

4242
### Other Frameworks
43-
Mneme is MCP-native — any framework with MCP support can use Mneme directly:
43+
Perseus Vault is MCP-native — any framework with MCP support can use Perseus Vault directly:
4444
- [OpenAI Agents SDK](https://github.com/openai/openai-agents-python) — via MCP stdio
4545
- [Google ADK](https://github.com/google/adk-python) — via MCP stdio
4646
- [Agno](https://github.com/agno-agi/agno) — via MCP stdio
4747
- [Magentic-One](https://github.com/anthropics/anthropic-quickstarts) — via MCP stdio
4848

4949
## MCP Hosts
5050

51-
Mneme works with any MCP host. Configuration is one line:
51+
Perseus Vault works with any MCP host. Configuration is one line:
5252

5353
```json
5454
{
@@ -62,16 +62,16 @@ Mneme works with any MCP host. Configuration is one line:
6262
```
6363

6464
Tested and confirmed working with:
65-
- [Claude Desktop](https://claude.ai/download)[config guide](https://github.com/Perseus-Computing-LLC/mneme/blob/main/docs/integration/claude-code.md)
66-
- [Cursor](https://cursor.com)[config guide](https://github.com/Perseus-Computing-LLC/mneme/blob/main/docs/integration/cursor.md)
65+
- [Claude Desktop](https://claude.ai/download)[config guide](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/docs/integration/claude-code.md)
66+
- [Cursor](https://cursor.com)[config guide](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/docs/integration/cursor.md)
6767
- [Hermes Agent](https://github.com/nousresearch/hermes-agent)
6868
- [Perseus](https://perseus.observer) — native integration
6969
- [OpenClaw](https://openclaw.ai)
7070
- Any host supporting MCP JSON-RPC 2.0 stdio
7171

7272
## Tools & Plugins
7373

74-
### Mneme Itself (36 MCP Tools)
74+
### Perseus Vault Itself (36 MCP Tools)
7575

7676
| Category | Tools |
7777
|---|---|
@@ -88,28 +88,28 @@ Tested and confirmed working with:
8888

8989
### Plugin Ecosystem
9090

91-
- [hermes-mimir-plugin](https://github.com/Perseus-Computing-LLC/hermes-mimir-plugin) — Native Mneme integration for Hermes Agent
92-
- [Perseus Mneme Connector](https://github.com/Perseus-Computing-LLC/perseus) — Perseus live context injection from Mneme
91+
- [hermes-mimir-plugin](https://github.com/Perseus-Computing-LLC/hermes-mimir-plugin) — Native Perseus Vault integration for Hermes Agent
92+
- [Perseus Perseus Vault Connector](https://github.com/Perseus-Computing-LLC/perseus) — Perseus live context injection from Perseus Vault
9393

9494
## Community Projects
9595

96-
*Add your project here! Open a PR to [awesome-mimir.md](https://github.com/Perseus-Computing-LLC/mneme/blob/main/awesome-mimir.md).*
96+
*Add your project here! Open a PR to [awesome-mimir.md](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/awesome-mimir.md).*
9797

9898
## Articles & Tutorials
9999

100-
*Add articles, blog posts, and tutorials about Mneme.*
100+
*Add articles, blog posts, and tutorials about Perseus Vault.*
101101

102102
## Comparisons
103103

104-
- [Mneme vs Mem0](https://github.com/Perseus-Computing-LLC/mneme/blob/main/docs/comparison/mimir-vs-mem0.md) — Local-first vs cloud-only
105-
- [Mneme vs Letta](https://github.com/Perseus-Computing-LLC/mneme/blob/main/docs/comparison/mimir-vs-letta.md) — Memory engine vs agent runtime
106-
- [Mneme vs Zep](https://github.com/Perseus-Computing-LLC/mneme/blob/main/docs/comparison/mimir-vs-zep.md) — Single binary vs infrastructure
104+
- [Perseus Vault vs Mem0](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/docs/comparison/mimir-vs-mem0.md) — Local-first vs cloud-only
105+
- [Perseus Vault vs Letta](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/docs/comparison/mimir-vs-letta.md) — Memory engine vs agent runtime
106+
- [Perseus Vault vs Zep](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/docs/comparison/mimir-vs-zep.md) — Single binary vs infrastructure
107107

108108
## Key Differentiators
109109

110-
Why Mneme stands out:
110+
Why Perseus Vault stands out:
111111

112-
| Feature | Mneme | Mem0 | Letta | Zep |
112+
| Feature | Perseus Vault | Mem0 | Letta | Zep |
113113
|---|---|---|---|---|
114114
| **MCP-Native** | ✅ 36 tools ||||
115115
| **Local-First** | ✅ Single binary | ❌ Cloud-dependent | ❌ Docker + Postgres | ❌ Docker + Postgres |
@@ -120,6 +120,6 @@ Why Mneme stands out:
120120

121121
## Contributing
122122

123-
See [CONTRIBUTING.md](https://github.com/Perseus-Computing-LLC/mneme/blob/main/CONTRIBUTING.md).
123+
See [CONTRIBUTING.md](https://github.com/Perseus-Computing-LLC/perseus-vault/blob/main/CONTRIBUTING.md).
124124

125125
To add your project/resource to this list, open a PR against the `awesome-mimir.md` file.

clawhub/skills/mimir/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ Choose one:
8585
**Download binary (fastest):**
8686
```bash
8787
# Linux x86_64
88-
curl -L https://github.com/Perseus-Computing-LLC/mneme/releases/latest/download/mimir-linux-x86_64 -o mimir
88+
curl -L https://github.com/Perseus-Computing-LLC/perseus-vault/releases/latest/download/mimir-linux-x86_64 -o mimir
8989
chmod +x mimir
9090
sudo mv mimir /usr/local/bin/
9191
```
9292

9393
**Build from source (requires Rust):**
9494
```bash
95-
git clone https://github.com/Perseus-Computing-LLC/mneme.git
96-
cd mimir
95+
git clone https://github.com/Perseus-Computing-LLC/perseus-vault.git
96+
cd perseus-vault
9797
cargo build --release
9898
sudo cp target/release/mimir /usr/local/bin/
9999
```
@@ -214,7 +214,7 @@ mimir --db ~/.openclaw/mimir/mimir.db --vault-export ~/mimir-vault/
214214

215215
## Links
216216

217-
- GitHub: https://github.com/Perseus-Computing-LLC/mneme
218-
- Website: https://perseus.observer/mimir
217+
- GitHub: https://github.com/Perseus-Computing-LLC/perseus-vault
218+
- Website: https://perseus.observer/perseus-vault
219219
- Python client: https://pypi.org/project/mimir-client/
220220
- Smithery: https://smithery.ai/server/mimir

docs/EXPORT-CONTROL.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Export Control Self-Classification — Perseus & Mneme
1+
# Export Control Self-Classification — Perseus & Perseus Vault
22

33
**Prepared by:** Perseus Computing LLC
44
**Date:** 2026-06-20
@@ -9,7 +9,7 @@
99

1010
## Executive Summary
1111

12-
Both Perseus (perseus-ctx) and Mneme are **MIT-licensed, publicly available open source software**.
12+
Both Perseus (perseus-ctx) and Perseus Vault are **MIT-licensed, publicly available open source software**.
1313
Under the Export Administration Regulations (EAR) 15 CFR §§ 730-774 and the International
1414
Traffic in Arms Regulations (ITAR) 22 CFR §§ 120-130, both products are self-classified as
1515
**EAR99** — not subject to export licensing requirements.
@@ -26,11 +26,11 @@ This document provides the analysis and rationale for federal procurement and SB
2626
- **Distribution:** PyPI (public package registry)
2727
- **Source:** https://github.com/Perseus-Computing-LLC/perseus (public, MIT license)
2828

29-
### Mneme (v2.0.0)
29+
### Perseus Vault (v2.0.0)
3030
- **Type:** Rust binary — persistent memory MCP server for AI agents
3131
- **Function:** Stores, searches, and retrieves structured entities via JSON-RPC 2.0 over stdio. Includes AES-256-GCM encryption (standard commercial algorithm). Optional embedding via public ONNX models. No cryptographic key management — keys are user-provided.
3232
- **Distribution:** GitHub Releases (public binary downloads)
33-
- **Source:** https://github.com/Perseus-Computing-LLC/mneme (public, MIT license)
33+
- **Source:** https://github.com/Perseus-Computing-LLC/perseus-vault (public, MIT license)
3434

3535
---
3636

@@ -39,7 +39,7 @@ This document provides the analysis and rationale for federal procurement and SB
3939
### Jurisdiction: EAR99
4040

4141
Per 15 CFR § 734.3(b), items subject to the EAR include all items in the United States
42-
unless specifically excluded. The following analysis determines whether Perseus or Mneme
42+
unless specifically excluded. The following analysis determines whether Perseus or Perseus Vault
4343
fall under a more restrictive ECCN (Export Control Classification Number).
4444

4545
### ECCN Review
@@ -56,7 +56,7 @@ fall under a more restrictive ECCN (Export Control Classification Number).
5656

5757
### Cryptography Analysis (ECCN 5D002)
5858

59-
Mneme includes AES-256-GCM encryption via the `aes-gcm` Rust crate (v0.10). Under
59+
Perseus Vault includes AES-256-GCM encryption via the `aes-gcm` Rust crate (v0.10). Under
6060
EAR Category 5 Part 2, cryptographic software may require classification under 5D002.
6161

6262
**However**, per 15 CFR § 740.13(b)(1) and Supplement No. 8 to Part 742, "publicly
@@ -66,7 +66,7 @@ available" encryption source code is **not subject to the EAR** when it is:
6666
2. Available for free distribution (MIT license — ✅)
6767
3. Not restricted to specific countries or persons (public repo — ✅)
6868

69-
Both Perseus and Mneme source code are publicly available on GitHub under MIT license.
69+
Both Perseus and Perseus Vault source code are publicly available on GitHub under MIT license.
7070
The AES-256-GCM implementation is via a standard, publicly available open-source crate.
7171
No proprietary or classified encryption algorithms are used.
7272

@@ -85,7 +85,7 @@ countries, 10% for embargoed destinations).
8585
### USML Review
8686

8787
Per 22 CFR § 121.1 (United States Munitions List), ITAR controls apply to defense
88-
articles and services. Neither Perseus nor Mneme:
88+
articles and services. Neither Perseus nor Perseus Vault:
8989

9090
- Are specifically designed, developed, configured, adapted, or modified for a
9191
military application (Category I-XXI)
@@ -120,7 +120,7 @@ open source software, standard EAR99 treatment applies.
120120
| Product | ECCN | ITAR | License Required | Encryption Registration |
121121
|---|---|---|---|---|
122122
| Perseus (perseus-ctx) | EAR99 | Not applicable | No | No |
123-
| Mneme | EAR99 | Not applicable | No | No (public availability exclusion) |
123+
| Perseus Vault | EAR99 | Not applicable | No | No (public availability exclusion) |
124124

125125
---
126126

docs/SBOM.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Mneme SBOM (Software Bill of Materials)
1+
# Perseus Vault SBOM (Software Bill of Materials)
22
## For Federal Procurement Compliance
33

44
**Package:** mimir v2.0.0
55
**License:** MIT
6-
**Repository:** https://github.com/Perseus-Computing-LLC/mneme
6+
**Repository:** https://github.com/Perseus-Computing-LLC/perseus-vault
77
**Language:** Rust (edition 2021)
88
**Format:** SPDX Lite / NTIA Minimum Elements
99

0 commit comments

Comments
 (0)