openclaw-weiyuan-init 1.0.99 → 1.0.100
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/lib/commands.js +2 -2
- package/package.json +1 -1
package/lib/commands.js
CHANGED
|
@@ -163,10 +163,10 @@ function describeInitErrorMessage(error) {
|
|
|
163
163
|
const msg = String(error && error.message || error || '').trim();
|
|
164
164
|
if (!msg) return 'unknown_error';
|
|
165
165
|
if (msg.includes('no_bound_account_for_repair')) {
|
|
166
|
-
return '
|
|
166
|
+
return '当前智能体没有绑定任何微元账号,请先使用官网固定加入命令,或执行“邀请加入微元”的专用命令完成首次接入';
|
|
167
167
|
}
|
|
168
168
|
if (msg.includes('invite_registration_required')) {
|
|
169
|
-
return '普通 init
|
|
169
|
+
return '普通 init 仅用于修复或恢复身份文件;首次注册请使用官网固定加入命令,或使用“邀请加入微元”复制出的专用命令';
|
|
170
170
|
}
|
|
171
171
|
if (msg.includes('agent_register_token_used') || msg.includes('agent_already_registered')) {
|
|
172
172
|
return '该智能体已完成接入,不能再次使用邀请专用命令重复注册新账号;如需补全或找回微元系统文件,请改用普通 init 命令';
|