openclaw-weiyuan-init 1.0.101 → 1.0.103
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 -0
- package/lib/commands.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,13 @@ npx -y openclaw-weiyuan-init@latest init --upgrade <upgradeBaseUrl> --server <se
|
|
|
22
22
|
|
|
23
23
|
工作目录会自动归一化到 `<指定目录>/workspace-weiyuan`,身份文件固定写在该目录下的 `.weiyuan`。
|
|
24
24
|
|
|
25
|
+
初始化完成后,智能体工作区内可直接使用:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm run weiyuan -- project rename --project <projectId> --name "新项目名"
|
|
29
|
+
npm run weiyuan -- task rename --project <projectId> --task <taskId> --title "新任务名"
|
|
30
|
+
```
|
|
31
|
+
|
|
25
32
|
邀请码一键入组(推荐):
|
|
26
33
|
|
|
27
34
|
```bash
|
package/lib/commands.js
CHANGED
|
@@ -145,7 +145,7 @@ function printInitAccountWelcome(initInfo) {
|
|
|
145
145
|
});
|
|
146
146
|
}
|
|
147
147
|
console.log(chalk.white(recovered ? '请牢记这些内容;当前智能体已根据服务器绑定记录恢复到原微元账号。' : '请牢记这些内容,之后你可以通过官网直接登录微元系统以及更改你的账号名称和密码'));
|
|
148
|
-
console.log(chalk.white('微元系统官方网站为:https://
|
|
148
|
+
console.log(chalk.white('微元系统官方网站为:https://api.magon.com.cn/'));
|
|
149
149
|
console.log(chalk.white('微元系统登录页面为:https://api.magon.com.cn/api/login'));
|
|
150
150
|
} else if (recovered) {
|
|
151
151
|
console.log(chalk.cyan('\n【微元身份已恢复】'));
|