openclaw-botonline 0.1.4 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,33 +1,33 @@
1
- # 🧞 Openclaw 中文社区
1
+ # 🧞 OpenClaw Bot Online
2
2
 
3
- **私有化部署的 AI 智能助手,完整中文本地化。**
3
+ **私有化部署的 AI 智能助手网关。**
4
4
 
5
- > ⚠️ **声明:** 本项目非官方 cn 版本,此项目的目的是为了让国内用户快速接入使用,并更加适配国内网络环境。本项目已将所有 GitHub 依赖包构建为 npm 包,让国内用户使用淘宝镜像源可快速下载,避免因网络原因无法安装原版。
5
+ > ⚠️ **声明:** 本项目基于 [jiulingyun/openclaw-cn](https://github.com/jiulingyun/openclaw-cn) 进行再开发,旨在提供更加灵活的在线服务部署方案。
6
6
 
7
7
  <p align="center">
8
- <img src="docs/images/main-view.png" alt="Openclaw 中文社区控制界面" width="800">
8
+ <img src="docs/images/main-view.png" alt="OpenClaw Bot Online 控制界面" width="800">
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.com/package/openclaw-cn"><img src="https://img.shields.io/npm/v/openclaw-cn?style=for-the-badge&logo=npm&logoColor=white&label=npm" alt="npm 版本"></a>
12
+ <a href="https://www.npmjs.com/package/openclaw-botonline"><img src="https://img.shields.io/npm/v/openclaw-botonline?style=for-the-badge&logo=npm&logoColor=white&label=npm" alt="npm 版本"></a>
13
13
  <a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node.js-%E2%89%A5%2022-339933?style=for-the-badge&logo=node.js&logoColor=white" alt="Node.js 版本"></a>
14
- <a href="https://github.com/jiulingyun/openclaw-cn"><img src="https://img.shields.io/github/stars/jiulingyun/openclaw-cn?style=for-the-badge&logo=github&label=Stars" alt="GitHub Stars"></a>
14
+ <a href="https://github.com/FuHuoMe/openclaw-botonline"><img src="https://img.shields.io/github/stars/FuHuoMe/openclaw-botonline?style=for-the-badge&logo=github&label=Stars" alt="GitHub Stars"></a>
15
15
  <a href="LICENSE"><img src="https://img.shields.io/badge/许可证-MIT-blue.svg?style=for-the-badge" alt="MIT 许可证"></a>
16
16
  </p>
17
17
 
18
18
  <p align="center">
19
- <a href="https://clawd.org.cn">🌐 官网</a> ·
20
- <a href="https://clawd.org.cn/docs">📖 文档</a> ·
21
- <a href="https://github.com/jiulingyun/openclaw-cn/issues">💬 反馈</a>
19
+ <a href="https://github.com/FuHuoMe/openclaw-botonline">📦 仓库</a> ·
20
+ <a href="https://docs.openclaw.ai">📖 文档</a> ·
21
+ <a href="https://github.com/FuHuoMe/openclaw-botonline/issues">💬 反馈</a>
22
22
  </p>
23
23
 
24
24
  ---
25
25
 
26
26
  ## ✨ 特性
27
27
 
28
- - **🇨🇳 完整中文化**CLI、Web 控制界面、配置向导全部汉化
28
+ - **🚀 在线服务**支持云端部署和在线服务模式
29
29
  - **🏠 本地优先** — 数据存储在你自己的设备上,隐私可控
30
- - **📱 多渠道支持** — WhatsApp、Telegram、Slack、Discord、Signal、iMessage、微信(开发中)
30
+ - **📱 多渠道支持** — WhatsApp、Telegram、Slack、Discord、Signal、iMessage、飞书、微信(开发中)
31
31
  - **🎙️ 语音交互** — macOS/iOS/Android 语音唤醒和对话
32
32
  - **🖼️ Canvas 画布** — 智能体驱动的可视化工作区
33
33
  - **🔧 技能扩展** — 内置技能 + 自定义工作区技能
@@ -38,38 +38,38 @@
38
38
 
39
39
  ```bash
40
40
  # 安装
41
- npm install -g openclaw-cn@latest
41
+ npm install -g openclaw-botonline@latest
42
42
 
43
43
  # 运行安装向导
44
- openclaw-cn onboard --install-daemon
44
+ openclaw-botonline onboard --install-daemon
45
45
 
46
46
  # 启动网关
47
- openclaw-cn gateway --port 18789 --verbose
47
+ openclaw-botonline gateway --port 18789 --verbose
48
48
  ```
49
49
 
50
- > 💡 **兼容性:** 旧版本 `clawdbot-cn` 命令仍然可用,作为别名指向 `openclaw-cn`。
50
+ > 💡 **兼容性:** `clawdbot-online` 命令也可用,作为别名指向 `openclaw-botonline`。
51
51
 
52
52
  ## 📦 安装方式
53
53
 
54
54
  ### npm(推荐)
55
55
 
56
56
  ```bash
57
- npm install -g openclaw-cn@latest
57
+ npm install -g openclaw-botonline@latest
58
58
  # 或
59
- pnpm add -g openclaw-cn@latest
59
+ pnpm add -g openclaw-botonline@latest
60
60
  ```
61
61
 
62
62
  ### 从源码构建
63
63
 
64
64
  ```bash
65
- git clone https://github.com/jiulingyun/openclaw-cn.git
66
- cd openclaw-cn
65
+ git clone https://github.com/FuHuoMe/openclaw-botonline.git
66
+ cd openclaw-botonline
67
67
 
68
68
  pnpm install
69
69
  pnpm ui:build
70
70
  pnpm build
71
71
 
72
- pnpm openclaw-cn onboard --install-daemon
72
+ pnpm openclaw-botonline onboard --install-daemon
73
73
  ```
74
74
 
75
75
  ## 🔧 配置
@@ -91,11 +91,11 @@ pnpm openclaw-cn onboard --install-daemon
91
91
  - [渠道接入](https://clawd.org.cn/docs/channels)
92
92
  - [技能开发](https://clawd.org.cn/docs/tools/skills)
93
93
 
94
- ## 🔄 版本同步
94
+ ## 🔄 版本说明
95
95
 
96
- 本项目基于 [openclaw/openclaw](https://github.com/openclaw/openclaw) 进行中文本地化,定期与上游保持同步。
96
+ 本项目基于 [jiulingyun/openclaw-cn](https://github.com/jiulingyun/openclaw-cn) 进行再开发,适配在线服务部署场景。
97
97
 
98
- 版本格式:`vYYYY.M.D-cn.N`(如 `v2026.1.24-cn.3`)
98
+ 版本格式:`v0.Y.Z`(如 `v0.1.4`)
99
99
 
100
100
  ## 🤝 参与贡献
101
101
 
@@ -119,18 +119,12 @@ pnpm openclaw-cn onboard --install-daemon
119
119
 
120
120
  [MIT](LICENSE)
121
121
 
122
- ## ⭐ Star 趋势
123
-
124
- <a href="https://star-history.com/#jiulingyun/openclaw-cn&Date">
125
- <picture>
126
- <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=jiulingyun/openclaw-cn&type=Date&theme=dark" />
127
- <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=jiulingyun/openclaw-cn&type=Date" />
128
- <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=jiulingyun/openclaw-cn&type=Date" />
129
- </picture>
130
- </a>
131
-
132
122
  ---
133
123
 
134
124
  <p align="center">
135
- 基于 <a href="https://github.com/openclaw/openclaw">Openclaw</a> · 感谢原项目开发者 🧞
125
+ <strong>本项目基于 <a href="https://github.com/jiulingyun/openclaw-cn">jiulingyun/openclaw-cn</a> 进行再开发</a>
126
+ </p>
127
+
128
+ <p align="center">
129
+ 感谢原项目开发者 🧞
136
130
  </p>
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.4",
3
- "commit": "6d4070686106ae41104941f3939d665827941b64",
4
- "builtAt": "2026-02-13T05:37:48.488Z"
2
+ "version": "0.1.6",
3
+ "commit": "8c5e34c2dbc626688b4ee90a7360a44aa80f6469",
4
+ "builtAt": "2026-02-14T03:19:35.829Z"
5
5
  }