OpenClaw Releases iOS and Android Companion Node Apps That Connect a Phone to a Self-Hosted AI Agent Gateway
重點摘要
OpenClaw just released native companion apps for iOS and Android. The iOS app is listed as ‘OpenClaw – AI that does things.’ Both apps are free to download. They are not standalone chatbots. Each phone becomes a node in a self-hosted agent network. The assistant itself runs on a separate Gateway. That separation is the whole design. TL;DR OpenClaw’s iOS and Android apps are companion nodes, not standalone assistants. The Gateway runs the agent; phones add camera, location, voice, and Canvas. Nodes pair over WebSocket on port 18789 and require explicit approval. Privacy-heavy commands stay off until you allowlist them. A Gateway on macOS, Linux, or Windows (WSL2) is required. What is OpenClaw? OpenClaw is an open-source personal AI assistant/agent. It was created by Peter Steinberger with c
OpenClaw just released native companion apps for iOS and Android. The iOS app is listed as ‘OpenClaw – AI that does things.’ Both apps are free to download. They are not standalone chatbots. Each phone becomes a node in a self-hosted agent network. The assistant itself runs on a separate Gateway. That separation is the whole design. TL;DR OpenClaw’s iOS and Android apps are companion nodes, not standalone assistants. The Gateway runs the agent; phones add camera, location, voice, and Canvas. Nodes pair over WebSocket on port 18789 and require explicit approval. Privacy-heavy commands stay off until you allowlist them. A Gateway on macOS, Linux, or Windows (WSL2) is required. What is OpenClaw? OpenClaw is an open-source personal AI assistant/agent. It was created by Peter Steinberger with community contributors. The project is independent and not affiliated with Anthropic. Its core is written in TypeScript. The runtime is Node 24 (recommended) or Node 22.19+. The Gateway runs on macOS, Linux, or Windows via WSL2. You talk to it from chat apps you already use. Supported channels include WhatsApp, Telegram, Discord, Slack, Signal, and iMessage. The agent can browse the web, run shell commands, and read and write files. It works with hosted, subscription-backed, gateway, or local models. You bring an API key from your chosen provider. It keeps persistent memory and supports community skills and plugins. How the Gateway-and-Nodes Architecture Works? The Gateway is the single control plane. It owns sessions, routing, channels, tools, and events. You run one Gateway process on your own machine or server. Chat messages always land on the Gateway, never on a phone. A node is a companion device that connects to that Gateway. Nodes connect over a WebSocket on default port 18789. Each node registers with role: "node" during pairing. Nodes expose a command surface through node.invoke. Those command families include canvas.*, camera.*, device.*, notifications.*, and system.*. The documentation is explicit:’Nodes are peripherals, not gateways.’ On a local network, apps discover the Gateway via mDNS/Bonjour. For remote access, OpenClaw recommends Tailscale with a wss:// endpoint. What does Mobile Apps Add? The phone gives the agent a body. It grants device-specific hardware to your workflows. The iOS app pairs by QR code or setup code. It supports chat, realtime and background Talk mode, and approvals. You can share text, links, and media from iOS into OpenClaw. Optional capabilities include camera, screen, location, photos, contacts, calendar, and reminders. The Android app is a companion node, not a standalone gateway. It offers streaming chat replies, image attachments, and full session history. Talk Mode uses ElevenLabs or system TTS. A live Canvas surface lets the agent render dashboards and tools. Android grants permissions one by one. A foreground service keeps the Gateway connection alive. iOS Node vs Android Node CapabilityiOS — OpenClaw – AI that does thingsAndroid — OpenClaw’ nodeRoleCompanion nodeCompanion nodePairingQR code or setup codeSetup code or manual host/portChatChat from iPhoneStreaming replies, image attachments, full session historyVoiceRealtime and background Talk modeTalk Mode (ElevenLabs or system TTS)CanvasCanvas surfaceLive Canvas surfaceDevice capabilitiesCamera, screen, location, photos, contacts, calendar, remindersCamera, photos, screen capture, location, notifications, contacts, calendar, SMS, motion sensorsAction approvalsReviewable from the iPhoneManaged on the GatewayData collectionNone declared (App Store)None declared (Google Play)RequirementiOS 18.0+ and a running GatewayA running Gateway on macOS, Linux, or Windows (WSL2) Use Cases With Examples Consider field data collection on a job site. The agent uses iOS camera capture to photograph conditions. Location tags each photo with GPS coordinates. Consider a context-aware reminder. The agent triggers a task when you reach a place. Consider an incoming notification on Android. The agent reads it and drafts a reply. Consider a live dashboard. The agent pushes a Canvas surface to your screen. Consider hands-free use. Talk Mode holds a continuous voice conversation. One caveat applies to camera and screen capture. They require the app in the foreground. Background calls return an error. Pairing a Phone: A Minimal Walk-Through First, run the Gateway on a supported host. Copy CodeCopiedUse a different Browser# On the Gateway host (macOS, Linux, or Windows via WSL2) npm install -g openclaw@latest openclaw onboard --install-daemon Next, open the app and select a discovered Gateway. Or enter the host and port manually. The app connects with role: "node" and sends a device pairing request. Approve it from the Gateway CLI. Copy CodeCopiedUse a different Browseropenclaw devices list openclaw devices approve <requestId> openclaw nodes status # confirm the node is paired and connected Privacy-heavy commands stay off by default. Examples include camera.snap, camera.clip, and screen.record. You opt in explicitly through gateway.nodes.allowCommands in your config. Copy CodeCopiedUse a different Browser// ~/.openclaw/openclaw.json { gateway: { nodes: { allowCommands: ["camera.snap", "screen.record"], }, }, } A deny list (gateway.nodes.denyCommands) always wins over the allowlist. Security and Approvals Pairing credentials are stored on the device. Every node connection requires approval before it reaches the Gateway. The device pairing record is the durable role contract. Token rotation cannot upgrade a node into a different role. Camera and screen capture are permission-gated and run only in the foreground. Cleartext ws:// is limited to LAN and .local hosts. Public or Tailscale endpoints require a real wss:// TLS endpoint. Interactive Explainer OpenClaw Gateway & Nodes — Interactive Explainer :root{ --bg:#fbf6f2; /* warm cream */ --card:#ffffff; --ink:#26190f; /* warm near-black */ --muted:#7c6a5e; /* warm muted */ --line:#efe2d8; /* warm border */ --soft:#f8efe7; /* warm soft fill */ --accent:#ff5a36; /* OpenClaw coral / lobster */ --accent-deep:#df4326; /* darker coral */ --accent-soft:#ffe6dd; /* peach */ --accent-bd:#ffc9b8; /* peach border */ --teal:#0d9488; /* "completed" state — distinct from coral */ --amber:#b45309; --amber-soft:#fdeccc; --green:#76B900; /* Marktechpost brand */ --code-bg:#21130f; --code-ink:#f1e4dc; --code-coral:#ff8a6b; --code-green:#7ee787; --code-blue:#ffb59e; --code-mut:#a18a7e; --radius:14px; --mono:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; --sans:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; } *{box-sizing:border-box} body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--sans);line-height:1.5;-webkit-font-smoothing:antialiased} .wrap{max-width:880px;margin:0 auto;padding:22px 18px 8px} .eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);font-weight:600} h1{font-size:26px;line-height:1.18;margin:6px 0 6px;letter-spacing:-.01em} .sub{color:var(--muted);font-size:14.5px;margin:0 0 6px;max-width:640px} .note{font-family:var(--mono);font-size:11px;color:var(--muted);background:var(--soft);border:1px solid var(--line);border-radius:8px;padding:6px 10px;display:inline-block;margin-top:8px} .tabs{display:flex;gap:6px;margin:20px 0 14px;flex-wrap:wrap} .tab{font-family:var(--mono);font-size:12.5px;font-weight:600;letter-spacing:.02em;border:1px solid var(--line);background:var(--card);color:var(--muted); padding:9px 14px;border-radius:10px;cursor:pointer;transition:.15s;user-select:none} .tab:hover{border-color:var(--accent);color:var(--accent)} .tab.active{background:var(--accent);border-color:var(--accent);color:#fff} .panel{display:none;animation:fade .25s ease} .panel.active{display:block} @keyframes fade{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}} .card{background:var(--card);border:1px solid v
Related
相關文章

智能體互聯國標發佈:為什麼統一了接口,依然可能連不通物理世界?
這篇消息聚焦「智能體互聯國標發佈:為什麼統一了接口,依然可能連不通物理世界?」。原始導語提到:拆解“智能體破壁”背後的底層邏輯 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。
ScarfBench:針對企業Java框架遷移的AI代理效能基準評測
IBM 研究團隊推出 ScarfBench,這是一個針對企業 Java 框架遷移的 AI 代理效能基準評測。該基準專注於 Spring、Jakarta EE 和 Quarkus 三大框架間的遷移任務,要求 AI 代理不僅要生成程式碼,還需確保應用程式能成功建置、部署並通過行為驗證。ScarfBench 包含 34 個應用程式、204 個遷移任務及超過 1300 個專家測試,提供更貼近真實情境的現代化品質評估。

從Claude Code 負責人最新訪談,看懂正在消失的工程師崗位
這篇消息聚焦「從Claude Code 負責人最新訪談,看懂正在消失的工程師崗位」。原始導語提到:消失的手寫代碼,失控的軟件組織。 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。
從WorldArena榜首到1500+模型落地:跨維智能證明世界模型不是Demo是生意
AI科技評論獲悉,跨維智能近日已完成B輪融資,融資金額10億元人民幣,投後估值超過百億,成功躋身具身智能獨角獸行列,踏入IPO的門檻。這輪融資的投資方橫跨幾類資本:國家級母基金、頭部國資創投、實體龍頭產業資本和地方科創平臺。深創投、貴陽數字經濟基金是連續兩輪下注;前海母基金、藍思科技、工銀資本、恆健資產、諸瑞資本這輪新進入;南山戰新投、成都科創投、四川院士基金等老股東繼續追加。新老股東一起加碼,背後是資本市場對跨維技術路線和落地能力的某種共識。至於錢往哪花,跨維的答案是幾件事:底層世界模型算法迭代、物理引擎升級、數據基礎設施建設、人形機器人能力完善,以及真實場景落地——把技術、產品和商業閉環再往前推一步。百億估值從來不是憑空出現的。一家成立僅四年的公司憑什麼走到這個位置?拆開來看,撐起估值的是:一條被持續驗證的技術路線、一個跑通了的商業閉環、一種以終為始的終局戰略。物理AI技術全棧自研,幾經行業驗證2021年成立時,跨維智能就把方向定在物理AI與世界模型上,是國內最早一批做物理AI全棧自研的公司。它選的路徑是"世界模型 + 物理仿真 + 真機落地",這條路被它認為是行業終局。值得注意的是,跨維多項核心技術節點的佈局進度,排在英偉達、DeepMind等海外巨頭之前,而過去幾年的行業走勢,也一直在驗證這條路線。世界模型,是這條路線的核心,也是當下全球AI頭部力量競逐的方向。英偉達、谷歌等公司持續圍繞物理AI、機器人仿真、環境推演、合成數據生成和世界基礎模型進行前沿佈局,把人工智能從語言理解、視覺識別,進一步推向物理世界建模、動作因果預測和智能體交互決策。對具身智能產業而言,世界模型早已不只是"生成未來畫面"的視覺模型,而是支撐機器人訓練、評估、規劃與泛化的關鍵技術底座。跨維選這條道,等於把自己擺到了和全球頭部同臺競技的位置。一個近期的註腳,來自全球具身世界模型權威評測World

AI 編程工具 Cursor 推出移動端應用,手機即可操控智能體
Cursor 發佈 Cursor Mobile 應用,用戶可直接用手機操控 AI 編程智能體,與電腦端協同工作。這標誌著 AI 編程工具正從純手寫代碼向管理代碼生成智能體轉型,開發者可隨時隨地用手機與雲端智能體對話協作。#AI編程# #移動開發#

Agent之間,有互聯網了!
這篇消息聚焦「Agent之間,有互聯網了!」。原始導語提到:明略科技開源發佈Octo 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。