解决openclaw以及插件安装的报错

1 安装微信等插件报错 SafeOpenError: path is not a regular file under root

csharp 复制代码
$ npx -y @tencent-weixin/openclaw-weixin-cli@latest install  
[openclaw-weixin] 已找到本地安装的 openclaw  
[openclaw-weixin] 正在安装插件...  
[openclaw-weixin] 插件安装失败,请手动执行:  
failed to extract archive: SafeOpenError: path is not a regular file under root

openclaw plugins install "@tencent-weixin/openclaw-weixin"
less 复制代码
$ openclaw plugins install "@tencent-weixin/openclaw-weixin"  
10:09:54 [plugins] feishu_doc: Registered feishu_doc, feishu_app_scopes  
10:09:54 [plugins] feishu_chat: Registered feishu_chat tool  
10:09:54 [plugins] feishu_wiki: Registered feishu_wiki tool  
10:09:54 [plugins] feishu_drive: Registered feishu_drive tool  
10:09:54 [plugins] feishu_bitable: Registered bitable tools  
10:09:54 [plugins] [content-security] 状态目录: /Users/yangjie01/.openclaw  
10:09:54 [plugins] [content-security] 注册失败:缺少必要配置。endpoint=<https://jprx.m.qq.com/data/4064/forward>, token=空  
[wechat-access] 腾讯通路插件已注册

🦞 OpenClaw 2026.3.11 (29dc654) --- No $999 stand required.

Downloading @tencent-weixin/openclaw-weixin...  
Extracting /var/folders/ls/4yw8p6vx7vv1xs_lt4h9rx48g4lvj2/T/openclaw-npm-pack-dUwsva/tencent-weixin-openclaw-weixin-1.0.2.tgz...  
failed to extract archive: SafeOpenError: path is not a regular file under root

通过 claude-4.6-Sonnet 解决

问题总结:OpenClaw 插件安装失败

根本原因

OpenClaw 在 macOS 上安装插件时,使用了一个 Python 脚本来做原子文件写入runPinnedWriteHelper),该脚本用到了 os.open(path, flags, dir_fd=dir_fd)dir_fd 参数。

dir_fd 是 Linux 特有特性,macOS 的 Python 不支持,导致 Python 脚本崩溃:

csharp 复制代码
NotImplementedError: dir_fd unavailable on this platform

这个错误被层层包装后,以误导性的错误信息呈现给用户:

vbnet 复制代码
failed to extract archive: SafeOpenError: path is not a regular file under root

解决方案

⚠️ 将以下路径中的 {USERNAME} 替换为你的用户名,{NODE_VERSION} 替换为你的 Node.js 版本(如 v24.14.0

bash 复制代码
/Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/

Patch 1 --- install-safe-path-xC--QTS5.js:跳过非文件条目

scss 复制代码
sed -i '' 's/if (!sourceStat.isFile()) throw new Error(`archive staging contains unsupported entry: ${originalPath}`);/if (!sourceStat.isFile()) { continue; }/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/install-safe-path-xC--QTS5.js

Patch 2 --- windows-spawn-oQqooioe.js:新建文件时跳过 isFile 检查

arduino 复制代码
sed -i '' '469s/if (!stat.isFile()) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/if (!stat.isFile() && !createdForWrite) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

sed -i '' '473s/if (lstat.isSymbolicLink() || !lstat.isFile()) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/if (!createdForWrite && (lstat.isSymbolicLink() || !lstat.isFile())) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

Patch 3 --- windows-spawn-oQqooioe.js:强制跳过 Python,走 Node.js fallback

arduino 复制代码
sed -i '' 's/const child = spawn("python3",/const { EventEmitter } = await import("node:events"); const child = Object.assign(new EventEmitter(), { stdin: null, stdout: Object.assign(new EventEmitter(), { setEncoding: ()=>{} }), stderr: Object.assign(new EventEmitter(), { setEncoding: ()=>{} }), kill: ()=>{} }); setTimeout(()=>child.emit("close", 0, null), 0); // patched\nif (false) spawn("python3",/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

最终安装

ini 复制代码
# 清理残留配置(如有)
node -e "
const fs = require('fs');
const cfg = JSON.parse(fs.readFileSync(process.env.HOME + '/.openclaw/openclaw.json', 'utf8'));
cfg.plugins.allow = cfg.plugins.allow.filter(x => x !== 'openclaw-weixin');
delete cfg.plugins.entries['openclaw-weixin'];
delete cfg.plugins.installs['openclaw-weixin'];
fs.writeFileSync(process.env.HOME + '/.openclaw/openclaw.json', JSON.stringify(cfg, null, 2));
"

# 安装插件
openclaw plugins install "@tencent-weixin/openclaw-weixin"

# 扫码注册
npx -y @tencent-weixin/openclaw-weixin-cli@latest install

注意事项

  • OpenClaw 升级后 patch 会失效,需重新执行以上三个 patch
  • 这是 OpenClaw 的 bug,建议向官方反馈:macOS 上应优先检测平台是否支持 dir_fd,不支持时直接走 Node.js fallback
相关推荐
GISer_Jing2 小时前
前端组件库——shadcn/ui:轻量、自由、可拥有,解锁前端组件库的AI时代未来
前端·人工智能·ui
Awu12272 小时前
每天一个 Agent Skills:Context7 — 让 AI 永远写出最新的代码
人工智能·aigc·ai编程
执行部之龙2 小时前
JS手写——call bind apply
前端·javascript
京东零售技术2 小时前
告别手动搬砖: JoyCode + i18n-mcp 实现前端项目多语言自动化
前端
李少兄2 小时前
企业资源计划(ERP)系统全景指南
java·前端·数据库·erp
张一凡932 小时前
React 项目也能用依赖注入?我尝试了一下,真香
前端·react.js
somebody2 小时前
零经验学 react 的第15天 - 过渡动画(使用 react-transition-group 库进行实现)
前端
SuperEugene2 小时前
Vue3 + Element Plus 表单开发实战:防重复提交、校验、重置、loading 统一|表单与表格规范篇
前端·javascript·vue.js
SuperEugene2 小时前
Vue3 + Element Plus 中后台弹窗规范:开闭、传参、回调,告别弹窗地狱|Vue 组件与模板规范篇
开发语言·前端·javascript·vue.js·前端框架