RCLL — self-hosted shared memory for a team of AI agents. Canonical repository; pushed out to github.com/Holetron-lab/fleet-memory. Fork of vectorize-io/hindsight (MIT). https://rcll.ai
Find a file
2025-11-24 15:09:17 +01:00
.github/workflows Create deploy-docs.yml 2025-11-24 15:09:17 +01:00
docker Fix docker issues and dependencies 2025-11-22 17:13:58 -07:00
helm Release v0.0.7 2025-11-13 13:51:56 +01:00
memora add docs and some fixes 2025-11-24 14:54:57 +01:00
memora-cli add cli config and mcp 2025-11-21 17:13:31 +01:00
memora-clients merge mcp 2025-11-20 19:16:22 +01:00
memora-control-plane Fix dependencies and docker 2025-11-22 14:05:07 -07:00
memora-dev Fix broken dependency 2025-11-23 07:10:15 -07:00
memora-docs add docs and some fixes 2025-11-24 14:54:57 +01:00
memora-langmem add docs and some fixes 2025-11-24 14:54:51 +01:00
memora-openai more 2025-11-19 16:28:02 +01:00
scripts more 2025-11-19 16:28:02 +01:00
.env.example merge mcp 2025-11-20 19:16:22 +01:00
.gitignore Fix dependencies and docker 2025-11-22 14:05:07 -07:00
.python-version initial commit 2025-10-30 12:53:12 +01:00
.sesskey papers and fixes 2025-11-14 14:07:41 +01:00
CLAUDE.md improvements 2025-10-30 18:54:06 +01:00
openapi.json more 2025-11-19 16:28:02 +01:00
PAPER_PERSONALITY.md papers and fixes 2025-11-14 14:07:41 +01:00
PAPER_RETRIEVAL.md t5 2025-11-17 18:19:25 +01:00
pyproject.toml more 2025-11-19 16:28:02 +01:00
README.md add docs and some fixes 2025-11-24 14:54:51 +01:00
RELEASE.md refactori api 2025-11-13 13:51:42 +01:00
uv.lock Fix broken dependency 2025-11-23 07:10:15 -07:00

Memora

Long-term memory for AI agents.

AI assistants forget everything between sessions. Memora fixes that with a memory system that handles temporal reasoning, entity connections, and personality-aware responses.

Why Memora?

  • Temporal queries — "What did Alice do last spring?" requires more than vector search
  • Entity connections — Knowing "Alice works at Google" + "Google is in Mountain View" = "Alice works in Mountain View"
  • Agent opinions — Agents form and recall beliefs with confidence scores
  • Personality — Big Five traits influence how agents process and respond to information

5-Minute Setup

1. Start the server

# Clone and start with Docker
git clone https://github.com/anthropics/memora.git
cd memora/docker
./start.sh

Server runs at http://localhost:8080

2. Install the Python client

pip install memora-client

3. Use it

from memora_client import Memora

client = Memora(base_url="http://localhost:8080")

# Store memories
client.store(agent_id="my-agent", content="Alice works at Google")
client.store(agent_id="my-agent", content="Bob prefers Python over JavaScript")

# Search memories
results = client.search(agent_id="my-agent", query="What does Alice do?")
for r in results:
    print(f"{r['text']} ({r['weight']:.2f})")

# Generate personality-aware responses
answer = client.think(agent_id="my-agent", query="Tell me about Alice")
print(answer["text"])

Documentation

Full documentation: memora-docs

License

MIT