Vendor-agnostic cognitive persistence layer for AI agents.
Project description
Universal Memory (umem)
A vendor-agnostic cognitive persistence layer for AI agents. Eliminate the "repetition tax" by transporting your context, preferences, guidelines, and history seamlessly across sessions, IDEs, and LLM models.
To see the core idea visually, check out the Excalidraw design or the proposal structure:
Diagram Breakdown (English Translation)
- Short-Term Memory (Ephemeral): Project-specific (folder-level) memories. A simple summary of recent changes, pending tasks, and project or task-level constraints.
- Agents Behaviours: Comports the user's expected agent behaviors. Instead of requesting the same settings in every session, the agent understands the user by their traits, thoughts, and any context key to enhancing the overall experience. This encompasses:
- Long-Term Memory
- Short-Term Memory
- User Preferences
- Skill Creator: Encapsulates understanding of specific workflows. When a user explains a task pattern multiple times, the system translates it into structured, reusable agent skills.
- Unified Instruction File (
AGENT.MD): The shared persistence endpoint consumed by all local agent instances (e.g., Agent A, Agent B, Agent C).
The Problem: The "Repetition Tax"
Every time you open a new session in Claude Code, start a new chat in Cursor, spin up a terminal with OpenCode, or invoke a local AI assistant, you pay a steep cognitive tax:
- Re-explaining your stack (e.g., "We use Python 3.12, Typer, and Ruff").
- Repeating coding style preferences (e.g., "Prefer functional design, do not write docstrings unless requested").
- Copy-pasting database connection schemas or module layouts.
- Explaining workflow methodologies (e.g., "We follow Spec-Driven Development (SDD)").
Universal Memory acts as a local "Cognitive USB Drive" that automatically connects to your AI runtimes, aligning them to your exact workflow, context, and rules with zero friction.
Key Architectural Concepts
1. Dual-Memory Model
- Short-Term Memory (Project Scope): Ephemeral, directory-specific context. Tracks what you did 10 minutes ago, current active tasks, and immediate constraints.
- Universal Memory (Global Scope): Long-lived preferences, style guidelines, tool configurations, and identity.
2. Auto-Adaptation Engine
Instead of copy-pasting instructions, umem monitors your session context and automatically updates active project instruction manifests (AGENTS.md, CLAUDE.md, .cursor/rules/, etc.), enforcing operational consistency across all agents.
3. Model Context Protocol (MCP) Integration
Integrate umem natively with any client supporting the standard MCP (such as Claude Desktop or Cursor). AI agents can programmatically retrieve context, learn new facts, and suggest skills on the fly.
4. Agent Skills Standard
Encapsulates complex, repetitive procedural instructions into formal Agent Skills (conforming to the agentskills.io standard), complete with structured directories containing SKILL.md instructions, helper scripts/, and documentation references/.
Installation & Setup
Ensure you have Python 3.12+ installed. You can run or install umem using your preferred package manager.
Run instantly with uv (Recommended)
You don't even need to install it permanently:
uvx umem --help
Install via PyPI
pip install universal-memory
Quick Start Guide
1. Initialize your project
Initialize umem in the current directory and hook it to your preferred runtimes/agents:
umem init --runtime claude-code --runtime opencode --runtime cursor
This sets up a local repository configuration, hooks up the necessary workspace instructions (AGENTS.md, CLAUDE.md), and prepares native skill folders.
2. Save your first preferences and facts
Tell umem what to keep in mind. You can target either the project scope (this folder) or the global scope (across all projects):
# Save a global preference
umem remember --scope global "Yan is a solutions architect specializing in AI applications"
# Save a project-specific constraint
umem remember --scope project "Always use Tomllib instead of PyYAML for configuration files" --tag config
3. Retrieve Context
Verify the consolidated context summary generated by combining short-term facts, rules, and global preferences:
umem context --scope project
4. Check status and health
umem status
Host Integration & Support Matrix
umem maps cognitive context and agent skills directly into native runtime paths:
| Runtime / Host | Support Tier | Config / Instructions Target |
|---|---|---|
| Claude Code | Tier 1 (Full) | CLAUDE.md, .claude/, ~/.claude/ |
| OpenCode | Tier 1 (Full) | AGENTS.md, .opencode/, ~/.config/opencode/ |
| Codex (OpenAI) | Tier 1 (Full) | AGENTS.md, workspace configuration files |
| Cursor | Tier 2 (Basic) | .cursor/rules/, ~/.cursor/ |
| Antigravity / Gemini | Tier 2 (Basic) | GEMINI.md, ~/.gemini/ |
Running as an Model Context Protocol (MCP) Server
AI agents can interact directly with your memory over the Model Context Protocol.
CLI Launch Command
umem-mcp
Example Config: Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"universal-memory": {
"command": "uv",
"args": [
"run",
"--package",
"universal-memory",
"umem-mcp"
]
}
}
}
Safety & Guardrails
- API Secret Scanner:
umempasses all incoming facts through a passive scanner to block API keys, tokens, or credentials from being stored in your persistent cognitive base. - Snapshots & Rollbacks: Every automated update to your config files (
AGENTS.md,CLAUDE.md) is preceded by a snapshot backup. You can rollback anytime:# View audit logs umem audit list --scope project # Revert last automated modification umem rollback --scope project
- Update Conflict Warnings: When updating canonical skills, if
umemdetects manual edits in local runtime rule directories (e.g..cursor/rules/sdd-rules.md), it prompts you interactivelly to choose whether to keep your local edits or overwrite them, preventing workflow disruption.
Managing Agent Skills
You can create, list, and sync specialized behaviors:
# List all active skills
umem skills list
# Synchronize skills into active native runtime folders
umem update --skills
# Generate a new skill template from a latent skill proposal
umem skills generate --name build-standard
License
Distributed under the MIT License. See LICENSE for more information.
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 universal_memory-0.1.0.tar.gz.
File metadata
- Download URL: universal_memory-0.1.0.tar.gz
- Upload date:
- Size: 101.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85fbf73cb094a91165f9a8bb087a0e2c1d90539f858f74bfa76c80e7432a5640
|
|
| MD5 |
86b5f1bb51c28a8d4002630158259249
|
|
| BLAKE2b-256 |
045df83974cdd4cb85f05ecab1825a65ba6d655aab2ee09357d592eeec0ed8b3
|
File details
Details for the file universal_memory-0.1.0-py3-none-any.whl.
File metadata
- Download URL: universal_memory-0.1.0-py3-none-any.whl
- Upload date:
- Size: 148.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
350e4b98f603b07ac8cd1d9dd15629cfd7b72d17b50da6f4653fd4564969ab45
|
|
| MD5 |
fb098561fcd5b3f45006dc48674becc0
|
|
| BLAKE2b-256 |
b0a3e3870eb149f8fe5ae6cc9083a6294f0dde81ef379d3bce92e97c95f302bb
|