---
README.md | 106 +++++++++++++++++++-----------------------------
README_CN.md | 107 +++++++++++++++++++------------------------------
README_JP.md | 111 +++++++++++++++++++--------------------------------
3 files changed, 123 insertions(+), 201 deletions(-)
diff --git a/README.md b/README.md
index 1302cfa..7c1e60e 100644
--- a/README.md
+++ b/README.md
@@ -1,78 +1,30 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-[English](README.md) | [中文](README_CN.md) | [日本語](README_JP.md)
-
# PowerMem — Intelligent Memory for AI Applications
-PowerMem is a persistent memory layer for AI applications. It combines vector, full-text, and graph retrieval with LLM-driven memory extraction and time decay (Ebbinghaus-style forgetting), multi-agent isolation and collaboration, user profiles, and multimodal signals (text, image, audio).
-
-Python SDK, CLI (`pmem`), HTTP API Server (with Dashboard), and MCP Server share one `.env` configuration. See [.env.example](.env.example) and the [configuration guide](docs/guides/0003-configuration.md).
-
-> **News:** [OpenClaw](https://github.com/openclaw-ai/openclaw) can use PowerMem as long-term memory via [`memory-powermem`](https://github.com/ob-labs/memory-powermem) (`openclaw plugins install memory-powermem`).
+**Persistent memory for AI agents and applications.**
-## Benchmark (LOCOMO)
-
-
+[](https://pypi.org/project/powermem/)
+[](https://pypi.org/project/powermem/)
+[](LICENSE)
+[](https://github.com/oceanbase/powermem)
+[](https://discord.com/invite/74cF8vbNEs)
-

+*English · [中文](README_CN.md) · [日本語](README_JP.md)*
-
+PowerMem combines vector, full-text, and graph retrieval with LLM-driven memory extraction and Ebbinghaus-style time decay. It supports multi-agent isolation, user profiles, and multimodal signals (text, image, audio).
-Compared to stuffing full conversation context on [LOCOMO](https://github.com/snap-research/locomo):
+Use the Python SDK, CLI (`pmem`), HTTP API Server (with Dashboard), or MCP Server — all share one `.env`. See [.env.example](.env.example) and the [configuration guide](docs/guides/0003-configuration.md).
-| Dimension | Result |
-|-----------|--------|
-| Accuracy | 78.70% vs. 52.9% |
-| Retrieval p95 latency | 1.44s vs. 17.12s |
-| Tokens | ~0.9k vs. ~26k |
-
-## Capabilities
-
-**Interfaces and tooling** — [Python integration](docs/examples/scenario_1_basic_usage.md); [CLI](docs/guides/0012-cli_usage.md) (`pmem`); [HTTP API / Dashboard](docs/api/0005-api_server.md); [MCP](docs/api/0004-mcp.md).
-
-**Memory pipeline and retrieval** — [Smart extraction and updates](docs/examples/scenario_2_intelligent_memory.md); [Ebbinghaus-style decay](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md); [Hybrid retrieval (vector / full-text / graph)](docs/examples/scenario_2_intelligent_memory.md); [Sub stores and routing](docs/examples/scenario_6_sub_stores.md).
-
-**Profiles and multi-agent** — [User profile](docs/examples/scenario_9_user_memory.md); [Shared / isolated memory and scopes](docs/examples/scenario_3_multi_agent.md).
-
-**Multimodal** — [Text, image, audio](docs/examples/scenario_7_multimodal.md).
+> **News:** [OpenClaw](https://github.com/openclaw-ai/openclaw) can use PowerMem as long-term memory via [`memory-powermem`](https://github.com/ob-labs/memory-powermem) (`openclaw plugins install memory-powermem`).
## Quick start
-### 1. Install
+### Install
```bash
pip install powermem
```
-### 2. SDK example
+### SDK example
```python
from powermem import Memory, auto_config
@@ -89,7 +41,7 @@ for result in results.get("results", []):
More patterns: [Getting Started](docs/guides/0001-getting_started.md).
-### 3. Other entry points
+### Other entry points
| Mode | Typical commands | Docs |
|------|------------------|------|
@@ -97,6 +49,32 @@ More patterns: [Getting Started](docs/guides/0001-getting_started.md).
| HTTP + Dashboard | `powermem-server --host 0.0.0.0 --port 8000`; image `oceanbase/powermem-server:latest`; `docker-compose -f docker/docker-compose.yml` | [API Server](docs/api/0005-api_server.md) |
| MCP | `uvx powermem-mcp sse` (also stdio / streamable-http); requires `powermem` and `uv` | [MCP Server](docs/api/0004-mcp.md) |
+## Benchmark (LOCOMO)
+
+
+
+

+
+
+
+Compared to stuffing full conversation context on [LOCOMO](https://github.com/snap-research/locomo):
+
+| Dimension | Result |
+|-----------|--------|
+| Accuracy | 78.70% vs. 52.9% |
+| Retrieval p95 latency | 1.44s vs. 17.12s |
+| Tokens | ~0.9k vs. ~26k |
+
+## Capabilities
+
+**Interfaces and tooling** — [Python integration](docs/examples/scenario_1_basic_usage.md); [CLI](docs/guides/0012-cli_usage.md) (`pmem`); [HTTP API / Dashboard](docs/api/0005-api_server.md); [MCP](docs/api/0004-mcp.md).
+
+**Memory pipeline and retrieval** — [Smart extraction and updates](docs/examples/scenario_2_intelligent_memory.md); [Ebbinghaus-style decay](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md); [Hybrid retrieval (vector / full-text / graph)](docs/examples/scenario_2_intelligent_memory.md); [Sub stores and routing](docs/examples/scenario_6_sub_stores.md).
+
+**Profiles and multi-agent** — [User profile](docs/examples/scenario_9_user_memory.md); [Shared / isolated memory and scopes](docs/examples/scenario_3_multi_agent.md).
+
+**Multimodal** — [Text, image, audio](docs/examples/scenario_7_multimodal.md).
+
## Documentation and examples
| Resource | Link |
@@ -127,10 +105,8 @@ More patterns: [Getting Started](docs/guides/0001-getting_started.md).
## Support
-- **Issues**: [GitHub Issues](https://github.com/oceanbase/powermem/issues)
-- **Discussions**: [GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
-
----
+- [GitHub Issues](https://github.com/oceanbase/powermem/issues)
+- [GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
## License
diff --git a/README_CN.md b/README_CN.md
index 622d4b6..9e61ee4 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -1,79 +1,30 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-[English](README.md) | [中文](README_CN.md) | [日本語](README_JP.md)
-
# PowerMem — 智能 AI 记忆系统
-PowerMem 面向 AI 应用提供持久化记忆层:融合向量、全文与图检索,支持由 LLM 驱动的记忆抽取与时间衰减(艾宾浩斯曲线)、多智能体隔离与协作、用户画像以及文本/图像/音频等多模态线索。
-
-使用 Python SDK、CLI(`pmem`)、HTTP API Server(含 Dashboard)或 MCP Server 时,共用同一套 `.env` 配置;完整选项见 [.env.example](.env.example) 与 [配置指南](docs/guides/0003-configuration.md)。
-
-> **动态:** [OpenClaw](https://github.com/openclaw-ai/openclaw) 可通过插件 [memory-powermem](https://github.com/ob-labs/memory-powermem) 使用 PowerMem 作为长期记忆(`openclaw plugins install memory-powermem`)。
+**面向 AI 应用与智能体的持久化记忆层。**
-## 基准表现(LOCOMO)
-
-
+[](https://pypi.org/project/powermem/)
+[](https://pypi.org/project/powermem/)
+[](LICENSE)
+[](https://github.com/oceanbase/powermem)
+[](https://discord.com/invite/74cF8vbNEs)
-

+*[English](README.md) · 中文 · [日本語](README_JP.md)*
-
+PowerMem 融合向量、全文与图检索,支持由 LLM 驱动的记忆抽取与艾宾浩斯型时间衰减,以及多智能体隔离、用户画像和文本/图像/音频等多模态线索。
-相对「全量上下文」基线([LOCOMO](https://github.com/snap-research/locomo)):
+通过 Python SDK、CLI(`pmem`)、HTTP API Server(含 Dashboard)或 MCP Server 接入时共用同一套 `.env`;完整选项见 [.env.example](.env.example) 与 [配置指南](docs/guides/0003-configuration.md)。
-| 维度 | 结果 |
-|------|------|
-| 准确率 | 78.70% vs. 52.9% |
-| 检索 p95 延迟 | 1.44s vs. 17.12s |
-| Token 用量 | 约 0.9k vs. 26k |
-
-## 能力概览
-
-**接入与工程化** — [Python 快速集成](docs/examples/scenario_1_basic_usage.md);[CLI](docs/guides/0012-cli_usage.md)(`pmem`);[HTTP API / Dashboard](docs/api/0005-api_server.md);[MCP](docs/api/0004-mcp.md)。
-
-**记忆管线与检索** — [智能抽取与更新](docs/examples/scenario_2_intelligent_memory.md);[艾宾浩斯时间衰减](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md);[混合检索(向量 / 全文 / 图)](docs/examples/scenario_2_intelligent_memory.md);[子存储与路由](docs/examples/scenario_6_sub_stores.md)。
-
-**用户、画像与多智能体** — [用户画像](docs/examples/scenario_9_user_memory.md);[共享 / 隔离记忆与作用域](docs/examples/scenario_3_multi_agent.md)。
-
-**多模态** — [文本 / 图像 / 语音](docs/examples/scenario_7_multimodal.md)。
+> **动态:** [OpenClaw](https://github.com/openclaw-ai/openclaw) 可通过插件 [memory-powermem](https://github.com/ob-labs/memory-powermem) 使用 PowerMem 作为长期记忆(`openclaw plugins install memory-powermem`)。
## 快速开始
-### 1. 安装
+### 安装
```bash
pip install powermem
```
-### 2. SDK 示例
+### SDK 示例
```python
from powermem import Memory, auto_config
@@ -90,7 +41,7 @@ for result in results.get("results", []):
更多用法见 [入门指南](docs/guides/0001-getting_started.md)。
-### 3. 其他接入方式(命令入口)
+### 其他接入方式(命令入口)
| 方式 | 常用命令 | 文档 |
|------|----------|------|
@@ -98,6 +49,32 @@ for result in results.get("results", []):
| HTTP API + Dashboard | `powermem-server --host 0.0.0.0 --port 8000`;镜像 `oceanbase/powermem-server:latest`;`docker-compose -f docker/docker-compose.yml` | [API Server](docs/api/0005-api_server.md) |
| MCP | `uvx powermem-mcp sse`(及 stdio / streamable-http);需已安装 `powermem` 与 `uv` | [MCP Server](docs/api/0004-mcp.md) |
+## 基准表现(LOCOMO)
+
+
+
+

+
+
+
+相对「全量上下文」基线([LOCOMO](https://github.com/snap-research/locomo)):
+
+| 维度 | 结果 |
+|------|------|
+| 准确率 | 78.70% vs. 52.9% |
+| 检索 p95 延迟 | 1.44s vs. 17.12s |
+| Token 用量 | 约 0.9k vs. 26k |
+
+## 能力概览
+
+**接入与工程化** — [Python 快速集成](docs/examples/scenario_1_basic_usage.md);[CLI](docs/guides/0012-cli_usage.md)(`pmem`);[HTTP API / Dashboard](docs/api/0005-api_server.md);[MCP](docs/api/0004-mcp.md)。
+
+**记忆管线与检索** — [智能抽取与更新](docs/examples/scenario_2_intelligent_memory.md);[艾宾浩斯时间衰减](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md);[混合检索(向量 / 全文 / 图)](docs/examples/scenario_2_intelligent_memory.md);[子存储与路由](docs/examples/scenario_6_sub_stores.md)。
+
+**用户、画像与多智能体** — [用户画像](docs/examples/scenario_9_user_memory.md);[共享 / 隔离记忆与作用域](docs/examples/scenario_3_multi_agent.md)。
+
+**多模态** — [文本 / 图像 / 语音](docs/examples/scenario_7_multimodal.md)。
+
## 文档与延伸
| 类型 | 链接 |
@@ -128,10 +105,8 @@ for result in results.get("results", []):
## 支持
-- **问题反馈**:[GitHub Issues](https://github.com/oceanbase/powermem/issues)
-- **讨论**:[GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
-
----
+- [GitHub Issues](https://github.com/oceanbase/powermem/issues)
+- [GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
## 许可证
diff --git a/README_JP.md b/README_JP.md
index 916636c..b033d05 100644
--- a/README_JP.md
+++ b/README_JP.md
@@ -1,78 +1,30 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-[English](README.md) | [中文](README_CN.md) | [日本語](README_JP.md)
-
# PowerMem — AI アプリ向けインテリジェントメモリ
-PowerMem は AI アプリケーション向けの永続メモリ層です。ベクトル・全文・グラフ検索に加え、LLM によるメモリ抽出と時間減衰(エビングハウス型)、マルチエージェントの分離と協調、ユーザープロフィール、テキスト・画像・音声などのマルチモーダル手がかりを扱います。
-
-Python SDK、CLI(`pmem`)、HTTP API Server(Dashboard 付き)、MCP Server は同一の `.env` を共有します。設定は [.env.example](.env.example) と [設定ガイド](docs/guides/0003-configuration.md) を参照してください。
-
-> **ニュース:** [OpenClaw](https://github.com/openclaw-ai/openclaw) はプラグイン [memory-powermem](https://github.com/ob-labs/memory-powermem) により PowerMem を長期メモリとして利用できます(`openclaw plugins install memory-powermem`)。
+**AI アプリケーションとエージェント向けの永続メモリ層。**
-## ベンチマーク(LOCOMO)
-
-
+[](https://pypi.org/project/powermem/)
+[](https://pypi.org/project/powermem/)
+[](LICENSE)
+[](https://github.com/oceanbase/powermem)
+[](https://discord.com/invite/74cF8vbNEs)
-

+*[English](README.md) · [中文](README_CN.md) · 日本語*
-
+PowerMem はベクトル・全文・グラフ検索に加え、LLM によるメモリ抽出とエビングハウス型の時間減衰、マルチエージェント分離、ユーザープロフィール、テキスト・画像・音声などのマルチモーダル手がかりを扱います。
-会話全文をコンテキストに載せる方式との比較([LOCOMO](https://github.com/snap-research/locomo)):
+Python SDK、CLI(`pmem`)、HTTP API Server(Dashboard 付き)、MCP Server は同一の `.env` を共有します。[.env.example](.env.example) と [設定ガイド](docs/guides/0003-configuration.md) を参照してください。
-| 観点 | 結果 |
-|------|------|
-| 精度 | 78.70% vs. 52.9% |
-| 検索 p95 遅延 | 1.44s vs. 17.12s |
-| トークン | 約 0.9k vs. 26k |
-
-## 機能概要
-
-**インターフェースとツール** — [Python 統合](docs/examples/scenario_1_basic_usage.md);[CLI](docs/guides/0012-cli_usage.md)(`pmem`);[HTTP API / Dashboard](docs/api/0005-api_server.md);[MCP](docs/api/0004-mcp.md)。
-
-**メモリパイプラインと検索** — [スマート抽出と更新](docs/examples/scenario_2_intelligent_memory.md);[エビングハウス型減衰](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md);[ハイブリッド検索(ベクトル / 全文 / グラフ)](docs/examples/scenario_2_intelligent_memory.md);[サブストアとルーティング](docs/examples/scenario_6_sub_stores.md)。
-
-**プロフィールとマルチエージェント** — [ユーザープロフィール](docs/examples/scenario_9_user_memory.md);[共有 / 分離メモリとスコープ](docs/examples/scenario_3_multi_agent.md)。
-
-**マルチモーダル** — [テキスト・画像・音声](docs/examples/scenario_7_multimodal.md)。
+> **ニュース:** [OpenClaw](https://github.com/openclaw-ai/openclaw) はプラグイン [memory-powermem](https://github.com/ob-labs/memory-powermem) により PowerMem を長期メモリとして利用できます(`openclaw plugins install memory-powermem`)。
## クイックスタート
-### 1. インストール
+### インストール
```bash
pip install powermem
```
-### 2. SDK サンプル
+### SDK サンプル
```python
from powermem import Memory, auto_config
@@ -89,7 +41,7 @@ for result in results.get("results", []):
詳細は [はじめに](docs/guides/0001-getting_started.md) を参照してください。
-### 3. その他の利用形態
+### その他の利用形態
| 形態 | 代表的なコマンド | ドキュメント |
|------|------------------|--------------|
@@ -97,6 +49,32 @@ for result in results.get("results", []):
| HTTP + Dashboard | `powermem-server --host 0.0.0.0 --port 8000`;イメージ `oceanbase/powermem-server:latest`;`docker-compose -f docker/docker-compose.yml` | [API Server](docs/api/0005-api_server.md) |
| MCP | `uvx powermem-mcp sse`(stdio / streamable-http も可);`powermem` と `uv` が必要 | [MCP Server](docs/api/0004-mcp.md) |
+## ベンチマーク(LOCOMO)
+
+
+
+

+
+
+
+会話全文をコンテキストに載せる方式との比較([LOCOMO](https://github.com/snap-research/locomo)):
+
+| 観点 | 結果 |
+|------|------|
+| 精度 | 78.70% vs. 52.9% |
+| 検索 p95 遅延 | 1.44s vs. 17.12s |
+| トークン | 約 0.9k vs. 26k |
+
+## 機能概要
+
+**インターフェースとツール** — [Python 統合](docs/examples/scenario_1_basic_usage.md);[CLI](docs/guides/0012-cli_usage.md)(`pmem`);[HTTP API / Dashboard](docs/api/0005-api_server.md);[MCP](docs/api/0004-mcp.md)。
+
+**メモリパイプラインと検索** — [スマート抽出と更新](docs/examples/scenario_2_intelligent_memory.md);[エビングハウス型減衰](docs/examples/scenario_8_ebbinghaus_forgetting_curve.md);[ハイブリッド検索(ベクトル / 全文 / グラフ)](docs/examples/scenario_2_intelligent_memory.md);[サブストアとルーティング](docs/examples/scenario_6_sub_stores.md)。
+
+**プロフィールとマルチエージェント** — [ユーザープロフィール](docs/examples/scenario_9_user_memory.md);[共有 / 分離メモリとスコープ](docs/examples/scenario_3_multi_agent.md)。
+
+**マルチモーダル** — [テキスト・画像・音声](docs/examples/scenario_7_multimodal.md)。
+
## ドキュメントとサンプル
| 種類 | リンク |
@@ -127,16 +105,9 @@ for result in results.get("results", []):
## サポート
-- **Issues**:[GitHub Issues](https://github.com/oceanbase/powermem/issues)
-- **ディスカッション**:[GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
-
----
+- [GitHub Issues](https://github.com/oceanbase/powermem/issues)
+- [GitHub Discussions](https://github.com/oceanbase/powermem/discussions)
## ライセンス
Apache License 2.0 — 詳細は [LICENSE](LICENSE)。
-
-修正日文 README 中的错误链接 `0012-web_usage` → `0012-cli_usage`。
-
-<|tool▁calls▁begin|><|tool▁call▁begin|>
-StrReplace
\ No newline at end of file
From 8ff32e621afd7ee9d2e4032f61b173af96565a30 Mon Sep 17 00:00:00 2001
From: Chojan Shang
Date: Thu, 26 Mar 2026 10:54:34 +0800
Subject: [PATCH 4/6] chore: remove subtitle
Signed-off-by: Chojan Shang
---
README.md | 2 +-
README_CN.md | 2 +-
README_JP.md | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 7c1e60e..c3d3b2d 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# PowerMem — Intelligent Memory for AI Applications
+# PowerMem
**Persistent memory for AI agents and applications.**
diff --git a/README_CN.md b/README_CN.md
index 9e61ee4..63d86ab 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -1,4 +1,4 @@
-# PowerMem — 智能 AI 记忆系统
+# PowerMem
**面向 AI 应用与智能体的持久化记忆层。**
diff --git a/README_JP.md b/README_JP.md
index b033d05..a446d13 100644
--- a/README_JP.md
+++ b/README_JP.md
@@ -1,4 +1,4 @@
-# PowerMem — AI アプリ向けインテリジェントメモリ
+# PowerMem
**AI アプリケーションとエージェント向けの永続メモリ層。**
From c768cbd99c7625f16d95d213307bf8f698b59d5a Mon Sep 17 00:00:00 2001
From: Chojan Shang
Date: Thu, 26 Mar 2026 10:59:43 +0800
Subject: [PATCH 5/6] docs: re-org docs and examples
Signed-off-by: Chojan Shang
---
README.md | 35 +++++++++++++++++++----------------
README_CN.md | 33 ++++++++++++++++++---------------
README_JP.md | 35 +++++++++++++++++++----------------
3 files changed, 56 insertions(+), 47 deletions(-)
diff --git a/README.md b/README.md
index c3d3b2d..79d4e7d 100644
--- a/README.md
+++ b/README.md
@@ -75,22 +75,25 @@ Compared to stuffing full conversation context on [LOCOMO](https://github.com/sn
**Multimodal** — [Text, image, audio](docs/examples/scenario_7_multimodal.md).
-## Documentation and examples
-
-| Resource | Link |
-|----------|------|
-| Getting started | [Guide](docs/guides/0001-getting_started.md) |
-| Configuration | [Configuration](docs/guides/0003-configuration.md) |
-| CLI | [CLI usage](docs/guides/0012-cli_usage.md) |
-| Multi-agent | [Multi-Agent](docs/guides/0005-multi_agent.md) |
-| Integrations | [Integrations](docs/guides/0009-integrations.md) |
-| Sub stores | [Sub stores](docs/guides/0006-sub_stores.md) |
-| API | [API overview](docs/api/overview.md) |
-| Architecture | [Architecture](docs/architecture/overview.md) |
-| Scenarios | [Examples](docs/examples/overview.md) |
-| Development | [Development](docs/development/overview.md) |
-| Example: LangChain | [Medical support chatbot](examples/langchain/README.md) |
-| Example: LangGraph | [Customer service bot](examples/langgraph/README.md) |
+## Docs
+
+- [Getting started](docs/guides/0001-getting_started.md) — install, `.env`, and first `Memory` usage
+- [Configuration](docs/guides/0003-configuration.md) — settings model, storage backends, environment variables
+- [Architecture](docs/architecture/overview.md) — major components, storage layout, and retrieval flow
+- [API & services](docs/api/overview.md) — REST, MCP, HTTP server, and Python-facing APIs
+- [CLI](docs/guides/0012-cli_usage.md) — `pmem` commands, interactive shell, backup and migration
+- [Multi-agent](docs/guides/0005-multi_agent.md) — scopes, isolation, and cross-agent sharing
+- [Integrations](docs/guides/0009-integrations.md) — LangChain and other framework wiring
+- [Docker & deployment](docker/README.md) — images, Compose, and running the API server
+- [Development](docs/development/overview.md) — local setup, tests, and contributing
+
+More topics: [Sub stores](docs/guides/0006-sub_stores.md), [guides index](docs/guides/overview.md).
+
+## Examples
+
+- [Scenarios & notebooks](docs/examples/overview.md) — walkthroughs by use case (basic usage, multimodal, forgetting curve, and more)
+- [LangChain sample](examples/langchain/README.md) — medical support chatbot
+- [LangGraph sample](examples/langgraph/README.md) — customer service bot
## Release highlights
diff --git a/README_CN.md b/README_CN.md
index 63d86ab..230edae 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -75,22 +75,25 @@ for result in results.get("results", []):
**多模态** — [文本 / 图像 / 语音](docs/examples/scenario_7_multimodal.md)。
-## 文档与延伸
+## 文档
-| 类型 | 链接 |
-|------|------|
-| 入门 | [Getting Started](docs/guides/0001-getting_started.md) |
-| 配置 | [Configuration](docs/guides/0003-configuration.md) |
-| CLI | [CLI 使用指南](docs/guides/0012-cli_usage.md) |
-| 多智能体 | [Multi-Agent](docs/guides/0005-multi_agent.md) |
-| 集成说明 | [Integrations](docs/guides/0009-integrations.md) |
-| 子存储 | [Sub Stores](docs/guides/0006-sub_stores.md) |
-| API | [API 总览](docs/api/overview.md) |
-| 架构 | [Architecture](docs/architecture/overview.md) |
-| 场景示例 | [Examples](docs/examples/overview.md) |
-| 开发 | [Development](docs/development/overview.md) |
-| 示例:LangChain | [医疗支持机器人](examples/langchain/README.md) |
-| 示例:LangGraph | [客服机器人](examples/langgraph/README.md) |
+- [入门指南](docs/guides/0001-getting_started.md) — 安装、`.env`、首个 `Memory` 用法
+- [配置说明](docs/guides/0003-configuration.md) — 配置模型、存储后端、环境变量
+- [架构](docs/architecture/overview.md) — 主要组件、存储布局、检索主路径
+- [API 与服务](docs/api/overview.md) — REST、MCP、HTTP 服务与 Python 接口入口
+- [CLI](docs/guides/0012-cli_usage.md) — `pmem` 命令、交互 shell、备份与迁移
+- [多智能体](docs/guides/0005-multi_agent.md) — 作用域、隔离与跨 Agent 共享
+- [集成说明](docs/guides/0009-integrations.md) — LangChain 等与框架对接
+- [Docker 与部署](docker/README.md) — 镜像、Compose、运行 API 服务
+- [开发文档](docs/development/overview.md) — 本地环境、测试、参与贡献
+
+更多:[子存储](docs/guides/0006-sub_stores.md)、[指南索引](docs/guides/overview.md)。
+
+## 示例
+
+- [场景与 Notebook](docs/examples/overview.md) — 按用例的说明与笔记本(基础、多模态、遗忘曲线等)
+- [LangChain 示例](examples/langchain/README.md) — 医疗支持机器人
+- [LangGraph 示例](examples/langgraph/README.md) — 客服机器人
## 版本要点
diff --git a/README_JP.md b/README_JP.md
index a446d13..679611e 100644
--- a/README_JP.md
+++ b/README_JP.md
@@ -75,22 +75,25 @@ for result in results.get("results", []):
**マルチモーダル** — [テキスト・画像・音声](docs/examples/scenario_7_multimodal.md)。
-## ドキュメントとサンプル
-
-| 種類 | リンク |
-|------|--------|
-| はじめに | [Guide](docs/guides/0001-getting_started.md) |
-| 設定 | [Configuration](docs/guides/0003-configuration.md) |
-| CLI | [CLI](docs/guides/0012-cli_usage.md) |
-| マルチエージェント | [Multi-Agent](docs/guides/0005-multi_agent.md) |
-| 統合 | [Integrations](docs/guides/0009-integrations.md) |
-| サブストア | [Sub stores](docs/guides/0006-sub_stores.md) |
-| API | [API overview](docs/api/overview.md) |
-| アーキテクチャ | [Architecture](docs/architecture/overview.md) |
-| シナリオ例 | [Examples](docs/examples/overview.md) |
-| 開発 | [Development](docs/development/overview.md) |
-| サンプル:LangChain | [医療サポート](examples/langchain/README.md) |
-| サンプル:LangGraph | [カスタマーサービス](examples/langgraph/README.md) |
+## ドキュメント
+
+- [はじめに](docs/guides/0001-getting_started.md) — インストール、`.env`、最初の `Memory` 利用
+- [設定](docs/guides/0003-configuration.md) — 設定モデル、ストレージバックエンド、環境変数
+- [アーキテクチャ](docs/architecture/overview.md) — 主要コンポーネント、ストレージ構成、検索の流れ
+- [API とサービス](docs/api/overview.md) — REST、MCP、HTTP サーバー、Python 向け API
+- [CLI](docs/guides/0012-cli_usage.md) — `pmem` コマンド、対話シェル、バックアップとマイグレーション
+- [マルチエージェント](docs/guides/0005-multi_agent.md) — スコープ、分離、エージェント間共有
+- [統合](docs/guides/0009-integrations.md) — LangChain などフレームワーク連携
+- [Docker とデプロイ](docker/README.md) — イメージ、Compose、API サーバーの実行
+- [開発](docs/development/overview.md) — ローカル環境、テスト、コントリビューション
+
+その他:[サブストア](docs/guides/0006-sub_stores.md)、[ガイド一覧](docs/guides/overview.md)。
+
+## サンプル
+
+- [シナリオと Notebook](docs/examples/overview.md) — ユースケース別の手順とノート(基本、マルチモーダル、忘却曲線など)
+- [LangChain サンプル](examples/langchain/README.md) — 医療サポートチャットボット
+- [LangGraph サンプル](examples/langgraph/README.md) — カスタマーサービスボット
## リリースハイライト
From 8e6b3985237d754c8dd9d7507cc1cabf89d55c48 Mon Sep 17 00:00:00 2001
From: Chojan Shang
Date: Thu, 26 Mar 2026 11:07:03 +0800
Subject: [PATCH 6/6] docs: minor fix
Signed-off-by: Chojan Shang
---
README.md | 6 +++---
README_CN.md | 6 +++---
README_JP.md | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index 79d4e7d..9e85774 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ PowerMem combines vector, full-text, and graph retrieval with LLM-driven memory
Use the Python SDK, CLI (`pmem`), HTTP API Server (with Dashboard), or MCP Server — all share one `.env`. See [.env.example](.env.example) and the [configuration guide](docs/guides/0003-configuration.md).
-> **News:** [OpenClaw](https://github.com/openclaw-ai/openclaw) can use PowerMem as long-term memory via [`memory-powermem`](https://github.com/ob-labs/memory-powermem) (`openclaw plugins install memory-powermem`).
+> **News:** [OpenClaw](https://github.com/openclaw/openclaw) can use PowerMem as long-term memory via [`memory-powermem`](https://github.com/ob-labs/memory-powermem) (`openclaw plugins install memory-powermem`).
## Quick start
@@ -92,8 +92,8 @@ More topics: [Sub stores](docs/guides/0006-sub_stores.md), [guides index](docs/g
## Examples
- [Scenarios & notebooks](docs/examples/overview.md) — walkthroughs by use case (basic usage, multimodal, forgetting curve, and more)
-- [LangChain sample](examples/langchain/README.md) — medical support chatbot
-- [LangGraph sample](examples/langgraph/README.md) — customer service bot
+- [LangChain sample](examples/langchain/README.md) — medical support chatbot (LangChain + PowerMem + OceanBase)
+- [LangGraph sample](examples/langgraph/README.md) — customer service bot (LangGraph + PowerMem + OceanBase)
## Release highlights
diff --git a/README_CN.md b/README_CN.md
index 230edae..2d5e2ec 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -14,7 +14,7 @@ PowerMem 融合向量、全文与图检索,支持由 LLM 驱动的记忆抽取
通过 Python SDK、CLI(`pmem`)、HTTP API Server(含 Dashboard)或 MCP Server 接入时共用同一套 `.env`;完整选项见 [.env.example](.env.example) 与 [配置指南](docs/guides/0003-configuration.md)。
-> **动态:** [OpenClaw](https://github.com/openclaw-ai/openclaw) 可通过插件 [memory-powermem](https://github.com/ob-labs/memory-powermem) 使用 PowerMem 作为长期记忆(`openclaw plugins install memory-powermem`)。
+> **动态:** [OpenClaw](https://github.com/openclaw/openclaw) 可通过插件 [memory-powermem](https://github.com/ob-labs/memory-powermem) 使用 PowerMem 作为长期记忆(`openclaw plugins install memory-powermem`)。
## 快速开始
@@ -92,8 +92,8 @@ for result in results.get("results", []):
## 示例
- [场景与 Notebook](docs/examples/overview.md) — 按用例的说明与笔记本(基础、多模态、遗忘曲线等)
-- [LangChain 示例](examples/langchain/README.md) — 医疗支持机器人
-- [LangGraph 示例](examples/langgraph/README.md) — 客服机器人
+- [LangChain 示例](examples/langchain/README.md) — 医疗支持机器人(LangChain + PowerMem + OceanBase)
+- [LangGraph 示例](examples/langgraph/README.md) — 客服机器人(LangGraph + PowerMem + OceanBase)
## 版本要点
diff --git a/README_JP.md b/README_JP.md
index 679611e..06f24a3 100644
--- a/README_JP.md
+++ b/README_JP.md
@@ -14,7 +14,7 @@ PowerMem はベクトル・全文・グラフ検索に加え、LLM によるメ
Python SDK、CLI(`pmem`)、HTTP API Server(Dashboard 付き)、MCP Server は同一の `.env` を共有します。[.env.example](.env.example) と [設定ガイド](docs/guides/0003-configuration.md) を参照してください。
-> **ニュース:** [OpenClaw](https://github.com/openclaw-ai/openclaw) はプラグイン [memory-powermem](https://github.com/ob-labs/memory-powermem) により PowerMem を長期メモリとして利用できます(`openclaw plugins install memory-powermem`)。
+> **ニュース:** [OpenClaw](https://github.com/openclaw/openclaw) はプラグイン [memory-powermem](https://github.com/ob-labs/memory-powermem) により PowerMem を長期メモリとして利用できます(`openclaw plugins install memory-powermem`)。
## クイックスタート
@@ -92,8 +92,8 @@ for result in results.get("results", []):
## サンプル
- [シナリオと Notebook](docs/examples/overview.md) — ユースケース別の手順とノート(基本、マルチモーダル、忘却曲線など)
-- [LangChain サンプル](examples/langchain/README.md) — 医療サポートチャットボット
-- [LangGraph サンプル](examples/langgraph/README.md) — カスタマーサービスボット
+- [LangChain サンプル](examples/langchain/README.md) — 医療サポートチャットボット(LangChain + PowerMem + OceanBase)
+- [LangGraph サンプル](examples/langgraph/README.md) — カスタマーサービスボット(LangGraph + PowerMem + OceanBase)
## リリースハイライト