diff --git a/README.zh-CN.md b/README.zh-CN.md
index c1d3ea18..33ccb8ac 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -642,48 +642,41 @@ Claude Code 的持久记忆插件。自动保存并回忆过去 coding sessions
## EverMind 生态
-EverMind 是一个面向长期记忆、自进化 Agent、AI-native interfaces 和记忆评测的开源生态。
+EverMind 将记忆研究、可直接使用的产品与实际集成连接为一个开源生态。
-
+### 产品
+
+| 项目 | 定位 |
+|---|---|
+| [EverOS](https://github.com/EverMind-AI/EverOS) | 本地优先、Markdown 原生的 Agent 与用户长期记忆运行时。 |
+| [Raven](https://github.com/EverMind-AI/Raven) | 以记忆为核心的自进化 Agent Harness,具备主动性、上下文控制与 Skill 进化能力。 |
+| [EverMe](https://github.com/EverMind-AI/EverMe) | 面向跨设备、跨 Agent 个人记忆的 CLI 与 Agent 插件套件。 |
+
+### 研究与评测
+
+| 项目 | 研究方向 |
+|---|---|
+| [SkillCorpus](https://github.com/EverMind-AI/SkillCorpus) | 将分散的 Agent Skill 整理为可检索语料库,并提供检索与评测工具。 |
+| [EverAlgo](https://github.com/EverMind-AI/EverAlgo) | 为 EverOS 提供无状态的提取、排序、解析与记忆算法。 |
+| [HyperMem](https://github.com/EverMind-AI/HyperMem) | 基于超图的分层记忆架构,用于由粗到细的长期对话检索。 |
+| [MSA](https://github.com/EverMind-AI/MSA) | 面向可扩展潜在记忆与一亿 Token 上下文的 Memory Sparse Attention。 |
+| [EverMemBench](https://github.com/EverMind-AI/EverMemBench) | 从事实召回、应用推理和个性化泛化三个层面评测记忆系统。 |
+| [EvoAgentBench](https://github.com/EverMind-AI/EvoAgentBench) | 纵向评测 Agent 自进化、迁移效率、错误规避和 Skill 使用能力。 |
+
+### 插件与集成
+
+官方集成统一维护在
+[EverMind plugins 仓库](https://github.com/EverMind-AI/plugins)。
+
+| 平台 | EverOS 集成 |
+|---|---|
+| [OpenClaw](https://docs.openclaw.ai) | [OpenClaw 插件](https://github.com/EverMind-AI/plugins/tree/main/openclaw),自动管理召回、写入与会话记忆生命周期。 |
+| [Hermes Agent](https://github.com/NousResearch/hermes-agent) | [Hermes 插件](https://github.com/EverMind-AI/plugins/tree/main/hermes),为 Hermes 会话提供持久记忆。 |
+| [DeepSeek Harness](https://github.com/deepseek-ai/DeepSeek-Harness) | [DSH 插件](https://github.com/EverMind-AI/plugins/tree/main/dsh),让 DeepSeek Harness Agent 使用长期记忆。 |
+| [Dify](https://dify.ai) | [本地版](https://github.com/EverMind-AI/plugins/tree/main/dify)与[云端版](https://github.com/EverMind-AI/plugins/tree/main/dify_cloud)工具,在工作流和 Agent 中显式搜索与写入记忆。 |
-这些仓库共同构成 EverMind 的 research-to-runtime stack:新的记忆方法、
-可复用算法、benchmark evidence,以及可落地的 Agent 集成。
+这些项目共同构成 EverMind 从研究到运行时的完整链路:将方法与评测转化为
+可复用的记忆基础设施、产品和 Agent 集成。
From 637c6479d34d21ac978cadb2b8474e5318051aa0 Mon Sep 17 00:00:00 2001
From: YangtzeSeventh <1368653777@qq.com>
Date: Wed, 26 Aug 2026 14:31:07 +0800
Subject: [PATCH 2/4] docs: group ecosystem entries in one table
---
README.md | 97 ++++++++++++++++++++++++++++++++++---------------
README.zh-CN.md | 97 ++++++++++++++++++++++++++++++++++---------------
2 files changed, 134 insertions(+), 60 deletions(-)
diff --git a/README.md b/README.md
index 773a39c7..68b6a00a 100644
--- a/README.md
+++ b/README.md
@@ -646,36 +646,73 @@ Explore stored entities and relationships in a graph interface. Frontend demo; b
EverMind connects memory research, production-ready products, and practical
integrations into one open-source ecosystem.
-### Products
-
-| Project | Role |
-|---|---|
-| [EverOS](https://github.com/EverMind-AI/EverOS) | A local-first, Markdown-native long-term memory runtime for agents and users. |
-| [Raven](https://github.com/EverMind-AI/Raven) | A memory-first, self-improving agent harness with proactivity, context control, and skill evolution. |
-| [EverMe](https://github.com/EverMind-AI/EverMe) | A CLI and agent plugin suite for cross-device, cross-agent personal memory. |
-
-### Research & Evaluation
-
-| Project | Focus |
-|---|---|
-| [SkillCorpus](https://github.com/EverMind-AI/SkillCorpus) | Curated, retrieval-ready agent skill corpora with retrieval and evaluation tooling. |
-| [EverAlgo](https://github.com/EverMind-AI/EverAlgo) | Stateless extraction, ranking, parsing, and memory operators that power EverOS. |
-| [HyperMem](https://github.com/EverMind-AI/HyperMem) | Hypergraph-based hierarchical memory for coarse-to-fine long-term conversation retrieval. |
-| [MSA](https://github.com/EverMind-AI/MSA) | Memory Sparse Attention for scalable latent memory and 100M-token contexts. |
-| [EverMemBench](https://github.com/EverMind-AI/EverMemBench) | Evaluation of factual recall, applied reasoning, and personalized generalization in memory systems. |
-| [EvoAgentBench](https://github.com/EverMind-AI/EvoAgentBench) | Longitudinal evaluation of agent self-evolution, transfer efficiency, error avoidance, and skill use. |
-
-### Integrations
-
-Official integrations are maintained in the
-[EverMind plugins repository](https://github.com/EverMind-AI/plugins).
-
-| Platform | EverOS integration |
-|---|---|
-| [OpenClaw](https://docs.openclaw.ai) | [OpenClaw plugin](https://github.com/EverMind-AI/plugins/tree/main/openclaw) for automatic recall, capture, and session-memory lifecycle management. |
-| [Hermes Agent](https://github.com/NousResearch/hermes-agent) | [Hermes plugin](https://github.com/EverMind-AI/plugins/tree/main/hermes) for persistent memory across Hermes sessions. |
-| [DeepSeek Harness](https://github.com/deepseek-ai/DeepSeek-Harness) | [DSH plugin](https://github.com/EverMind-AI/plugins/tree/main/dsh) for memory-aware DeepSeek Harness agents. |
-| [Dify](https://dify.ai) | [Self-hosted](https://github.com/EverMind-AI/plugins/tree/main/dify) and [cloud](https://github.com/EverMind-AI/plugins/tree/main/dify_cloud) tools for explicit memory search and storage in workflows and agents. |
+
+
+| Products |
+
+
+| EverOS |
+A local-first, Markdown-native long-term memory runtime for agents and users. |
+
+
+| Raven |
+A memory-first, self-improving agent harness with proactivity, context control, and skill evolution. |
+
+
+| EverMe |
+A CLI and agent plugin suite for cross-device, cross-agent personal memory. |
+
+
+| Research & Evaluation |
+
+
+| SkillCorpus |
+Curated, retrieval-ready agent skill corpora with retrieval and evaluation tooling. |
+
+
+| EverAlgo |
+Stateless extraction, ranking, parsing, and memory operators that power EverOS. |
+
+
+| HyperMem |
+Hypergraph-based hierarchical memory for coarse-to-fine long-term conversation retrieval. |
+
+
+| MSA |
+Memory Sparse Attention for scalable latent memory and 100M-token contexts. |
+
+
+| EverMemBench |
+Evaluation of factual recall, applied reasoning, and personalized generalization in memory systems. |
+
+
+| EvoAgentBench |
+Longitudinal evaluation of agent self-evolution, transfer efficiency, error avoidance, and skill use. |
+
+
+| Integrations |
+
+
+| OpenClaw |
+OpenClaw plugin for automatic recall, capture, and session-memory lifecycle management. |
+
+
+| Hermes Agent |
+Hermes plugin for persistent memory across Hermes sessions. |
+
+
+| DeepSeek Harness |
+DSH plugin for memory-aware DeepSeek Harness agents. |
+
+
+| Dify |
+Self-hosted and cloud tools for explicit memory search and storage in workflows and agents. |
+
+
+| Integration Hub |
+Browse all official integrations in the EverMind plugins repository. |
+
+
Together, these projects form EverMind's research-to-runtime stack: methods
and benchmarks become reusable memory infrastructure, products, and agent
diff --git a/README.zh-CN.md b/README.zh-CN.md
index 33ccb8ac..a732f31f 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -644,36 +644,73 @@ Claude Code 的持久记忆插件。自动保存并回忆过去 coding sessions
EverMind 将记忆研究、可直接使用的产品与实际集成连接为一个开源生态。
-### 产品
-
-| 项目 | 定位 |
-|---|---|
-| [EverOS](https://github.com/EverMind-AI/EverOS) | 本地优先、Markdown 原生的 Agent 与用户长期记忆运行时。 |
-| [Raven](https://github.com/EverMind-AI/Raven) | 以记忆为核心的自进化 Agent Harness,具备主动性、上下文控制与 Skill 进化能力。 |
-| [EverMe](https://github.com/EverMind-AI/EverMe) | 面向跨设备、跨 Agent 个人记忆的 CLI 与 Agent 插件套件。 |
-
-### 研究与评测
-
-| 项目 | 研究方向 |
-|---|---|
-| [SkillCorpus](https://github.com/EverMind-AI/SkillCorpus) | 将分散的 Agent Skill 整理为可检索语料库,并提供检索与评测工具。 |
-| [EverAlgo](https://github.com/EverMind-AI/EverAlgo) | 为 EverOS 提供无状态的提取、排序、解析与记忆算法。 |
-| [HyperMem](https://github.com/EverMind-AI/HyperMem) | 基于超图的分层记忆架构,用于由粗到细的长期对话检索。 |
-| [MSA](https://github.com/EverMind-AI/MSA) | 面向可扩展潜在记忆与一亿 Token 上下文的 Memory Sparse Attention。 |
-| [EverMemBench](https://github.com/EverMind-AI/EverMemBench) | 从事实召回、应用推理和个性化泛化三个层面评测记忆系统。 |
-| [EvoAgentBench](https://github.com/EverMind-AI/EvoAgentBench) | 纵向评测 Agent 自进化、迁移效率、错误规避和 Skill 使用能力。 |
-
-### 插件与集成
-
-官方集成统一维护在
-[EverMind plugins 仓库](https://github.com/EverMind-AI/plugins)。
-
-| 平台 | EverOS 集成 |
-|---|---|
-| [OpenClaw](https://docs.openclaw.ai) | [OpenClaw 插件](https://github.com/EverMind-AI/plugins/tree/main/openclaw),自动管理召回、写入与会话记忆生命周期。 |
-| [Hermes Agent](https://github.com/NousResearch/hermes-agent) | [Hermes 插件](https://github.com/EverMind-AI/plugins/tree/main/hermes),为 Hermes 会话提供持久记忆。 |
-| [DeepSeek Harness](https://github.com/deepseek-ai/DeepSeek-Harness) | [DSH 插件](https://github.com/EverMind-AI/plugins/tree/main/dsh),让 DeepSeek Harness Agent 使用长期记忆。 |
-| [Dify](https://dify.ai) | [本地版](https://github.com/EverMind-AI/plugins/tree/main/dify)与[云端版](https://github.com/EverMind-AI/plugins/tree/main/dify_cloud)工具,在工作流和 Agent 中显式搜索与写入记忆。 |
+
这些项目共同构成 EverMind 从研究到运行时的完整链路:将方法与评测转化为
可复用的记忆基础设施、产品和 Agent 集成。
From 1fc972e60ffaf2b5a9ef3697b2fd6d95d253045c Mon Sep 17 00:00:00 2001
From: YangtzeSeventh <1368653777@qq.com>
Date: Wed, 26 Aug 2026 14:41:11 +0800
Subject: [PATCH 3/4] docs: link ecosystem integration header
---
README.md | 6 +-----
README.zh-CN.md | 6 +-----
2 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index 68b6a00a..c3da2795 100644
--- a/README.md
+++ b/README.md
@@ -690,7 +690,7 @@ integrations into one open-source ecosystem.
Longitudinal evaluation of agent self-evolution, transfer efficiency, error avoidance, and skill use. |
-| Integrations |
+Integrations |
| OpenClaw |
@@ -708,10 +708,6 @@ integrations into one open-source ecosystem.
Dify |
Self-hosted and cloud tools for explicit memory search and storage in workflows and agents. |
-
-| Integration Hub |
-Browse all official integrations in the EverMind plugins repository. |
-
Together, these projects form EverMind's research-to-runtime stack: methods
diff --git a/README.zh-CN.md b/README.zh-CN.md
index a732f31f..99247287 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -688,7 +688,7 @@ EverMind 将记忆研究、可直接使用的产品与实际集成连接为一
纵向评测 Agent 自进化、迁移效率、错误规避和 Skill 使用能力。 |
-| 插件与集成 |
+插件与集成 |
| OpenClaw |
@@ -706,10 +706,6 @@ EverMind 将记忆研究、可直接使用的产品与实际集成连接为一
Dify |
本地版与云端版工具,在工作流和 Agent 中显式搜索与写入记忆。 |
-
-| 集成中心 |
-在 EverMind plugins 仓库浏览全部官方集成。 |
-
这些项目共同构成 EverMind 从研究到运行时的完整链路:将方法与评测转化为
From 39b9cb7b81fbb83d9f9fc308ad7c801fddcdb668 Mon Sep 17 00:00:00 2001
From: YangtzeSeventh <1368653777@qq.com>
Date: Wed, 26 Aug 2026 15:16:36 +0800
Subject: [PATCH 4/4] docs: label EverMe CLI in ecosystem
---
README.md | 2 +-
README.zh-CN.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index c3da2795..a51f2f75 100644
--- a/README.md
+++ b/README.md
@@ -659,7 +659,7 @@ integrations into one open-source ecosystem.
A memory-first, self-improving agent harness with proactivity, context control, and skill evolution. |
-| EverMe |
+EverMe (CLI) |
A CLI and agent plugin suite for cross-device, cross-agent personal memory. |
diff --git a/README.zh-CN.md b/README.zh-CN.md
index 99247287..45d599ef 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -657,7 +657,7 @@ EverMind 将记忆研究、可直接使用的产品与实际集成连接为一
| 以记忆为核心的自进化 Agent Harness,具备主动性、上下文控制与 Skill 进化能力。 |
-| EverMe |
+EverMe(CLI) |
面向跨设备、跨 Agent 个人记忆的 CLI 与 Agent 插件套件。 |