來源OpenClaw (GitHub Releases)•較早收集於 29m
OpenClaw 2026.6.1-beta.2:增強代理可靠性與 UI 優化
#agent-framework#llm-ops#workflow-automationopenclawopenclawminimaxclaudeopenaisqlite
💡針對代理運行時的關鍵穩定性更新,並擴展了對最新 LLM 模型的支援。
⚡ 30 秒速覽
有什麼變化
改進了代理和 CLI 運行時在工具調用中斷或會話綁定失效時的恢復機制。
為什麼重要
開發多代理系統的開發人員將受益於網路中斷期間顯著減少的停機時間,以及更可預測的狀態管理。
下一步行動
檢查您的代理工具調用錯誤處理邏輯,以利用此 Beta 版本中引入的更簡潔的恢復模式。
誰應關注:Developers & AI Engineers
關鍵要點
- •改進了代理和 CLI 運行時在工具調用中斷或會話綁定失效時的恢復機制。
- •增強了 Telegram、Slack 和 Discord 等行動與通訊管道的穩定性。
- •擴展了對 MiniMax M3、Claude 1M 及 OpenAI 回應重放防護的模型元數據支援。
- •升級了 Skill Workshop 控制介面,提供可搜尋的檔案預覽與修訂交接流程。
🧠 深度解析
背景與延伸:來自公開資料,非原文內容。引用 26 個來源。
🔑 增強重點摘要
- •OpenClaw is a self-hosted, open-source AI agent framework designed to run on a user's local machine (Mac, Windows, Linux, or VPS), ensuring data privacy and control by storing conversations, long-term memory, and skills as plain Markdown and YAML files.
- •The project, originally named Warelay in November 2025, experienced rapid viral growth, accumulating over 247,000 GitHub stars by March 2026, making it one of the fastest-growing open-source projects in history, despite undergoing multiple rebrands due to trademark complaints.
- •OpenClaw operates with a layered architecture, featuring a central Gateway process that acts as a control plane for routing messages from various channels (WhatsApp, Telegram, Discord, etc.) to an agent engine, which then executes tasks using a modular skills system and persistent local memory.
- •Despite its popularity, OpenClaw has faced significant security scrutiny in early 2026, with multiple CVE disclosures, reports of malicious skills in its marketplace (ClawHub), and a large number of publicly exposed instances, leading to the development of hardened alternatives like NVIDIA's NemoClaw.
- •The framework supports a wide range of AI models, including cloud-hosted options like Anthropic, OpenAI, and Google, as well as local models via Ollama or LM Studio, offering true model portability and extensibility through a well-documented plugin system for custom tools and API integrations.
📊 競品分析▸ Show
| Feature / Product | OpenClaw | Sai by Simular | Claude Cowork | NanoClaw | ZeroClaw | NemoClaw (NVIDIA) |
|---|---|---|---|---|---|---|
| Hosting | Self-hosted (local machine, VPS) | Cloud Workspace | Cloud-hosted (Anthropic ecosystem) | Self-hosted (container-first) | Self-hosted (single Rust binary, minimal footprint) | Self-hosted (wrapper for OpenClaw) |
| Security Model | Application-level, full local access, no built-in approval system; known CVEs and malicious skills | Secure cloud Workspace, approval before critical actions | Secure cloud environment, tight integration with Anthropic models | Container isolation + audit log | Deny-by-default + Rust safety | Kernel sandbox + YAML policy, OpenShell-powered privacy/security |
| Target User | Developers, power users, enterprises with privacy needs | Non-technical users, business automation | Claude users, recurring knowledge work, research | Developers, regulated industries (security-focused) | Edge/IoT, minimal footprint, performance-first | Enterprises hardening existing OpenClaw deployments |
| Setup/Complexity | Requires Node.js, terminal setup; 434K+ lines of code | Zero setup, one-click integrations | No-code experience, but Docker for initial setup | Requires container/DevOps expertise; 700 lines of code | Single binary, deployable in an afternoon | Adds overhead to OpenClaw setup |
| Pricing | Free, open-source (LLM API costs separate) | Starts at $20/month (7-day free trial) | Requires Claude Max subscription | Free, open-source (LLM API costs separate) | Free, open-source (LLM API costs separate) | Enterprise solution, likely commercial |
🛠️ 技術深入
- Architecture: OpenClaw employs a layered, hub-and-spoke architecture with a central Gateway, Agent Engine, Skills, and Storage.
- Gateway: Functions as the control plane, a long-running Node.js service (often via systemd or LaunchAgent) that connects to messaging platforms (e.g., WhatsApp, Telegram, Discord) and routes incoming messages to the Agent Runtime. It typically runs on
ws://127.0.0.1:18789by default. - Agent Runtime (Agent Engine): Executes the AI loop, which involves assembling context from session history and memory, invoking the LLM, executing tool calls, and persisting updated state. It's designed to run proactively in the background.
- Memory and Storage: Conversations, long-term memory, and skills are stored locally as plain Markdown and YAML files within a workspace directory (
~/.openclaw/workspace), making them inspectable, versionable, and auditable. - Skills System: Skills are modular plugins defined in YAML/Markdown files, allowing agents to perform actions like web scraping, API calls, file generation, and browser/system control. The runtime selectively injects relevant skills to optimize prompt size and model performance.
- Model Agnosticism: Supports various LLMs, including cloud-hosted (Anthropic, OpenAI, Google) and local models (Ollama, LM Studio, vLLM, SGLang, any OpenAI/Anthropic-compatible endpoint), with a pluggable model backend.
- Multi-Agent Capabilities: Supports multi-agent routing with isolated sessions per agent, workspace, or sender, and can spawn sub-agents for parallel execution of complex tasks.
- Tool Use: Agents interact with the real world through tools, including shell commands, browser control, file operations, and API integrations. The
ghCLI is used for GitHub operations. - Security: While self-hosted offers privacy, default configurations have raised security concerns, including local storage of credentials in plaintext and vulnerabilities in the skill marketplace. Hardening guides emphasize strict tool policies, sandboxing untrusted skills, and securing network exposure.
- Development: Written in TypeScript and Swift, with a Node.js service. Uses
pnpmfor source checkouts andelectron-builderfor desktop packaging.
🔮 前景展望基於引用來源的 AI 分析
Increased adoption of enterprise-hardened OpenClaw derivatives will occur.
Given OpenClaw's documented security vulnerabilities and the need for robust AI agent solutions in regulated environments, companies like NVIDIA (NemoClaw) and ibl.ai are providing enterprise-grade wrappers and services to address these concerns, making the core framework safer for broader business use.
The agent framework market will continue to diversify with specialized solutions.
The emergence of alternatives like NanoClaw (security-focused, minimal codebase), ZeroClaw (performance-first, edge/IoT), and Claude Cowork (hosted, non-technical users) indicates a market trend towards specialized AI agent frameworks catering to distinct user needs and technical requirements beyond OpenClaw's general-purpose approach.
OpenClaw's open-source model will continue to drive innovation and community contributions, despite security challenges.
With a massive GitHub star count and an active contributor community, OpenClaw benefits from continuous improvements and an extensible architecture, fostering a rich ecosystem of third-party tools and skills, even as security scrutiny necessitates ongoing vigilance and hardening efforts.
⏳ 時間線
2025-11
Peter Steinberger develops the first prototype, initially named Warelay.
2026-01-27
Warelay is renamed to Moltbot.
2026-01-30
Moltbot is renamed to OpenClaw due to trademark complaints and preference.
2026-02-14
Peter Steinberger announces he is joining OpenAI; OpenClaw transitions to an independent open-source foundation.
2026-02
OpenClaw releases v4.0, refactoring its architecture for a pluggable model backend.
2026-03
Chinese authorities restrict state-run enterprises from running OpenClaw AI apps due to security risks.
2026-04-04
Anthropic announces Claude subscriptions will no longer cover third-party tools like OpenClaw.
2026-04-05
OpenClaw releases v4.5, integrating alternative model paths and adapting for task flow.
2026-05-28
A Reddit post details the 'OpenClaw crisis,' highlighting multiple CVEs and malicious skills from January-May 2026.
📎 來源 (26)
Factual claims are grounded in the sources below. Forward-looking analysis is AI-generated interpretation.
- milvus.io
- digitalocean.com
- globussoft.ai
- openclaw.ai
- wikipedia.org
- openclaw.academy
- vallettasoftware.com
- turingpost.com
- medium.com
- substack.com
- fountaincity.tech
- reddit.com
- ibl.ai
- simular.ai
- composio.dev
- till-freitag.com
- nvidia.com
- vallettasoftware.com
- nebius.com
- fedresources.com
- sfailabs.com
- openclaw.ai
- knightli.com
- github.com
- github.com
- github.com
📰
AI 週報
閱讀本週精選 AI 大事摘要 →
👉相關動態
AI 策展新聞聚合。所有內容版權歸原始發布者所有。
原始來源: OpenClaw (GitHub Releases) ↗
每週電子報
每週一封,可隨時退訂。