@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 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 编码助手。这个工具让你一键完成配置,内置 GLM-4-Flash 模型。
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
- - 模型:`glm-4-flash`(通过 zai provider)
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: 内置的是 GLM-4-Flash 模型(通过 zai provider),适合日常使用。
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/hzzzzz-1/openclaw-easy.git
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="glm-4.7-flash" npm publish --access public
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
- - [GLM](https://open.bigmodel.cn/) - 提供内置 API 支持
110
+ - [OpenRouter](https://openrouter.ai/) - 提供 API 支持
111
111
 
112
112
  ## GitHub 仓库
113
113
 
114
- https://github.com/hzzzzz-1/openclaw-easy
114
+ https://github.com/ZiyiSpace/openclaw-easy
115
115
 
116
116
  ## License
117
117
 
@@ -130,7 +130,7 @@ async function main() {
130
130
  } else {
131
131
  finalApiKey = userApiKey;
132
132
  console.log("\n✓ 使用你提供的 API key");
133
- // 用户用自己的 key,不强制使用 GLM 配置
133
+ // 用户用自己的 key,不强制使用内置模型配置
134
134
  finalModel = null;
135
135
  }
136
136
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zi.yi/openclaw-easy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "One-command setup for OpenClaw with built-in API key",
5
5
  "type": "module",
6
6
  "bin": {