From 8d9e299dde1c9a04d3176bd742e23bfdfe2dba18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=B4=E5=A4=A9?= Date: Fri, 3 Jul 2026 16:25:32 +0800 Subject: [PATCH] docs: add AtomGit mirror link --- README.md | 8 +++++++- README.zh-TW.md | 8 +++++++- docs/armbian-deploy.md | 8 +++++++- docs/linux-deploy.md | 10 ++++++++-- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8558d6c..3539d6c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ ClawPanel 是支持多 AI Agent 框架的可视化管理面板,目前支持 [OpenClaw](https://github.com/1186258278/OpenClawChineseTranslation) 和 [Hermes Agent](https://github.com/nousresearch/hermes-agent) 双引擎。**内置智能 AI 助手**,帮你一键安装、自动诊断配置、排查问题、修复错误。8 大工具 + 4 种模式 + 交互式问答,从新手到老手都能轻松管理。 -> 🌐 **官网**: [claw.qt.cool](https://claw.qt.cool/) | 📦 **下载**: [官网下载中心](https://claw.qt.cool/download) | 备用: [GitHub Releases](https://github.com/qingchencloud/clawpanel/releases/latest) +> 🌐 **官网**: [claw.qt.cool](https://claw.qt.cool/) | 📦 **下载**: [官网下载中心](https://claw.qt.cool/download) | 备用: [GitHub Releases](https://github.com/qingchencloud/clawpanel/releases/latest) | 国内镜像: [AtomGit](https://atomgit.com/qingchencloud/clawpanel) ## ✨ Hermes Agent 第二引擎:会话、记忆、人格与工具全景管理 @@ -629,6 +629,12 @@ cd clawpanel npm install ``` +国内网络可使用 AtomGit 镜像: + +```bash +git clone https://atomgit.com/qingchencloud/clawpanel.git +``` + #### macOS / Linux ```bash diff --git a/README.zh-TW.md b/README.zh-TW.md index 1454788..c9aee9b 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -30,7 +30,7 @@ ClawPanel 是支援多 AI Agent 框架的視覺化管理面板,目前支援 [OpenClaw](https://github.com/1186258278/OpenClawChineseTranslation) 和 [Hermes Agent](https://github.com/nousresearch/hermes-agent) 雙引擎。**內建智慧 AI 助手**,幫你一鍵安裝、自動診斷設定、排查問題、修復錯誤。8 大工具 + 4 種模式 + 互動式問答,從新手到老手都能輕鬆管理。 -> 🌐 **官網**: [claw.qt.cool](https://claw.qt.cool/) | 📦 **下載**: [官網下載中心](https://claw.qt.cool/download) | 備用: [GitHub Releases](https://github.com/qingchencloud/clawpanel/releases/latest) +> 🌐 **官網**: [claw.qt.cool](https://claw.qt.cool/) | 📦 **下載**: [官網下載中心](https://claw.qt.cool/download) | 備用: [GitHub Releases](https://github.com/qingchencloud/clawpanel/releases/latest) | 國內鏡像: [AtomGit](https://atomgit.com/qingchencloud/clawpanel) ### 🎁 晴辰雲 AI 介面 @@ -163,6 +163,12 @@ npm run dev # 熱更新開發 npm run build && npm run serve # 正式版 ``` +國內網路可使用 AtomGit 鏡像: + +```bash +git clone https://atomgit.com/qingchencloud/clawpanel.git +``` + ## 相關專案 | 專案 | 說明 | diff --git a/docs/armbian-deploy.md b/docs/armbian-deploy.md index 0ee39f0..44c43b7 100644 --- a/docs/armbian-deploy.md +++ b/docs/armbian-deploy.md @@ -24,7 +24,7 @@ Web 模式是纯 Node.js 服务,零 GUI 依赖,最适合 ARM 板。 curl -fsSL https://raw.githubusercontent.com/qingchencloud/clawpanel/main/scripts/linux-deploy.sh | bash ``` -国内网络推荐使用 Gitee 镜像: +如果 GitHub raw 脚本拉取失败,可暂用以下脚本备用入口: ```bash curl -fsSL https://gitee.com/QtCodeCreators/clawpanel/raw/main/scripts/linux-deploy.sh | bash @@ -49,6 +49,12 @@ npm run build npm run serve -- --port 1420 ``` +国内网络可将克隆地址换成 AtomGit 镜像: + +```bash +git clone https://atomgit.com/qingchencloud/clawpanel.git /opt/clawpanel +``` + ### 设置开机自启(systemd) ```bash diff --git a/docs/linux-deploy.md b/docs/linux-deploy.md index a3eeea2..0e7f499 100644 --- a/docs/linux-deploy.md +++ b/docs/linux-deploy.md @@ -128,6 +128,12 @@ cd clawpanel npm install ``` +国内网络可使用 AtomGit 镜像: + +```bash +sudo git clone https://atomgit.com/qingchencloud/clawpanel.git +``` + ### 4. 构建并启动 ClawPanel Web ```bash @@ -322,9 +328,9 @@ npm install --registry https://registry.npmmirror.com sudo systemctl restart clawpanel # 或 pm2 restart clawpanel ``` -> 国内拉不到 GitHub?用 Gitee 镜像: +> 国内拉不到 GitHub?可切换到 AtomGit 镜像: > ```bash -> git remote set-url origin https://gitee.com/QtCodeCreators/clawpanel.git +> git remote set-url origin https://atomgit.com/qingchencloud/clawpanel.git > git pull origin main > ```