OpenClaw最新版本高頻操作與實戰(zhàn)技巧
作者前言:最近在折騰一個特別有意思的開源項目 —— OpenClaw,一款可以運行在自己電腦上的"個人 AI 助手網(wǎng)關(guān)",支持 WhatsApp、Telegram、Discord、Slack、iMessage、Matrix 等十幾個主流通道,還能同時跑多個隔離的 Agent(相當(dāng)于多個不同人格的 AI 助理)。
用了一段時間后,我把自己平時高頻使用的命令行操作整理成這篇實戰(zhàn)教程,一篇文章掌握 OpenClaw 90% 的日常用法。從零安裝到多 Agent 協(xié)同、從通道接入到遠(yuǎn)程訪問、從定時任務(wù)到故障排查,全都幫你梳理清楚。
如果你也想擁有一個 24 小時在線、能自動收發(fā)消息、能調(diào)用手機相機、能定時發(fā)日報的本地 AI 助手,這篇文章你一定要收藏。

一、什么是 OpenClaw?
用一句話說:OpenClaw 是一個跑在你本機的 AI 助手運行時,能讓 GPT / Claude / Gemini 等大模型"長在"你的 IM 上。
它的核心能力大概是這樣:
| 能力 | 說明 |
|---|---|
| 多通道接入 | WhatsApp / Telegram / Discord / Slack / iMessage / Signal / Matrix / Google Chat / 微信 / QQ / 飛書 … |
| 多 Agent | 每個 agent 獨立 workspace、獨立會話、獨立記憶 |
| Gateway 網(wǎng)關(guān) | 一個 WebSocket 服務(wù)統(tǒng)一管所有通道,支持 Tailscale 遠(yuǎn)程訪問 |
| 節(jié)點 (Nodes) | iOS / Android / Mac 作為配對設(shè)備,可調(diào)用相機、屏幕、位置、Canvas |
| 協(xié)議橋 | 內(nèi)置 MCP Server / ACP Bridge,可無縫接入 Codex、Claude Code、Cursor 等 |
| 定時任務(wù) | Cron 每天自動執(zhí)行 AI 任務(wù)并投遞到指定通道 |
| 插件/技能 | 支持 ClawHub 插件和工作區(qū) Skills |
運行時要求:Node 24(推薦)或 Node 22.16+,支持 macOS / Linux / Windows。
二、一分鐘極速安裝
OpenClaw 的安裝體驗做得相當(dāng)好,基本上一條命令跑完引導(dǎo),一條命令啟動:
# 1. 全局安裝 CLI(三選一) npm install -g openclaw@latest pnpm add -g openclaw@latest bun add -g openclaw@latest # 2. 交互式引導(dǎo) + 自動安裝后臺守護進程 openclaw onboard --install-daemon
引導(dǎo)過程會問你幾個問題:
- 你想用哪家大模型?(OpenAI / Anthropic / Gemini / 本地 Ollama / LM Studio / …)
- API Key 是啥?
- Gateway 監(jiān)聽哪個端口?(默認(rèn) 18789)
- 要不要安裝后臺服務(wù)?(推薦 Yes,這樣開機自啟)
小貼士:如果你已經(jīng)在用 Codex / Claude CLI 訂閱,可以直接選 openai-codex 或 claude-cli,完全不用手輸 key,OpenClaw 會自動復(fù)用它們的登錄憑據(jù)。
驗證安裝:
openclaw --version openclaw status
如果看到 Gateway 狀態(tài) running、Health ok,恭喜你,已經(jīng)跑起來了。
三、開箱必備:10 個最常用的命令
我按使用頻率給你排了個序,這 10 條命令基本覆蓋 80% 的日常場景:
openclaw status # ① 看一眼整體狀態(tài)(最常用!) openclaw doctor # ② 出問題先跑它 openclaw gateway restart # ③ 改完配置重啟網(wǎng)關(guān) openclaw logs --follow # ④ 實時看日志 openclaw channels list # ⑤ 查看接入了哪些通道 openclaw channels status --probe # ⑥ 實時探測每個通道是否健康 openclaw agents list --bindings # ⑦ 查看 agent 和通道的綁定 openclaw agent -m "hello" --deliver # ⑧ 和 AI 聊一句并投遞到默認(rèn)通道 openclaw message send --to +86xxx -m "x" # ⑨ 主動發(fā)消息 openclaw config get agents.list # ⑩ 讀配置
四、接入第一個聊天通道
OpenClaw 支持的通道很多,這里挑三個最典型的演示。
4.1 Telegram(最簡單)
去 @BotFather 創(chuàng)建 bot,拿到 token:
# 方式一:明文傳入 openclaw channels add --channel telegram --token 123456:ABCDEF... # 方式二:走環(huán)境變量(推薦) export TELEGRAM_BOT_TOKEN=123456:ABCDEF... openclaw channels add --channel telegram --use-env
加完后重啟 Gateway:
openclaw gateway restart openclaw channels status --probe
然后到 Telegram 里給你的 bot 發(fā)條消息,AI 就會自動回復(fù)了。
4.2 Discord
Discord Developer Portal 創(chuàng)建應(yīng)用和 Bot:
export DISCORD_BOT_TOKEN=xxx openclaw channels add --channel discord --token "$DISCORD_BOT_TOKEN"
4.3 WhatsApp(需要掃碼)
# 交互式掃碼登錄 openclaw channels login --channel whatsapp --account personal
終端會彈出一個二維碼,用手機 WhatsApp 掃描即可完成配對。多個賬號就跑多次:
openclaw channels login --channel whatsapp --account biz openclaw channels login --channel whatsapp --account family
4.4 批量查看接入情況
openclaw channels list --json openclaw channels status --probe openclaw channels capabilities --channel discord --json
五、啟動與管理 Gateway(核心網(wǎng)關(guān))
Gateway 是 OpenClaw 的"心臟",所有通道、Agent、RPC 調(diào)用都經(jīng)過它。
5.1 前臺運行(調(diào)試時最常用)
openclaw gateway --port 18789 --verbose
5.2 作為后臺服務(wù)運行(生產(chǎn)推薦)
openclaw gateway install # 安裝服務(wù)(macOS=launchd / Linux=systemd / Windows=schtasks) openclaw gateway start openclaw gateway status openclaw gateway stop openclaw gateway restart openclaw gateway uninstall
5.3 查看運行狀態(tài)
openclaw gateway status --json openclaw gateway health openclaw gateway probe # 深度探測:本地 + 遠(yuǎn)程 gateway 全掃一遍 openclaw gateway discover # 掃描局域網(wǎng)內(nèi)的 Gateway(Bonjour) openclaw gateway usage-cost --days 7 # 最近 7 天 LLM 消耗成本
5.4 低級 RPC 調(diào)用(調(diào)試?yán)鳎?/h3>
openclaw gateway call status
openclaw gateway call logs.tail --params '{"sinceMs":60000}'
踩坑提示:改了 ~/.openclaw/openclaw.json 配置后,一定要 openclaw gateway restart,否則新配置不生效。
openclaw gateway call status
openclaw gateway call logs.tail --params '{"sinceMs":60000}'
踩坑提示:改了 ~/.openclaw/openclaw.json 配置后,一定要 openclaw gateway restart,否則新配置不生效。
六、配置管理:改配置不用手撕 JSON
OpenClaw 提供了非交互式的 config 命令,告別手動改 JSON:
# 查看配置文件路徑 openclaw config file # 讀取單個配置 openclaw config get gateway.port openclaw config get agents.list[0].id # 寫入配置 openclaw config set gateway.port 19000 --strict-json openclaw config set agents.defaults.heartbeat.every "2h" # 刪除配置 openclaw config unset plugins.entries.brave # 驗證配置是否合法 openclaw config validate --json # 導(dǎo)出 JSON Schema(給 IDE 補全用) openclaw config schema > openclaw.schema.json
交互式向?qū)?/strong>:
openclaw configure # 全量向?qū)? openclaw configure --section channels # 只配通道 openclaw configure --section gateway # 只配網(wǎng)關(guān)
七、和 AI 對話:agent 命令詳解
openclaw agent 是無頭對話入口,跑一輪 agent 并拿到結(jié)果:
# 最簡:寫一句話讓 AI 回 openclaw agent -m "今天該做什么?" # 開啟高強度思考(需模型支持) openclaw agent -m "幫我 review 這段代碼..." --thinking high # 指定某個 agent(多 agent 場景) openclaw agent --agent work -m "總結(jié)一下今天日程" # 把結(jié)果自動投遞到 Slack 某個頻道 openclaw agent -m "生成周報" --deliver --reply-channel slack --reply-to "#weekly" # JSON 輸出(寫腳本用) openclaw agent -m "list 3 ideas" --json --timeout 120 # 保持在同一個會話里(多輪對話) openclaw agent --session-id my-coding-session -m "繼續(xù)剛才的話題"
關(guān)鍵參數(shù)速查:
| 參數(shù) | 作用 |
|---|---|
-m | 消息內(nèi)容(必填) |
--agent <id> | 指定 agent |
--session-id <id> | 保持多輪上下文 |
--thinking <off|low|medium|high|xhigh> | 思考深度 |
--deliver | 投遞到某個通道 |
--local | 嵌入式運行,不走 Gateway |
--json | JSON 輸出 |
八、多 Agent 協(xié)同:給不同通道配不同"人格"
這是 OpenClaw 最有意思的功能之一。一個 Gateway 里可以跑多個 Agent,每個 Agent 有獨立的 workspace、記憶、模型、權(quán)限。
8.1 創(chuàng)建多個 Agent
# 開一個專門處理編程任務(wù)的 agent,用 Claude Opus openclaw agents add coding \ --workspace ~/.openclaw/workspace-coding \ --model anthropic/claude-opus-4-6 \ --non-interactive # 開一個社交聊天的 agent,用 GPT openclaw agents add social \ --workspace ~/.openclaw/workspace-social \ --model openai/gpt-5.4 \ --non-interactive # 開一個運維告警的 agent openclaw agents add ops \ --workspace ~/.openclaw/workspace-ops \ --model anthropic/claude-sonnet-4-6 \ --non-interactive
8.2 綁定通道(路由規(guī)則)
# Telegram coding 頻道 -> coding agent openclaw agents bind --agent coding --bind telegram:coding # 整個 WhatsApp -> social agent openclaw agents bind --agent social --bind whatsapp # Discord 的 ops 服 + Slack team-a -> ops agent openclaw agents bind --agent ops --bind discord:ops openclaw agents bind --agent ops --bind slack:team-a
綁定粒度超細(xì),支持按 通道 → 賬號 → 群組 → 某個用戶 逐級匹配,原則是 最具體的規(guī)則優(yōu)先。
8.3 查看綁定關(guān)系
openclaw agents list --bindings --json openclaw agents bindings --agent coding
8.4 解綁和刪除
openclaw agents unbind --agent ops --bind slack:team-a openclaw agents unbind --agent ops --all openclaw agents delete coding --force
8.5 舉個實際場景
老板的需求:個人 WhatsApp 交給"家庭助手",公司 WhatsApp 交給"工作助手"。
// ~/.openclaw/openclaw.json 片段
{
agents: {
list: [
{ id: "home", default: true, workspace: "~/.openclaw/workspace-home" },
{ id: "work", workspace: "~/.openclaw/workspace-work" }
]
},
bindings: [
{ agentId: "home", match: { channel: "whatsapp", accountId: "personal" } },
{ agentId: "work", match: { channel: "whatsapp", accountId: "biz" } }
]
}
應(yīng)用:
openclaw gateway restart openclaw agents list --bindings
搞定!兩個 WhatsApp 號,兩個完全獨立的 AI,互不串線。
九、消息高階玩法:廣播、投票、編輯、置頂
openclaw message 是通用的消息操作命令,功能非常豐富。
9.1 發(fā)消息
# 發(fā)文本 openclaw message send --channel telegram --target @mychat -m "hello" # 發(fā)圖片 openclaw message send --channel telegram --target @mychat --media ./chart.png # 引用回復(fù)某條消息 openclaw message send --channel discord --target channel:123 -m "同意" --reply-to 456
9.2 廣播到所有通道
openclaw message broadcast --channel all \ --targets +86139xxxx --targets @tgchat --targets channel:discord123 \ --message "服務(wù)器 10 分鐘后重啟" \ --dry-run # 先預(yù)演,確認(rèn)沒問題再去掉
9.3 發(fā)投票(Discord / Telegram)
openclaw message poll --channel discord --target channel:123 \ --poll-question "今天吃什么?" \ --poll-option 火鍋 --poll-option 烤肉 --poll-option 輕食 \ --poll-multi --poll-duration-hours 2
9.4 加表情反應(yīng) / 讀取歷史 / 編輯 / 刪除 / 置頂
openclaw message react --channel slack --target C123 --message-id 456 --emoji "??" openclaw message read --channel discord --target channel:123 --limit 50 openclaw message edit --channel slack --target C123 --message-id T123 -m "已更新" openclaw message delete --channel telegram --target @mychat --message-id 42 openclaw message pin --channel discord --target channel:123 --message-id 456
9.5 Discord 管理命令
openclaw message timeout --guild-id 123 --user-id 456 --duration-min 30 --reason "spam" openclaw message kick --guild-id 123 --user-id 456 openclaw message ban --guild-id 123 --user-id 456 --delete-days 1
十、定時任務(wù):每天早上自動發(fā)晨報
openclaw cron 讓 AI 按時工作,非常實用:
# 每天早上 7 點,讓 AI 總結(jié)昨晚消息并發(fā)到 Slack openclaw cron add \ --name "Morning brief" \ --cron "0 7 * * *" \ --session isolated \ --message "總結(jié)昨晚團隊聊天重要信息" \ --announce --channel slack --to "channel:C1234567890" \ --light-context # 查看所有定時任務(wù) openclaw cron list # 手動觸發(fā)一次(不等到 cron 時間) openclaw cron run <job-id> # 查看運行歷史 openclaw cron runs --id <job-id> --limit 20 # 修改投遞目標(biāo) openclaw cron edit <job-id> --channel telegram --to "@team-channel" # 暫停 / 啟用 / 刪除 openclaw cron disable <job-id> openclaw cron enable <job-id> openclaw cron rm <job-id>
還支持一次性任務(wù)(--at)和間隔任務(wù)(--every 10m),詳細(xì)可參考 openclaw cron add --help。
十一、遠(yuǎn)程訪問:Tailscale + 手機掃碼配對
OpenClaw 和 Tailscale 集成得非常好,兩條命令就能把你本地的 AI 助手變成全球可達:
# 本機 Gateway 通過 Tailscale Serve 暴露(僅你自己的 Tailnet 內(nèi)可達) openclaw gateway --bind tailnet --tailscale serve # 遠(yuǎn)程筆記本接入 openclaw --profile remote onboard --mode remote \ --remote-url wss://mymac.tailnet.ts.net:18789 \ --remote-token "$OPENCLAW_GATEWAY_TOKEN" # 給手機生成配對二維碼(掃一下即可接入) openclaw qr --remote
附加能力:把手機變成 Node 節(jié)點
# 手機上安裝 OpenClaw iOS/Android 端 → 掃碼配對 # PC 端審批 openclaw nodes pending openclaw nodes approve <requestId> # 之后你的 AI 就能調(diào)用手機相機 openclaw nodes camera snap --node phone --facing back openclaw nodes location get --node phone --accuracy precise # Mac 作為節(jié)點:讓 AI 遠(yuǎn)程打開網(wǎng)頁、截屏 openclaw nodes canvas navigate https://example.com --node mac openclaw nodes screen record --node mac --duration 20s --out ./rec.mp4
想象一下:“Siri,用我家 Mac 打開淘寶搜一下 XXX 并截圖發(fā)我 Telegram” —— 這些都能腳本化實現(xiàn)。
十二、故障排查:doctor 一把梭
碰到問題怎么辦?記住這套排查三板斧:
# 第一步:看狀態(tài) openclaw status --deep openclaw health --verbose # 第二步:實時日志 openclaw logs --follow openclaw channels logs --channel all --lines 500 # 第三步:自動修復(fù) openclaw doctor openclaw doctor --deep openclaw doctor --fix
doctor --fix 能自動修復(fù) 90% 的常見問題:
- Gateway 服務(wù)安裝不正確
- Workspace 缺失
AGENTS.md - SecretRef 引用斷裂
- 通道憑據(jù)過期
- 端口占用 / 舊進程殘留
如果 doctor 都救不了,還有終極大招:
openclaw reset --scope config # 只重置配置 openclaw reset --scope config+creds+sessions # 重置配置+憑據(jù)+會話(workspace 保留) openclaw onboard --reset # 重置后再重新引導(dǎo)
十三、模型與 Provider 切換
# 看當(dāng)前在用什么模型 openclaw models status # 列出所有可用模型 openclaw models list --all # 切換默認(rèn)模型 openclaw models set anthropic/claude-sonnet-4-6 openclaw models set-image openai/gpt-image-1 # 配置失敗回退鏈(主模型掛了自動切換) openclaw models fallbacks add openai/gpt-5.4 openclaw models fallbacks list # 登錄各家 Provider openclaw models auth login --provider openai openclaw models auth login --provider anthropic --method claude-cli --set-default openclaw models auth login-github-copilot # GitHub Copilot 特殊 OAuth # 探活測試(看哪些 key 過期了) openclaw models status --probe --json
獨立推理能力(可以脫離 agent 單獨調(diào)用):
openclaw infer model run --prompt "寫一首關(guān)于龍蝦的詩" --json openclaw infer image generate --prompt "一只戴皇冠的龍蝦,像素風(fēng)" --json openclaw infer audio transcribe --file ./meeting.m4a --json openclaw infer tts convert --text "你好" --output ./out.mp3 --json openclaw infer web search --query "OpenClaw 最新版本" --json
這些命令相當(dāng)于給你提供了一套標(biāo)準(zhǔn)化的 LLM 工具 CLI,可以直接在 shell 腳本里用。
十四、安全加固:API Key 不再明文落盤
千萬別把 API Key 明文寫進 openclaw.json,萬一誤傳到 Git 就炸了。
正確做法:用 SecretRef 把 key 引用到環(huán)境變量:
# 1. 在 shell 或 ~/.openclaw/.env 里配置 export DISCORD_BOT_TOKEN=xxx echo "OPENAI_API_KEY=sk-xxx" >> ~/.openclaw/.env # 2. 配置改成引用 openclaw config set channels.discord.token \ --ref-provider default \ --ref-source env \ --ref-id DISCORD_BOT_TOKEN # 3. Dry-run 先預(yù)演 openclaw config set channels.discord.token \ --ref-provider default --ref-source env --ref-id DISCORD_BOT_TOKEN \ --dry-run # 4. 審計一下有沒有明文 key 殘留 openclaw secrets audit --check openclaw security audit --deep # 5. 熱重載 openclaw secrets reload
如果企業(yè)場景需要更安全的密鑰管理,還支持 file 和 exec 形式的 Provider(比如接入 HashiCorp Vault)。
十五、升級、備份、卸載
升級
openclaw update # 升級到最新 stable openclaw update --channel beta # 切換到 beta 通道 openclaw update --channel dev # nightly openclaw update status openclaw update wizard
備份
openclaw backup create --output ./openclaw-backup.tar.gz --verify openclaw backup verify ./openclaw-backup.tar.gz --json
卸載
openclaw uninstall # 交互選擇要刪除什么 openclaw uninstall --all --yes # 全刪(服務(wù) + 狀態(tài) + workspace + 應(yīng)用) openclaw uninstall --dry-run # 先預(yù)覽
附:高頻命令速查表
復(fù)制保存這張表,平時用的時候翻一翻就夠了:
| 場景 | 命令 |
|---|---|
| 裝 OpenClaw | npm i -g openclaw@latest && openclaw onboard --install-daemon |
| 看狀態(tài) | openclaw status --deep |
| 看日志 | openclaw logs --follow |
| 啟/停網(wǎng)關(guān) | openclaw gateway start | stop | restart |
| 加通道 | openclaw channels add --channel <name> --token <token> |
| 登錄 WhatsApp | openclaw channels login --channel whatsapp --account personal |
| 通道健康探測 | openclaw channels status --probe |
| 查看 Agent 綁定 | openclaw agents list --bindings |
| 加 Agent | openclaw agents add <id> --workspace <dir> --model <m> --non-interactive |
| 綁定 Agent | openclaw agents bind --agent <id> --bind <channel[:account]> |
| 跟 AI 聊 | openclaw agent -m "..." --thinking high |
| 發(fā)消息 | openclaw message send --to <dest> -m "..." |
| 廣播 | openclaw message broadcast --channel all --targets ... -m ... |
| 加定時任務(wù) | openclaw cron add --name ... --cron ... --message ... |
| 手動觸發(fā) cron | openclaw cron run <job-id> |
| 切模型 | openclaw models set <provider>/<model> |
| 模型登錄 | openclaw models auth login --provider openai |
| 配置讀取 | openclaw config get <path> |
| 配置寫入 | openclaw config set <path> <value> |
| 配置校驗 | openclaw config validate --json |
| 一鍵診斷 | openclaw doctor --fix |
| 一鍵升級 | openclaw update |
| 一鍵備份 | openclaw backup create --verify |
| 掃碼配對 | openclaw qr |
| Tailscale 遠(yuǎn)程 | openclaw gateway --bind tailnet --tailscale serve |
寫在最后
OpenClaw 給我的最大感受是:它把"把大模型裝進生活"這件事做成了一套工程化、可運維的系統(tǒng)。你可以當(dāng)它是玩具,也可以用它搭一個全天候的 AI 秘書、代碼助手、社群機器人。
我個人目前的用法:
- Telegram 綁定
codingagent → 做代碼 review、翻譯、寫 commit message - WhatsApp 綁定
homeagent → 家庭日常、購物清單、日歷管理 - Slack 綁定
opsagent → 接告警、自動值班、每日站會紀(jì)要 - Discord 綁定
socialagent → 社群機器人 - iPhone Node → 遠(yuǎn)程截圖、拍照、查位置
- Cron 定時任務(wù) → 每天晨報、周報、月度總結(jié)
如果你也有類似需求,強烈建議動手玩一下。這篇教程涵蓋了我平時 90% 以上的操作,從零開始跟著敲一遍,差不多 30 分鐘就能搭好一個屬于你自己的多通道 AI 助手。
以上就是OpenClaw最新版本高頻操作與實戰(zhàn)技巧的詳細(xì)內(nèi)容,更多關(guān)于OpenClaw操作與實戰(zhàn)技巧的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
這篇文章主要為大家介紹了如何解決 OpenClaw 無法識別 Windows 上 Ollama 下載的模型的問題,關(guān)鍵在于正確建立 WSL 和 Windows 文件系統(tǒng)之間的連接,并確保 OpenClaw 能夠訪2026-04-29
Windows10一鍵部署OpenClaw小龍蝦的保姆級教程(2026年)
OpenClaw 是 2026 年初爆火的開源本地 AI 智能體框架,本文為Windows10用戶提供了OpenClaw(小龍蝦)AI智能體的安裝教程,包括下載、解壓、啟動、配置等步驟,并針對Win10系統(tǒng)2026-04-28
部署OpenClaw的過程看似簡單,卻因為細(xì)節(jié)問題踩了不少坑,這篇文章主要介紹了docker部署openclaw遇到的一些踩坑記錄,文中通過代碼及圖文介紹的非常詳細(xì),需要的朋友可以參考下2026-04-28
OpenClaw支持多Agent并行部署,滿足場景隔離、多角色協(xié)作等需求,核心分為 “單Gateway多 Agent” 和 “雙Gateway獨立部署” 兩種方式,具有一定的參考價值,感興趣的可以2026-04-27
OpenClaw接入大模型API的完整配置流程(Windows實測可用)
這篇文章主要介紹了在Windows上首次安裝OpenClaw的詳細(xì)步驟和關(guān)鍵配置項,幫助用戶解決安裝和配置過程中可能遇到的問題,特別是如何正確配置BaseURL、APIKey、模型名和Gatewa2026-04-27
2026年Openclaw快速接入DeepSeek V4 Pro的完整教學(xué)指南
DeepSeek v4 重磅發(fā)布,博查 Model API 在首發(fā)當(dāng)日便已支持v4 全系的調(diào)用,那么如何在 OpenClaw 平臺中通過修改配置文件接入博查 Model API 以使用 DeepSeek V4 系列模型呢2026-04-27
OpenClaw如何切換不同AI模型?2026年OpenClaw模型配置與切換指南
OpenClaw 是一個強大的 AI 助手框架,支持多種國產(chǎn)大語言模型,本文檔詳細(xì)介紹如何配置和切換 OpenClaw 使用的模型,幫助你根據(jù)不同場景選擇最合適的模型2026-04-24
Ubuntu安裝OpenClaw報錯Gateway service check failed的原因及解決方法
OpenClaw近期受到較多關(guān)注,但在安裝過程中,用戶常因環(huán)境配置和依賴問題導(dǎo)致失敗,這篇文章主要介紹了Ubuntu安裝OpenClaw報錯Gateway service check failed的原因及解決方法,2026-04-24
Docker部署OpenClaw后容器內(nèi)無法使用代理的解決方法
在本地跑得好好的OpenClaw,一放到Docker容器里,代理就不生效了,如果你正在經(jīng)歷這些,別懷疑人生——這不是你的問題,是Docker網(wǎng)絡(luò)和OpenClaw代理解析邏輯的雙重夾擊,我2026-04-23
Skill 是 OpenClaw 的核心擴展機制,通過編寫一個 SKILL.md 文件,你就能教會 AI Agent 新的能力,本文將和大家分享8個常用的openclaw Skill,感興趣的小伙伴可以跟隨小編一2026-04-22











