常见问题(1) 小程序的AI云电脑的界面进入不了云电脑,显示订购页面 当前账号没有云电脑,可以参加活动领取一台,或新购一台云电脑。方法见快速入门(必看)中,新用户免费体验。 OpenClaw上下文超过模型处理上限 参考文档,压缩上下文: windosw 安装插件时找不到NPM问题 // 修改前 cpp const stdio resolveCommandStdio({ hasInput, preferInherit: true }); const child spawn(argv[0], argv.slice(1), { stdio, cwd, env: resolvedEnv, windowsVerbatimArguments, }); // 修改后 cpp const stdio resolveCommandStdio({ hasInput, preferInherit: true }); // On Windows, npm must be spawned with shell: true or use .cmd extension let command argv[0]; let useShell false; if (process.platform "win32" && path.basename(command) "npm") { useShell true; } const child spawn(command, argv.slice(1), { stdio, cwd, env: resolvedEnv, shell: useShell, }); 旧版本openclaw集成飞书后再升级openclaw导致 飞书失效解决方案 1. 停止openclaw后台服务; 2. 备份openclaw.json文件; 3. 删除openclaw.json关于feishu的配置项; 4. 删除 C:UsersAdministrator.openclawextensionsfeishu; 5. 删除 C:UsersAdministratorAppDataRoamingnpmnodemodulesopenclawextensionsfeishu; 6. 重新安装插件: openclaw plugins install @openclaw/feishu; 7. 重新添加飞书: openclaw channels add 按提示依次填入secret和appId,其他都选择No; 8. 启动openclaw后台服务。
来自: