diff --git a/README.md b/README.md
index e69de29bb..634ec2647 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,128 @@
+

+Open-source platform for building enterprise-grade agents
+强大易用的企业级智能体平台
+
+
+
+
+
+ 
+ [中文(简体)] | [English]
+
+
+
+MaxKB = Max Knowledge Brain, it is an open-source platform for building enterprise-grade agents. MaxKB integrates Retrieval-Augmented Generation (RAG) pipelines, supports robust workflows, and provides advanced MCP tool-use capabilities. MaxKB is widely applied in scenarios such as intelligent customer service, corporate internal knowledge bases, academic research, and education.
+
+- **RAG Pipeline**: Supports direct uploading of documents / automatic crawling of online documents, with features for automatic text splitting, vectorization. This effectively reduces hallucinations in large models, providing a superior smart Q&A interaction experience.
+- **Agentic Workflow**: Equipped with a powerful workflow engine, function library and MCP tool-use, enabling the orchestration of AI processes to meet the needs of complex business scenarios.
+- **Seamless Integration**: Facilitates zero-coding rapid integration into third-party business systems, quickly equipping existing systems with intelligent Q&A capabilities to enhance user satisfaction.
+- **Model-Agnostic**: Supports various large models, including private models (such as DeepSeek, Llama, Qwen, etc.) and public models (like OpenAI, Claude, Gemini, etc.).
+- **Multi Modal**: Native support for input and output text, image, audio and video.
+
+## Quick start
+
+Execute the script below to start a MaxKB container using Docker:
+
+```bash
+docker run -d --name=maxkb --restart=always -p 8080:8080 -v ~/.maxkb:/var/lib/postgresql/data -v ~/.python-packages:/opt/maxkb/app/sandbox/python-packages 1panel/maxkb:v2
+```
+
+Access MaxKB web interface at `http://your_server_ip:8080` with default admin credentials:
+
+- username: admin
+- password: MaxKB@123..
+
+中国用户如遇到 Docker 镜像 Pull 失败问题,请参照该 [离线安装文档](https://maxkb.cn/docs/v2/installation/offline_installtion/) 进行安装。
+
+## Screenshots
+
+
+
+## Technical stack
+
+- Frontend:[Vue.js](https://vuejs.org/)
+- Backend:[Python / Django](https://www.djangoproject.com/)
+- LLM Framework:[LangChain](https://www.langchain.com/)
+- Database:[PostgreSQL + pgvector](https://www.postgresql.org/)
+
+## Feature Comparison
+
+
+
+ | Feature |
+ LangChain |
+ Dify.AI |
+ Flowise |
+ MaxKB (Built upon LangChain) |
+
+
+ | Supported LLMs |
+ Rich Variety |
+ Rich Variety |
+ Rich Variety |
+ Rich Variety |
+
+
+ | RAG Engine |
+ ✅ |
+ ✅ |
+ ✅ |
+ ✅ |
+
+
+ | Agent |
+ ✅ |
+ ✅ |
+ ❌ |
+ ✅ |
+
+
+ | Workflow |
+ ❌ |
+ ✅ |
+ ✅ |
+ ✅ |
+
+
+ | Observability |
+ ✅ |
+ ✅ |
+ ❌ |
+ ✅ |
+
+
+ | SSO/Access control |
+ ❌ |
+ ✅ |
+ ❌ |
+ ✅ (Pro) |
+
+
+ | On-premise Deployment |
+ ✅ |
+ ✅ |
+ ✅ |
+ ✅ |
+
+
+
+## Star History
+
+[](https://star-history.com/#1Panel-dev/MaxKB&Date)
+
+## License
+
+Licensed under The GNU General Public License version 3 (GPLv3) (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
+
+
+
+Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
diff --git a/README_CN.md b/README_CN.md
new file mode 100644
index 000000000..490906905
--- /dev/null
+++ b/README_CN.md
@@ -0,0 +1,89 @@
+
+强大易用的企业级智能体平台
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+MaxKB = Max Knowledge Brain,是一款强大易用的企业级智能体平台,支持 RAG 检索增强生成、工作流编排、MCP 工具调用能力。MaxKB 支持对接各种主流大语言模型,广泛应用于智能客服、企业内部知识库问答、员工助手、学术研究与教育等场景。
+
+- **RAG 检索增强生成**:高效搭建本地 AI 知识库,支持直接上传文档 / 自动爬取在线文档,支持文本自动拆分、向量化,有效减少大模型幻觉,提升问答效果;
+- **灵活编排**:内置强大的工作流引擎、函数库和 MCP 工具调用能力,支持编排 AI 工作过程,满足复杂业务场景下的需求;
+- **无缝嵌入**:支持零编码快速嵌入到第三方业务系统,让已有系统快速拥有智能问答能力,提高用户满意度;
+- **模型中立**:支持对接各种大模型,包括本地私有大模型(DeepSeek R1 / Llama 3 / Qwen 2 等)、国内公共大模型(通义千问 / 腾讯混元 / 字节豆包 / 百度千帆 / 智谱 AI / Kimi 等)和国外公共大模型(OpenAI / Claude / Gemini 等)。
+
+MaxKB 三分钟视频介绍:https://www.bilibili.com/video/BV18JypYeEkj/
+
+## 快速开始
+
+```
+# Linux 机器
+docker run -d --name=maxkb --restart=always -p 8080:8080 -v ~/.maxkb:/var/lib/postgresql/data -v ~/.python-packages:/opt/maxkb/app/sandbox/python-packages registry.fit2cloud.com/maxkb/maxkb:v2
+
+# Windows 机器
+docker run -d --name=maxkb --restart=always -p 8080:8080 -v C:/maxkb:/var/lib/postgresql/data -v C:/python-packages:/opt/maxkb/app/sandbox/python-packages registry.fit2cloud.com/maxkb/maxkb:v2
+
+# 用户名: admin
+# 密码: MaxKB@123..
+```
+
+- 你也可以通过 [1Panel 应用商店](https://apps.fit2cloud.com/1panel) 快速部署 MaxKB;
+- 如果是内网环境,推荐使用 [离线安装包](https://community.fit2cloud.com/#/products/maxkb/downloads) 进行安装部署;
+- MaxKB 产品版本分为社区版和专业版,详情请参见:[MaxKB 产品版本对比](https://maxkb.cn/pricing.html);
+- 如果您需要向团队介绍 MaxKB,可以使用这个 [官方 PPT 材料](https://maxkb.cn/download/introduce-maxkb_202503.pdf)。
+
+如你有更多问题,可以查看使用手册,或者通过论坛与我们交流。
+
+- [案例展示](USE-CASES.md)
+- [使用手册](https://maxkb.cn/docs/)
+- [论坛求助](https://bbs.fit2cloud.com/c/mk/11)
+- 技术交流群
+
+
+
+## UI 展示
+
+
+
+## 技术栈
+
+- 前端:[Vue.js](https://cn.vuejs.org/)
+- 后端:[Python / Django](https://www.djangoproject.com/)
+- LangChain:[LangChain](https://www.langchain.com/)
+- 向量数据库:[PostgreSQL / pgvector](https://www.postgresql.org/)
+
+## 飞致云的其他明星项目
+
+- [1Panel](https://github.com/1panel-dev/1panel/) - 现代化、开源的 Linux 服务器运维管理面板
+- [JumpServer](https://github.com/jumpserver/jumpserver/) - 广受欢迎的开源堡垒机
+- [DataEase](https://github.com/dataease/dataease/) - 人人可用的开源数据可视化分析工具
+- [MeterSphere](https://github.com/metersphere/metersphere/) - 新一代的开源持续测试工具
+- [Halo](https://github.com/halo-dev/halo/) - 强大易用的开源建站工具
+
+## License
+
+Copyright (c) 2014-2025 飞致云 FIT2CLOUD, All rights reserved.
+
+Licensed under The GNU General Public License version 3 (GPLv3) (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
+
+
+
+Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
\ No newline at end of file