# openclaw **Repository Path**: deeround/openclaw ## Basic Information - **Project Name**: openclaw - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-15 - **Last Updated**: 2026-05-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 本地部署 ## 1、环境安装 nodejs 下载地址 ~~~ shell https://registry.npmmirror.com/binary.html?path=node/latest-v24.x/ ~~~ 设置淘宝镜像源(新域名) ~~~ npm config set registry https://registry.npmmirror.com/ ~~~ 验证是否设置成功 ~~~ shell npm config get registry ~~~ 下载python ~~~ shell https://mirrors.huaweicloud.com/python/3.11.0/ ~~~ 配置镜像源 ~~~ shell python -m pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple --upgrade pip ~~~~ ~~~ shell pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple ~~~ 安装uv包管理器 ~~~ shell pip install uv ~~~ 安装 Xcode 命令行工具 ~~~ shell xcode-select --install ~~~ 安装 Homebrew ~~~ shell /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" ~~~ ## 2、安装 安装 查询版本 ~~~ shell npm info openclaw versions ~~~ ~~~ shell npm install -g openclaw@2026.3.28 ~~~ ~~~ shell sudo npm install -g openclaw@2026.3.28 ~~~ 初始化 ~~~ shell openclaw onboard --install-daemon ~~~ ## 3、飞书 ~~~ shell https://open.feishu.cn ~~~ 权限代码 ~~~ json { "scopes": { "tenant": [ "contact:contact.base:readonly", "docx:document:readonly", "im:chat:read", "im:chat:update", "im:message.group_at_msg:readonly", "im:message.p2p_msg:readonly", "im:message.pins:read", "im:message.pins:write_only", "im:message.reactions:read", "im:message.reactions:write_only", "im:message:readonly", "im:message:recall", "im:message:send_as_bot", "im:message:send_multi_users", "im:message:send_sys_msg", "im:message:update", "im:resource", "application:application:self_manage", "cardkit:card:write", "cardkit:card:read" ], "user": [ "contact:user.employee_id:readonly", "offline_access","base:app:copy", "base:field:create", "base:field:delete", "base:field:read", "base:field:update", "base:record:create", "base:record:delete", "base:record:retrieve", "base:record:update", "base:table:create", "base:table:delete", "base:table:read", "base:table:update", "base:view:read", "base:view:write_only", "base:app:create", "base:app:update", "base:app:read", "sheets:spreadsheet.meta:read", "sheets:spreadsheet:read", "sheets:spreadsheet:create", "sheets:spreadsheet:write_only", "docs:document:export", "docs:document.media:upload", "board:whiteboard:node:create", "board:whiteboard:node:read", "calendar:calendar:read", "calendar:calendar.event:create", "calendar:calendar.event:delete", "calendar:calendar.event:read", "calendar:calendar.event:reply", "calendar:calendar.event:update", "calendar:calendar.free_busy:read", "contact:contact.base:readonly", "contact:user.base:readonly", "contact:user:search", "docs:document.comment:create", "docs:document.comment:read", "docs:document.comment:update", "docs:document.media:download", "docs:document:copy", "docx:document:create", "docx:document:readonly", "docx:document:write_only", "drive:drive.metadata:readonly", "drive:file:download", "drive:file:upload", "im:chat.members:read", "im:chat:read", "im:message", "im:message.group_msg:get_as_user", "im:message.p2p_msg:get_as_user", "im:message:readonly", "search:docs:read", "search:message", "space:document:delete", "space:document:move", "space:document:retrieve", "task:comment:read", "task:comment:write", "task:task:read", "task:task:write", "task:task:writeonly", "task:tasklist:read", "task:tasklist:write", "wiki:node:copy", "wiki:node:create", "wiki:node:move", "wiki:node:read", "wiki:node:retrieve", "wiki:space:read", "wiki:space:retrieve", "wiki:space:write_only" ] } } ~~~ ## 4、验证飞书结果 1、手机安装飞书APP 2、选择对应组织进入,点击开发者小助手 ![1773586122319](README.assets/1773586122319.png) 3、点击打开应用 ![1773586212385](README.assets/1773586212385.png) 4、发送“你好”过去 ![1773586244173](README.assets/1773586244173.png) 5、如果遇到这个错误,只需要服务端授权即可 OpenClaw: access not configured. Your Feishu user id: ou_99e921ae4cdc36814a5b23e4249e10d2 Pairing code: M4255QLU Ask the bot owner to approve with: openclaw pairing approve feishu M4255QLU ~~~ shell openclaw pairing approve feishu M4255QLU ~~~ ## 5、QQ 登录QQ ~~~ shell https://github.com/tencent-connect/openclaw-qqbot ~~~ ~~~ shell https://q.qq.com/qqbot/openclaw/login.html ~~~ ## 6、企业微信 企业微信 ~~~ shell https://zhuanlan.zhihu.com/p/2014431720838013859 ~~~ ~~~ shell https://work.weixin.qq.com/ ~~~ ## 7、钉钉 钉钉 ~~~ shell https://github.com/DingTalk-Real-AI/dingtalk-openclaw-connector ~~~ ~~~ shell https://open-dev.dingtalk.com/ ~~~ ## 9、常用命令 | 你想做什么 | 在终端输入的命令 | | --------------- | -------------------------- | | 启动 OpenClaw | `openclaw gateway start` | | 停止 OpenClaw | `openclaw gateway stop` | | 重启 OpenClaw | `openclaw gateway restart` | | 查看是否在运行 | `openclaw status` | | 查看运行日志 | `openclaw gateway logs` | | 打开 Web 控制台 | `openclaw dashboard` |