ApertoMemory — portable, client-side-encrypted, user-owned AI memory
Project description
ApertoMemory
Portable, client-side-encrypted, user-owned AI memory.
Every AI tool remembers you differently — and only within its own walls. Switch tools and your AI forgets who you are. ApertoMemory fixes this with an open format: your AI's memory of you lives in a file that is yours, encrypted with your keys, portable across any compatible system. No provider can read it. No vendor can hold it hostage.
- Zero-access: content, authorship, and semantic timestamps are encrypted client-side; a sync/storage server sees only opaque blobs.
- Signed provenance: every memory object is Ed25519-signed inside the encryption; imported third-party memories are cryptographically distinguishable from your own (persistent-prompt-injection defence).
- Portable: export your entire memory as a single
.amemfile and import it anywhere — a complete vault fits in kilobytes. - Open: MIT-licensed reference implementation, CDDL schema, test
vectors, and an IETF Internet-Draft (
draft-ferro-apertomemory).
Website: https://apertomemory.org
Install
pip install apertomemory
The command-line tool is amem; the file format is .amem.
Quick start
export AMEM_PASSPHRASE="your-passphrase"
amem --vault ~/.amem init
amem --vault ~/.amem scope add default
amem --vault ~/.amem seal "prefers formal B2B emails" --tags preferences
amem --vault ~/.amem open <id>
amem --vault ~/.amem export my-memory.amem # take it anywhere
amem --vault other-device import my-memory.amem
Cryptography
Argon2id (m=64 MiB, t=3, p=4) -> HKDF-SHA256 -> Ed25519 (signing,
sign-then-encrypt) + X25519 (ECDH-ES + AES-KW for per-scope KEKs) ->
AES-256-GCM per object (COSE alg 3), canonical CBOR (RFC 8949 s4.2).
The vault and the .amem file never contain cleartext keys or content.
Run the tests: python3 tests/test_roundtrip.py
MCP adapter (Claude Desktop / Claude Code)
{
"mcpServers": {
"amem": {
"command": "python3",
"args": ["-m", "amem.mcp_server"],
"env": {"AMEM_VAULT": "/path/to/vault", "AMEM_PASSPHRASE": "your-passphrase"}
}
}
}
Exposed tools: amem_remember, amem_recall, amem_export,
amem_import, amem_status. The passphrase lives only in your local
environment: the model never sees it. "New device" demo: amem_export ->
move the .amem file -> amem_import into a fresh vault -> amem_recall
and the AI already knows you.
Specification
The format is specified in an IETF Internet-Draft
(draft-ferro-apertomemory), with a normative CDDL schema and
machine-readable test vectors in this repository under spec/ and
test-vectors/.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apertomemory-0.1.2.tar.gz.
File metadata
- Download URL: apertomemory-0.1.2.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa62da990e5275571ef1341209172012576ca9352f88c6b7493f681de46bfd06
|
|
| MD5 |
b461988b470d15fba29080b53567c390
|
|
| BLAKE2b-256 |
7e9c39e0f664c5a082a6be8a8a251e8d31c6e334690493b0fb6fe4223d5ebc2a
|
File details
Details for the file apertomemory-0.1.2-py3-none-any.whl.
File metadata
- Download URL: apertomemory-0.1.2-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61b1d241040a0ca36a0e18e4b2f1608346a376b1aa17f6c76a6893799c9acd6f
|
|
| MD5 |
7da7ddf822716762dce71ae9dbb530b2
|
|
| BLAKE2b-256 |
99ad27c7cab8767f8b7c0c180db956275e0a967103ebb78436ffc0c0f9a0bf15
|