@GitHub_Daily: 现在越来越觉得,Claude Code 或 Codex 最大的问题,已经不是写不出代码。 而是它记不住,我们对话中聊过的方案、踩过的坑,以及项目开发进度等等信息。 偶然发现 EverOS 开源了一个 Claude Code 插件,给 AI…
摘要
该文章介绍了开源的EverOS项目,它为Claude Code等AI编码助手提供长期记忆能力,自动保存对话历史并在新对话中检索记忆,此外还包含多个应用案例。
查看缓存全文
缓存时间: 2026/05/20 14:33
现在越来越觉得,Claude Code 或 Codex 最大的问题,已经不是写不出代码。
而是它记不住,我们对话中聊过的方案、踩过的坑,以及项目开发进度等等信息。
偶然发现 EverOS 开源了一个 Claude Code 插件,给 AI 装上了能自我进化的长期记忆。
GitHub:http://github.com/EverMind-AI/EverOS…
一行命令安装插件后,与 Claude Code 的每次对话都会自动保存,新对话还会自动检索记忆。
还提供一个 GitHub 风格的记忆面板,可随时查看每个项目以往跟 Claude 的对话内容。
此外,EverOS 仓库里有超过 20 个真实落地的应用案例,Claude Code 插件只是其中一个。
还有学习陪伴助手、阿尔茨海默症患者记忆辅助、AI 可穿戴设备等等,均用到 EverOS 这个记忆框架。
而且所有案例均开源可用,我们可以直接克隆代码下来学习,或者进行二次开发变成自己的东西。
有需要的同学可以看下,也可以 Star 关注一下 EverOS 后续更多的落地案例开源。
EverMind-AI/EverOS
Source: https://github.com/EverMind-AI/EverOS
Table of Contents
- Project Overview
- Use Cases
- Quick Start
- Architecture Methods
- Benchmarks
- Evaluation
- Citations
- Stay Tuned
- Contributing
Project Overview
EverOS is a unified home for applying, building, and evaluating long-term memory in self-evolving agents. The repository is organized around three essential parts:
| Part | What it gives you | Start here |
|---|---|---|
| Use cases | Apps, demos, and integrations showing how memory changes real agent workflows. | use-cases/ |
| Architecture methods | Memory systems and algorithms you can run, extend, or compare. | methods/ |
| Benchmarks | Open evaluation suites for memory quality and agent self-evolution. | benchmarks/ |
At the center of EverOS is EverCore, a long-term memory operating system for agents. If you are new to the project, scan the use cases first to see what memory enables, then follow the Quick Start to run EverCore locally. The architecture and benchmark sections below give you the deeper reference material when you are ready to compare systems or reproduce results.
Use Cases
Use cases show what persistent memory makes possible in real products and workflows. Some examples are packaged in this repository; others point to external demos or integrations you can study and adapt.
Rokid AI Assistant with EverOSConnect to EverOS within Rokid Glasses enabling long-term memory for all of your smart activities. Coming soon |
Creative Assistant with MemoryCreative assistant with long-term memory, never forget your crativites anymore. Coming soon |
Earth Online Memory GameEarth Online is a memory-aware productivity game that turns everyday planning into a living quest log. |
Multi-Agent Orchestration PlatformGolutra presents a multi-agent workforce for engineering teams, extending the IDE model from a single assistant to coordinated agents. |
Your Personal Tasting UniverseRecord, visualize, and explore your tasting journey through an immersive 3D star map. |
EverOS Open HerBuild AI that feels. Open-source persona engine — personality emerges from neural drives, not prompts. Inspired by Her. |
Browser Agent for Personal MemoryRuminer brings persistent memory to a browser agent so it can carry personal context across web tasks. |
EverMem Sync with EverOSOne command to connect any AI coding CLI to EverMemOS long-term memory. |
MCO - Orchestrate AI Coding AgentsMCO equips your primary agent with an agent team that can work together to solve complex tasks. |
Study Buddy with Self-Evolving MemoryStudy proactively with an agent that has self-evolving memory. |
Alzheimer’s Memory AssistantEmpowering individuals with advanced memory support and daily assistance. |
Memory-Driven Multi-Agent NPC ExperienceAn iOS sci-fi mystery game where players explore and uncover the truth. |
Mobi CompanionAn iOS app where users create, nurture, and live with a personalized AI companion called Mobi. |
AI Wearable with MemoryA context-native AI wearable that listens to everyday life and converts conversations into memory. |
OpenClaw Agent MemoryA 24/7 agent workflow with continuous learning memory across sessions. |
Live2D Character with MemoryAdd long-term memory to a real-time Live2D character, powered by TEN Framework. |
Computer-Use with MemoryRun screenshot-based analysis with computer-use and store the results in memory. |
Game of Thrones MemoriesA demonstration of AI memory infrastructure through an interactive Q&A experience with A Game of Thrones. |
Claude Code PluginPersistent memory for Claude Code. Automatically saves and recalls context from past coding sessions. |
Memory Graph VisualizationExplore stored entities and relationships in a graph interface. Frontend demo; backend integration is in progress. |
Quick Start
Choose the path that matches your goal:
git clone https://github.com/EverMind-AI/EverOS.git
cd EverOS
| Goal | Component | Entry Point |
|---|---|---|
| Build agents with long-term memory | EverCore | methods/EverCore/ |
| Explore the hypergraph memory architecture | HyperMem | methods/HyperMem/ |
| Evaluate memory system quality | EverMemBench | benchmarks/EverMemBench/ |
| Measure agent self-evolution | EvoAgentBench | benchmarks/EvoAgentBench/ |
| Adapt an example app or integration | Use cases | use-cases/ |
Each component has its own installation guide, dependency configuration, and usage examples.
EverCore
The fastest way to run a memory system locally is to start with EverCore:
cd methods/EverCore
# Start Docker services
docker compose up -d
# Install dependencies
curl -LsSf https://astral.sh/uv/install.sh | sh
uv sync
# Configure API keys
cp env.template .env
# Edit .env and set:
# - LLM_API_KEY (for memory extraction)
# - VECTORIZE_API_KEY (for embedding/rerank)
# Start server
uv run python src/run.py
# Verify installation
curl http://localhost:1995/health
# Expected response: {"status": "healthy", ...}
Server runs at http://localhost:1995 · Full Setup Guide
Basic Usage
Store and retrieve memories with simple Python code:
import requests
API_BASE = "http://localhost:1995/api/v1"
# 1. Store a conversation memory
requests.post(f"{API_BASE}/memories", json={
"message_id": "msg_001",
"create_time": "2025-02-01T10:00:00+00:00",
"sender": "user_001",
"content": "I love playing soccer on weekends"
})
# 2. Search for relevant memories
response = requests.get(f"{API_BASE}/memories/search", json={
"query": "What sports does the user like?",
"user_id": "user_001",
"memory_types": ["episodic_memory"],
"retrieve_method": "hybrid"
})
result = response.json().get("result", {})
for memory_group in result.get("memories", []):
print(f"Memory: {memory_group}")
More Examples · API Reference · Interactive Demos
Architecture Methods
These are the memory architectures currently included in EverOS. Use them as runnable systems, research references, or starting points for your own agent memory layer.
EverCoreA self-organizing memory operating system inspired by biological imprinting. Extracts, structures, and retrieves long-term knowledge from conversations so agents can remember, understand, and continuously evolve. LoCoMo 93.05% · LongMemEval 83.00% |
HyperMemA hypergraph-based hierarchical memory architecture that captures high-order associations through hyperedges, with topic, event, and fact layers for coarse-to-fine conversation retrieval. LoCoMo 92.73% |
Benchmarks
These benchmarks provide shared standards for measuring memory quality and agent self-evolution across systems.
EverMemBenchThree-layer memory quality evaluation: factual recall, applied reasoning, and personalized generalization. |
EvoAgentBenchAgent self-evolution evaluation through longitudinal growth curves, transfer efficiency, error avoidance, and skill-hit quality. |
Evaluation
Use the evaluation runner to reproduce EverCore results or compare another memory system against the same benchmark tasks.
Benchmark Results
Supported Benchmarks
- LoCoMo — Long-context memory benchmark with single/multi-hop reasoning
- LongMemEval — Multi-session conversation evaluation
- PersonaMem — Persona-based memory evaluation
Run Evaluations
cd methods/EverCore
# Install evaluation dependencies
uv sync --group evaluation
# Run smoke test (quick verification)
uv run python -m evaluation.cli --dataset locomo --system everos --smoke
# Run full evaluation
uv run python -m evaluation.cli --dataset locomo --system everos
# View results
cat evaluation/results/locomo-everos/report.txt
Full Evaluation Guide · Complete Results
Citations
If EverOS helps your research, please cite the relevant paper:
@article{hu2026evermemos,
title = {EverMemOS: A Self-Organizing Memory Operating System for Structured Long-Horizon Reasoning},
author = {Chuanrui Hu and Xingze Gao and Zuyi Zhou and Dannong Xu and Yi Bai and Xintong Li and Hui Zhang and Tong Li and Chong Zhang and Lidong Bing and Yafeng Deng},
journal = {arXiv preprint arXiv:2601.02163},
year = {2026}
}
@article{yue2026hypermem,
title = {HyperMem: Hypergraph Memory for Long-Term Conversations},
author = {Juwei Yue and Chuanrui Hu and Jiawei Sheng and Zuyi Zhou and Wenyuan Zhang and Tingwen Liu and Li Guo and Yafeng Deng},
journal = {arXiv preprint arXiv:2604.08256},
year = {2026}
}
@article{hu2026evaluating,
title = {Evaluating Long-Horizon Memory for Multi-Party Collaborative Dialogues},
author = {Chuanrui Hu and Tong Li and Xingze Gao and Hongda Chen and Yi Bai and Dannong Xu and Tianwei Lin and Xiaohong Li and Yunyun Han and Jian Pei and Yafeng Deng},
journal = {arXiv preprint arXiv:2602.01313},
year = {2026}
}
Stay Tuned
Star the repo or join the community links above to follow new architecture methods, benchmark releases, and memory-enabled use cases.
Contributing
Contributions are welcome across the whole repository: architecture methods, benchmark coverage, use-case examples, documentation, and bug fixes. Browse Issues to find a good entry point, then open a PR when you are ready.
Welcome all kinds of contributions 🎉
Help make EverOS better. Code, documentation, benchmark reports, use-case write-ups, and integration examples are all valuable. Share your projects on social media to inspire others.
Connect with one of the EverOS maintainers @elliotchen200 on 𝕏 or @cyfyifanchen on GitHub for project updates, discussions, and collaboration opportunities.
Code Contributors
Contribution Guidelines
Read the Contribution Guidelines for setup, pull request expectations, and use-case submission notes. For responsible disclosure, see the Security Policy.
License, Conduct, and Acknowledgments
Apache 2.0 • Code of Conduct • Acknowledgments
相似文章
@billtheinvestor: 给 Claude Code 和 Codex 无限记忆,编程效率提升92%!Agentmemory 工具已在 GitHub 上火速获得4000+个星标,完全免费。 它通过智能压缩保存你编程会话的所有信息,未来会话中自动提取相关上下文,避免重…
Agentmemory 是一个开源工具,为 Claude Code 和 Codex 提供无限记忆功能,通过智能压缩减少 token 使用量,提升编程效率,已在 GitHub 获得 4000+ 星标。
@elliotchen100: 我们的开源库 EverOS 最近做了一次大重构,开发者体验也完成了从“拉”到“夯”的转变。 以前做 AI memory,经常是在数据库、向量库、索引同步、依赖环境之间来回排查。 记忆到底存在哪?为什么没召回?索引是不是坏了?很多时候都不直…
EverOS 开源库完成大重构,将原始记忆直接存储为 Markdown 文件,辅以 SQLite 管理状态、LanceDB 处理检索,显著提升开发者可读性、可修改性和故障恢复能力。
@ai_super_niko: 1/5 用 Claude Code 写代码,切到 Codex 做 review,再切回来改。 每次切换都是一次思路谋杀。 你不是在写代码,你在疲于奔命。 直到 OpenAI 给竞争对手 Claude Code,出了一个官方插件:`code…
OpenAI 为竞争对手 Claude Code 推出了官方插件 codex-plugin-cc,用于在 Claude Code 中集成 Codex 进行代码审查,引发了关于工作流切换效率的讨论。
@WY_mask: 给各类 AI 编程助手打造持久化记忆引擎 http://github.com/rohitg00/agentmemory… 在后台静默记录代码修改和上下文 自动提取并压缩成结构化记忆 节省长上下文带来的 Token 消耗 关联过去的信息,随…
agentmemory 是一个为 AI 编程助手提供持久化记忆的开源工具,能静默记录代码修改和上下文,自动提取并压缩成结构化记忆,降低 Token 消耗,并支持 Claude Code、Codex 等多种主流平台。
@nash_su: 官方给出的 Claude Code 在大型代码库中的最佳实践 当然同样的方法论也可以用在 Codex 或任何 Agent 上,AI 会犯错,会糊弄人,项目越大 AI 债越多,文章中是一些基本的防护和优化方式。 本文使用 http://Wi…
官方给出的Claude Code在大型代码库中的最佳实践,同样适用于Codex或其他AI Agent,介绍了基本的防护和优化方式。