解决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
相关推荐
sbjdhjd15 小时前
Redis 主从复制、哨兵高可用与 Cluster 集群部署实验手册
运维·前端·redis·云原生·开源·bootstrap·html
乐兮创想 小林16 小时前
企业官网移动端性能优化实战:从 Core Web Vitals 到图片/CDN/响应式的工程清单
前端·性能优化·网站建设·北京网站建设公司
前端一小卒16 小时前
不手写代码的第 30 天,我才明白前端这个岗位还剩什么
前端·javascript·ai编程
Ajie'Blog16 小时前
Copilot Agent Tasks API 开放:AI 编程开始进入后台任务时代
服务器·前端·javascript·人工智能·copilot·ai编程
来让爷抱一个16 小时前
MonkeyCode 的 Git 协作功能:团队开发新范式
人工智能·ai编程
老毛肚17 小时前
jeecgboot vue TS & 模板化 04
前端·javascript·vue.js
AI_零食18 小时前
鸿蒙PC Electron跨平台应用开发:24时区时间表应用详解
前端·华为·electron·开源·harmonyos·鸿蒙
向量引擎18 小时前
腾讯混元 API 接入与国内模型统一入口实践:API Key、OpenAI 兼容调用、向量引擎中转配置与企业安全检查
人工智能·gpt·aigc·ai编程·ai写作·agi·api调用
Electrolux19 小时前
[onlyoffice-v9]纯前端怎么实现编辑预览office
前端·javascript·github
码云之上19 小时前
聊聊如何设计一个高效、稳定的 Node.js 接入层
前端·后端·node.js