@zi.yi/openclaw-easy 1.0.0 → 1.0.1
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 +7 -7
- package/bin/openclaw-easy.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
> **One-command setup for [OpenClaw](https://github.com/anthropics/openclaw) with built-in API key.**
|
|
8
8
|
|
|
9
|
-
OpenClaw 是一个自托管 AI 助手网关,可以连接 WhatsApp、Telegram、Discord 等聊天应用到 AI
|
|
9
|
+
OpenClaw 是一个自托管 AI 助手网关,可以连接 WhatsApp、Telegram、Discord 等聊天应用到 AI 编码助手。这个工具让你一键完成配置,内置免费 OpenRouter 模型。
|
|
10
10
|
|
|
11
11
|
## 特点
|
|
12
12
|
|
|
@@ -32,7 +32,7 @@ openclaw-easy
|
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
默认配置:
|
|
35
|
-
- 模型:`
|
|
35
|
+
- 模型:`arcee-ai/trinity-large-preview:free`(通过 zai provider)
|
|
36
36
|
|
|
37
37
|
**方式二:使用自己的 API key**
|
|
38
38
|
|
|
@@ -69,7 +69,7 @@ npx openclaw agent --message "你好"
|
|
|
69
69
|
|
|
70
70
|
### Q: 内置的是什么模型?
|
|
71
71
|
|
|
72
|
-
A: 内置的是
|
|
72
|
+
A: 内置的是 OpenRouter Trinity 模型(通过 zai provider),适合日常使用。
|
|
73
73
|
|
|
74
74
|
### Q: 如何更换模型?
|
|
75
75
|
|
|
@@ -90,7 +90,7 @@ npx openclaw uninstall # 完全卸载 OpenClaw
|
|
|
90
90
|
|
|
91
91
|
```bash
|
|
92
92
|
# 克隆仓库
|
|
93
|
-
git clone https://github.com/
|
|
93
|
+
git clone https://github.com/ZiyiSpace/openclaw-easy.git
|
|
94
94
|
cd openclaw-easy
|
|
95
95
|
|
|
96
96
|
# 安装依赖
|
|
@@ -101,17 +101,17 @@ npm install -g .
|
|
|
101
101
|
openclaw-easy
|
|
102
102
|
|
|
103
103
|
# 发布到 npm(需要设置环境变量)
|
|
104
|
-
BUILTIN_API_KEY="your-api-key" BUILTIN_MODEL="
|
|
104
|
+
BUILTIN_API_KEY="your-api-key" BUILTIN_MODEL="arcee-ai/trinity-large-preview:free" npm publish --access public
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
## 致谢
|
|
108
108
|
|
|
109
109
|
- [OpenClaw](https://github.com/anthropics/openclaw) - 核心项目
|
|
110
|
-
- [
|
|
110
|
+
- [OpenRouter](https://openrouter.ai/) - 提供 API 支持
|
|
111
111
|
|
|
112
112
|
## GitHub 仓库
|
|
113
113
|
|
|
114
|
-
https://github.com/
|
|
114
|
+
https://github.com/ZiyiSpace/openclaw-easy
|
|
115
115
|
|
|
116
116
|
## License
|
|
117
117
|
|
package/bin/openclaw-easy.mjs
CHANGED