Cortex-Mem: A Production-Ready Memory Framework for Autonomous AI Systems
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Cortex-Mem is a production-ready, AI-native memory framework built in Rust, providing intelligent long-term memory for autonomous systems. It features a hierarchical three-tier memory architecture for efficient information management, from extraction and search to automated optimization. This framework empowers AI agents to remember, learn, and personalize interactions across sessions, transforming stateless AI into context-aware partners.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Cortex-Mem is a production-ready, AI-native memory framework built in Rust, designed to provide autonomous systems with intelligent long-term memory. It moves beyond simple chat history, offering a sophisticated, hierarchical three-tier memory architecture, from extraction and search to automated optimization. This framework empowers AI agents, such as those in Embodied-AI and OpenClaw, with the ability to remember, learn, and personalize interactions across sessions.
At its core, Cortex-Mem utilizes a hybrid storage architecture, combining virtual-filesystem durability with high-performance vector-based semantic search. It comes with out-of-the-box support for SKILL, CLI, API, MCP, and an insights dashboard, making it a comprehensive solution for building truly intelligent, context-aware applications.
Why Use Cortex-Mem?
Cortex-Mem transforms stateless AI into an intelligent, context-aware partner. Before Cortex-Mem, AI often forgets user details, lacks personalization, and repeats questions, leading to robotic and impersonal interactions. With Cortex-Mem, AI agents remember user preferences and history, provide deeply personalized interactions, learn and adapt over time, and maintain context across multiple conversations. This allows them to build rapport and feel like a true assistant.
It is ideal for developers building LLM-powered chatbots and agents, teams creating personalized AI assistants, and open-source projects requiring a robust memory backbone. Cortex-Mem has also demonstrated superior performance and token efficiency in benchmarks, achieving significantly higher scores with fewer tokens compared to other systems.
Installation
To get started with Cortex-Mem, you will need:
- Rust (version 1.86 or later)
- Qdrant vector database (version 1.7+)
- An OpenAI-compatible LLM API endpoint for memory extraction and analysis
- An OpenAI-compatible Embedding API endpoint for vector search
The simplest way to install the core components is via cargo:
# Install the CLI for command-line management
cargo install --path cortex-mem-cli
# Install the REST API Service for application integration
cargo install --path cortex-mem-service
# Install the MCP server for AI assistant integrations
cargo install --path cortex-mem-mcp
Cortex-Mem applications are configured via a config.toml file, which specifies details for Qdrant, LLM, embedding services, and the data directory.
Examples
The cortex-mem-cli provides a powerful interface for direct interaction with the memory system. All commands require a config.toml file and can use the --tenant flag for multi-tenant isolation.
Add a Memory:
Adds a new message to a session thread.
cortex-mem --config config.toml --tenant acme add --thread thread-123 --role user "The user is interested in Rust programming."
Search for Memories:
Performs a semantic vector search across the memory store.
cortex-mem --config config.toml --tenant acme search "what are the user's hobbies?" --thread thread-123 --limit 10
List Memories:
Retrieves a list of memories from a specific URI path.
cortex-mem --config config.toml --tenant acme list --uri "cortex://session" --include-abstracts
Get a Specific Memory:
Retrieves a specific memory by its URI.
cortex-mem --config config.toml --tenant acme get "cortex://session/thread-123/memory-456.md"
Session Management:
Create and close conversation sessions. Closing a session triggers memory extraction and indexing.
# Create a new session
cortex-mem --config config.toml --tenant acme session create thread-456 --title "My Session"
# Close a session
cortex-mem --config config.toml --tenant acme session close thread-456
Links
Related repositories
Similar repositories that may be relevant next.

vibe-kanban-local: A Self-Contained Kanban for AI Coding Agents
September 8, 2026
vibe-kanban-local is a robust, local-only fork of the original BloopAI/vibe-kanban project, maintained after its upstream sunset. It provides a self-contained, single-user kanban board, allowing developers to integrate over ten different AI coding agents directly into their workflow without any cloud dependencies or logins. This tool is ideal for enhancing productivity with AI assistance in a private, offline environment.

Ralph Orchestrator, An Advanced Framework for Autonomous AI Agent Orchestration
September 6, 2026
Ralph Orchestrator is a robust, Rust-based framework designed for autonomous AI agent orchestration. It implements the innovative "Ralph Wiggum technique," a methodology focused on continuous iteration to ensure AI agents complete complex tasks effectively. This powerful tool supports multiple AI backends and offers features like a "hat system" for specialized personas and human-in-the-loop interaction via Telegram.

AgentFS: The Filesystem Designed for AI Agents and Their State Management
September 5, 2026
AgentFS is an innovative filesystem specifically engineered for AI agents, providing robust storage abstractions. It leverages SQLite to offer auditability, reproducibility, and portability for agent states, tool calls, and file operations. This solution simplifies debugging, analysis, and deployment of AI agents by encapsulating their entire runtime into a single, queryable database file.

ADK-Rust: Build AI Agents in Rust with a Powerful Development Kit
September 1, 2026
ADK-Rust is a robust Agent Development Kit (ADK) for building AI agents in Rust. It offers a flexible framework with modular components for models, tools, memory, and real-time voice capabilities. Designed to be model-agnostic and deployment-agnostic, ADK-Rust empowers developers to create powerful and efficient AI agents.
Source repository
Open the original repository on GitHub.
15 counted GitHub visits