Openclaw Newsletter

Archives
May 20, 2026

OpenClaw Newsletter - 2026-05-20

OpenClaw Newsletter - 2026-05-20

OpenClaw Newsletter

Wednesday, May 20, 2026

Top Stories

  • openclaw 2026.5.19-beta.2 — Changes - Agents: clarify that fixes should default to clean bounded refactors, lean internals, and explicit plugin SDK/API deprecation paths. - Dependencies: update @openclaw/proxyline to 0.3.3. -...
  • openclaw 2026.5.19-alpha.1 — Changes - Agents: clarify that fixes should default to clean bounded refactors, lean internals, and explicit plugin SDK/API deprecation paths. - Dependencies: update @openclaw/proxyline to 0.3.3. -...
  • [Bug]: Subagent sandbox does not propagate sandbox.docker.env and may reuse stale workspace/bootstrap state after recreate — Bug type Behavior bug (incorrect output/state without crash) Beta release blocker No Summary Per-agent sandbox configuration appears correct in ~/.openclaw/openclaw.json, but fresh sandboxed subagent...
  • CLI: complete positional args in zsh completion — Summary - Problem: \openclaw wiki ingest \, \openclaw wiki scan \, and every other leaf command with a positional argument emits a zsh completion function that lists options only. Typing \openclaw...
  • fix(compaction): restore session invariants across compaction and reset — Summary Restore session invariants across compaction and reset instead of patching each symptom in isolation. This coordinated fix now covers four connected paths: - subscribe-time before_compaction...
  • feat: enable cache-ttl context pruning for openai-completions providers — Summary Enable cache-ttl based context pruning for all providers using the \openai-completions\ API type. Currently, \isCacheTtlEligibleProvider\ only returns \ rue\ for Anthropic-family and...
  • agents: replay encrypted_content for volcengine seed thinking summary — Summary - Support encrypted_content replay for openai-completions assistant/tool continuations. - Send previous_response_id for HTTP openai-responses / openai-codex-responses tool-only continuations....
  • fix(delivery-context): drop fallback threadId on `to` mismatch and orphan-threadId merges — Summary Adds two defensive guards to mergeDeliveryContext so a stale threadId from fallback can't leak into the merged result across same-channel cross-conversation shapes the existing...
  • fix(memory): improve error message when node:sqlite is unavailable — Summary - detect node:sqlite runtime failures in buildMemorySearchUnavailableResult - return a targeted SQLite-unavailable warning/action instead of the generic embedding/provider message - add a...
  • Feature Request: Add completion/success notification sound for agent turns — Feature Request: Add completion notification sound Problem / User Need When an agent completes a turn (finishes generating a response), users have no audible indication that the response is ready....
  • refactor: replace custom age formatting with compact duration formatt… — …ing in session lock inspection Summary Describe the problem and fix in 2–5 bullets: If this PR fixes a plugin beta-release blocker, title it fix(): beta blocker - and link the matching Beta blocker:...
  • [Feature]: Outbound Telegram send queue with per-chat rate limiting and retry_after-aware backoff — title: "[Feature]: Outbound Telegram send queue with per-chat rate limiting and retry_after-aware backoff" labels: ["enhancement"] Summary Add an outbound message queue for the Telegram channel that...
  • fix(config): accept partial cliBackends overrides by making command optional — Summary - Make agents.defaults.cliBackends..command optional at both the zod schema level (CliBackendSchema) and the TS-type level (CliBackendConfig). - Introduce ResolvedCliBackendConfig with...
  • docs: add OpenViking context engine guide — Summary - Add docs/concepts/context-engine-openviking.md covering OpenViking as a remote context-engine plugin, including install, setup, verification, configuration, lifecycle behavior, tools, and...
  • fix(agents): propagate provider errorMessage in transport stream throws — Summary - Problem: When finalizeTransportStream / the OpenAI Responses transport detects output.stopReason === "error" with a concrete output.errorMessage (e.g. Provider finish_reason:...
  • fix(cli): gate exported subcli descriptors — Summary - Gate the exported SUB_CLI_DESCRIPTORS list through the same private-QA visibility filter used by the sub-CLI helper functions. - Extract the repeated private-QA filter into one helper...
  • test(cli): cover parsePort edge cases — Fixes #83899.\n\nSummary:\n- extend parsePort coverage for numeric strings, whitespace, invalid suffixes, fractional values, and upper-bound rejection\n- keep existing #83900 boundary coverage...
  • feat(memory): switch default local embedding model to bge-m3 Q8_0 🤖 AI-assisted — What Replaces the default local embedding model for memory search from embeddinggemma-300M-qat (768 dims) to BAAI/bge-m3 Q8\_0 via ggml-org/bge-m3-Q8_0-GGUF (1024 dims). Why With the current...
  • feat(googlechat): add sessionThread option to bind OpenClaw sessions to Google Chat threads — AI-assisted: yes (Claude Opus 4.7). Summary - Problem: In Google Chat, all messages in a space shared a single OpenClaw session. Starting a new thread to change topic still inherited memory from...
  • fix: Remove comments from tsconfig.json to resolve JSON parsing error — Problem The qa/convex-credential-broker/convex/tsconfig.json file contains / / style comments, which cause JSON parsing errors in strict JSON parsers: Solution - Removed all comments from the...
  • [Bug]: CLI commands hang at WebSocket gateway handshake — CLI Commands Hang at WebSocket Gateway Handshake Bug Description Every CLI subcommand that requires a live gateway connection hangs indefinitely. The CLI successfully connects to the gateway...
  • [Bug]: CLI Backends quick-start command fails on 2026.4.15 — `openclaw agent` has no `--model` flag — Bug type Behavior bug (incorrect output/state without crash) Beta release blocker No Summary Where https://docs.openclaw.ai/gateway/cli-backends Section: Beginner-friendly quick start The issue The...
  • fix(canvas-host): dedupe signal-polyfill in a2ui bundle — Summary - Problem: The a2ui bundle ships two independent copies of the signal-polyfill module — one renamed with a \$1 suffix (used by signalstore/watcher/effect) and a fresh unsuffixed copy (used by...
  • ui(theme): soften dashboard status and accent palette — Summary - soften the main accent color - use gentler amber and red tones for warnings and danger states - remove the yellow hover underline on overview attention links Why This is a visual polish...
  • ui(overview): clarify usage cost wording and summary cards — Summary - rename ambiguous dashboard Cost labels to Usage Cost - thread usage cost summary data into overview cards - add 7 day and 30 day usage cost hints to the overview card Why This makes the...
  • HTTP /v1/chat/completions: 10-15s TTFB due to full agent context assembly — needs lightContext/voice mode — Problem The HTTP /v1/chat/completions endpoint takes 10-15 seconds TTFB for a simple "say hi" prompt, making it unusable for real-time voice agents (LiveKit, Twilio, etc.). Direct OpenAI API calls...
  • [Bug]: ACP oneshot sessions leave orphaned processes — session reset does not clean up child ACP session keys — Bug type Behavior bug (incorrect output/state without crash) Summary When sessions_spawn creates ACP sessions with mode: "run", the spawned claude-agent-acp + claude processes remain alive...
  • fix(daemon): probe system bus and cgroup-aware dedup for gateway status — Problem: false-positive "double-supervisor" report On headless Linux hosts where OpenClaw is installed as system-level systemd units (unit files under /etc/systemd/system/), openclaw gateway status...
  • fix(agent): abort accepted gateway runs on signal — Problem openclaw agent could keep waiting after an external SIGTERM or SIGINT while a Gateway-backed agent run had already been accepted server-side. For cron, systemd, and other supervisors, that...
  • Dreaming Advanced page maps 'From Daily Log' to groundedCount instead of dailyCount — Summary The Dreaming Advanced page appears to label and summarize grounded replay entries as "From Daily Log", which does not match the underlying short-term recall store semantics. In my current...
  • Feature: Voice input with hold-for-continuous (short click = auto-send, hold 3s = continuous mode) — Feature Request: Smart Voice Input Button with Hold-for-Continuous Current Behavior The Control UI has a single microphone button. After speaking, the recognized text appears in the input field, but...
  • OpenClaw repo stats for 2026-05-20 — 373375 stars, 77504 forks, 2297 contributors
  • OpenClaw sponsors (119 total) — 119 sponsors supporting OpenClaw
  • fix: render CJK text in OG images (#2342)
  • feat: restore skill rescan moderation command (#2341)
  • fix: increase mobile detail tab touch target
  • fix: show VT undetected fallback as pass (#2338)
  • docs: reconcile local dev worktree workflows (#2328)
  • fix: increase clawscan worker throughput (#2327)
  • feat: add self-serve publisher creation (#2324)
  • feat: refresh dynamic og images (#2180)
  • Update install instructions
  • openclaw-cli 2026.5.18 on Homebrew — Your own personal AI assistant
  • mradermacher/Qwen3.5-9b-Opus-Openclaw-Distilled-i1-GGUF — text-generation
  • peterjohannmedina/Medina-Qwen3.5-27B-OpenClaw
  • OpenClaw on DigitalOcean — Deploy your own personal AI assistant with OpenClaw on a DigitalOcean Droplet® server, a powerful open-source platform that runs entirely on your infrastructure. OpenClaw connects to the messaging...
  • OpenClaw – Moltbot Renamed Again
  • Anthropic says OpenClaw-style Claude CLI usage is allowed again
  • StepFun 3.5 Flash is #1 cost-effective model for OpenClaw tasks (300 battles)
  • I read the OpenClaw thread everyone shared — these 5 fixes cut agent costs to one-third and stopped the loops — A practical DEV.to rewrite of a popular OpenClaw discussion: 5 concrete fixes for long-running agents that cut spend to one-third and stop loops. Cove
  • Synology NAS에 OpenClaw 설치하기 — 들어가며 이번 글에서는 Synology NAS에 OpenClaw를 Docker Compose 기반으로 신규 설치하는 과정을 정리한다. Synology DSM...
  • Your Vibe-Coded Side Hustle Has No Customers — And It's Not Because of the Code — Business Insider ran a piece last month: "Good Vibes Won't Help Your Vibe-Coded Side Hustle Win." The...
  • Prime vs (hermes+ openclaw) — This is a submission for the Hermes Agent Challenge What I Built Prime is an open-source,...
  • I Gave an AI Agent a Telegram Bot and It Started Editing Videos — I wanted to test something simple: Could an autonomous AI agent receive a video from Telegram,...
  • OpenClaw outbound agents need deliverability checks before sending — Some agents can even schedule or send campaigns automatically. But most outbound agents still do not...
  • AI Agents Just Had Their ChatGPT Moment — And Most Developers Missed It — Last year, AI agents could handle about 20% of real-world tasks reliably. Today, that number crossed...
  • AI Agent Model: Infra, Cost, and Memory Realities with OpenClaw + Bedrock — We recently tested the increasingly popular and rapidly growing OpenClaw for Vinu Digital. Our...
  • Agentic LLM Inference Parameters Reference for Qwen and Gemma — This page is a practical reference for agentic LLM inference tuning (temperature, top_p, top_k,...
  • I read the 107-comment OpenClaw garlic thread and yeah, the real bug wasn’t garlic — A viral OpenClaw grocery fail wasn’t really about garlic. It was a textbook example of the real problem with autonomous agents: semantic mismatches in
  • $0 Personal Agentic AI Assistant - Setting Up Free Cloud Server - Part 2 — Introduction This is Part 2 of the Zero Dollar AI Assistant series. Part 1- Running a...
  • So Many OpenClaw Wrappers, So Little Time — I Built a Directory for That — If you've been following the OpenClaw ecosystem, you already know the problem: there are a lot of...
  • Claude Cowork vs OpenClaw: Which AI Agent Wins? Is it even a Fair Debate? — The real difference isn’t capability. It’s how much implementation risk each tool puts on the userContinue reading on AI Snapshots »
  • Local LLM Setup with Hermes Agent: Ollama + Hermes Tutorial — Run a fully self-hosted, privacy-first AI agent on your own hardware. No API keys. No cloud costs. No third-party tracking. Complete…Continue reading on Medium »
  • Why you (and everyone else) are looking at AI wrong — Photo by Andrea De Santis on UnsplashContinue reading on Medium »
  • OpenClaw setup experiences and first skill developed — In my previous post, I wrote about building a text-based RPG with Codex.Continue reading on Medium »
  • I Built a Merciless AI Dominatrix Who Never Sleeps — How I Used OpenClaw and Grok to Create Mistress NataliaContinue reading on Medium »
  • How OpenClaw is Going Mainstream — Why is OpenClaw suddenly making headlines in the AI world?Continue reading on Medium »
  • Your OpenClaw Agents Are Sharing Memories. Tenure Fixes That Without Configuration. — How the Tenure plugin for OpenClaw solves the agent isolation problem that every other memory plugin is scrambling to patch.Continue reading on Data Science Collective »
  • different between OpenClaw vs LangChain vs AutoGPT — 1. LangChain = The engineering toolkitContinue reading on Medium »
  • Apertus — As a fully open language model, Apertus allows researchers, professionals and enthusiasts to build upon the model and adapt it to their specific needs, as well as to inspect any part of the training...
  • Manus — AI agent bridges thoughts and actions, excelling in work and life tasks like personalized travel, stock analysis, insurance comparisons, and supplier sourcing, autonomously completing tasks and...
  • Together Chat — Together Chat is a next-generation consumer app designed to let you interact seamlessly with today's most popular open-source models, including free access to DeepSeek R1, securely hosted in the...
  • Helpful Skills or Hidden Payloads? Bitdefender Labs Dives Deep into the OpenClaw Malicious Skill Trap — With hundreds of malicious OpenClaw skills blending in among legitimate ones, manually reviewing every script or command isn’t realistic — especially when skills are designed to look helpful and...
  • OpenClaw Foundation jetzt unter https://t.co/sQ3jTJP4kH online. Drei Prinzipien: Offen, Neutral, Persönlich. Was fehlt:
  • @tinyfool 用hermes,感觉养起来比openclaw方便点。codex mobile国内环境连起来有点麻烦,不然用这个就够了
  • @LIWEI_TWCapital And this is not even all our gen generation or to be uh frontier of the AI. Take the openclaw creator,
  • @Angaisb_ I use GPT-5.5. OpenClaw config used to break with almost every update and I had to fix it. Agent often got wed
  • This is huge acceleration. Grok + Hermes-Agent + OpenClaw = a full uncensored, local, powerful AI stack that actually w — This is huge acceleration. Grok + Hermes-Agent + OpenClaw = a full uncensored, local, powerful AI stack that actually works for you. No more woke filters. No more Big Tech censorship. Maximum...
  • @premium @openclaw best news ive had all year
  • @emeeliojohann @openclaw if only i could just have a plug into the back of my neck that would directly read my mind... h
  • @haukejung @openclaw I actually made this today too. https://t.co/r7Jb6NQ7pS
  • @Airdropfinds @openclaw Menarik kita bantai dunia agent
  • OpenClaw が X に接続されました。これであなた自身のハードウェアに爪が手に入ります。🦞 Grok、SuperGrok、または X Premium のサブスクリプションを OpenClaw エージェントに持ち込んでください。 こ
  • If you know what persistant memory is and the fact that Hermes Agent is #1 ahead of OpenClaw…. solana:9YrQVKG9q3tux44Zh
  • 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is cl — 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is closed. It can: • Manage your inbox • Plan trips + schedules • Monitor...
  • @zontyp_tweets @xai @openclaw @grok What’s your use case
  • The Elite Longterm Memory skill stitches together six memory approaches into one architecture for your OpenClaw. Hot se
  • @Bitterbot_AI @openclaw @OpenRouter What does it do
  • not every meme gets this close $OPENCLAW ‌‌‌​​‌‌‌ did. . now finish it https://t.co/wcLLhxwk1Q — not every meme gets this close $OPENCLAW ‌‌‌​​‌‌‌ did. . now finish it https://t.co/wcLLhxwk1Q
  • 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is cl — 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is closed. It can: • Manage your inbox • Plan trips + schedules • Monitor...
  • @JUNKI555 一時期、相当サーバー資源が逼迫してた、OpenClaw問題が発生する前後辺りで 特に$20プランでみたいなのは、Xの投稿やReddit見た記憶があります。 自分も従量課金でチビチビ使ってますが、言うほどかなぁ?と思っ
  • @Angaisb_ if u want to try a modern openclaw use https://t.co/IH6lpSYFow also opensource
  • $OPENCLAW is right there for the Moonshot listing 🤏 Momentum is real — whether you're a holder or just enjoy the vibe,

Trending on X

  • OpenClaw Foundation jetzt unter https://t.co/sQ3jTJP4kH online. Drei Prinzipien: Offen, Neutral, Persönlich. Was fehlt:
  • @tinyfool 用hermes,感觉养起来比openclaw方便点。codex mobile国内环境连起来有点麻烦,不然用这个就够了
  • @LIWEI_TWCapital And this is not even all our gen generation or to be uh frontier of the AI. Take the openclaw creator,
  • @Angaisb_ I use GPT-5.5. OpenClaw config used to break with almost every update and I had to fix it. Agent often got wed
  • This is huge acceleration. Grok + Hermes-Agent + OpenClaw = a full uncensored, local, powerful AI stack that actually w — This is huge acceleration. Grok + Hermes-Agent + OpenClaw = a full uncensored, local, powerful AI stack that actually works for you. No more woke filters. No more Big Tech censorship. Maximum...
  • @premium @openclaw best news ive had all year
  • @emeeliojohann @openclaw if only i could just have a plug into the back of my neck that would directly read my mind... h
  • @haukejung @openclaw I actually made this today too. https://t.co/r7Jb6NQ7pS
  • @Airdropfinds @openclaw Menarik kita bantai dunia agent
  • OpenClaw が X に接続されました。これであなた自身のハードウェアに爪が手に入ります。🦞 Grok、SuperGrok、または X Premium のサブスクリプションを OpenClaw エージェントに持ち込んでください。 こ
  • If you know what persistant memory is and the fact that Hermes Agent is #1 ahead of OpenClaw…. solana:9YrQVKG9q3tux44Zh
  • 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is cl — 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is closed. It can: • Manage your inbox • Plan trips + schedules • Monitor...
  • @zontyp_tweets @xai @openclaw @grok What’s your use case
  • The Elite Longterm Memory skill stitches together six memory approaches into one architecture for your OpenClaw. Hot se
  • @Bitterbot_AI @openclaw @OpenRouter What does it do
  • not every meme gets this close $OPENCLAW ‌‌‌​​‌‌‌ did. . now finish it https://t.co/wcLLhxwk1Q — not every meme gets this close $OPENCLAW ‌‌‌​​‌‌‌ did. . now finish it https://t.co/wcLLhxwk1Q
  • 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is cl — 🤯 Google OpenClaw version!! Google just dropped Gemini Spark. An always-on AI agent that works while your laptop is closed. It can: • Manage your inbox • Plan trips + schedules • Monitor...
  • @JUNKI555 一時期、相当サーバー資源が逼迫してた、OpenClaw問題が発生する前後辺りで 特に$20プランでみたいなのは、Xの投稿やReddit見た記憶があります。 自分も従量課金でチビチビ使ってますが、言うほどかなぁ?と思っ
  • @Angaisb_ if u want to try a modern openclaw use https://t.co/IH6lpSYFow also opensource
  • $OPENCLAW is right there for the Moonshot listing 🤏 Momentum is real — whether you're a holder or just enjoy the vibe,

Releases

  • openclaw 2026.5.19-beta.2 — Changes - Agents: clarify that fixes should default to clean bounded refactors, lean internals, and explicit plugin SDK/API deprecation paths. - Dependencies: update @openclaw/proxyline to 0.3.3. -...
  • openclaw 2026.5.19-alpha.1 — Changes - Agents: clarify that fixes should default to clean bounded refactors, lean internals, and explicit plugin SDK/API deprecation paths. - Dependencies: update @openclaw/proxyline to 0.3.3. -...
  • OpenClaw repo stats for 2026-05-20 — 373375 stars, 77504 forks, 2297 contributors
  • openclaw-cli 2026.5.18 on Homebrew — Your own personal AI assistant

Community

  • [Bug]: Subagent sandbox does not propagate sandbox.docker.env and may reuse stale workspace/bootstrap state after recreate — Bug type Behavior bug (incorrect output/state without crash) Beta release blocker No Summary Per-agent sandbox configuration appears correct in ~/.openclaw/openclaw.json, but fresh sandboxed subagent...
  • CLI: complete positional args in zsh completion — Summary - Problem: \openclaw wiki ingest \, \openclaw wiki scan \, and every other leaf command with a positional argument emits a zsh completion function that lists options only. Typing \openclaw...
  • fix(compaction): restore session invariants across compaction and reset — Summary Restore session invariants across compaction and reset instead of patching each symptom in isolation. This coordinated fix now covers four connected paths: - subscribe-time before_compaction...
  • feat: enable cache-ttl context pruning for openai-completions providers — Summary Enable cache-ttl based context pruning for all providers using the \openai-completions\ API type. Currently, \isCacheTtlEligibleProvider\ only returns \ rue\ for Anthropic-family and...
  • agents: replay encrypted_content for volcengine seed thinking summary — Summary - Support encrypted_content replay for openai-completions assistant/tool continuations. - Send previous_response_id for HTTP openai-responses / openai-codex-responses tool-only continuations....
  • fix(delivery-context): drop fallback threadId on `to` mismatch and orphan-threadId merges — Summary Adds two defensive guards to mergeDeliveryContext so a stale threadId from fallback can't leak into the merged result across same-channel cross-conversation shapes the existing...
  • fix(memory): improve error message when node:sqlite is unavailable — Summary - detect node:sqlite runtime failures in buildMemorySearchUnavailableResult - return a targeted SQLite-unavailable warning/action instead of the generic embedding/provider message - add a...
  • Feature Request: Add completion/success notification sound for agent turns — Feature Request: Add completion notification sound Problem / User Need When an agent completes a turn (finishes generating a response), users have no audible indication that the response is ready....
  • refactor: replace custom age formatting with compact duration formatt… — …ing in session lock inspection Summary Describe the problem and fix in 2–5 bullets: If this PR fixes a plugin beta-release blocker, title it fix(): beta blocker - and link the matching Beta blocker:...
  • [Feature]: Outbound Telegram send queue with per-chat rate limiting and retry_after-aware backoff — title: "[Feature]: Outbound Telegram send queue with per-chat rate limiting and retry_after-aware backoff" labels: ["enhancement"] Summary Add an outbound message queue for the Telegram channel that...
  • fix(config): accept partial cliBackends overrides by making command optional — Summary - Make agents.defaults.cliBackends..command optional at both the zod schema level (CliBackendSchema) and the TS-type level (CliBackendConfig). - Introduce ResolvedCliBackendConfig with...
  • docs: add OpenViking context engine guide — Summary - Add docs/concepts/context-engine-openviking.md covering OpenViking as a remote context-engine plugin, including install, setup, verification, configuration, lifecycle behavior, tools, and...
  • fix(agents): propagate provider errorMessage in transport stream throws — Summary - Problem: When finalizeTransportStream / the OpenAI Responses transport detects output.stopReason === "error" with a concrete output.errorMessage (e.g. Provider finish_reason:...
  • fix(cli): gate exported subcli descriptors — Summary - Gate the exported SUB_CLI_DESCRIPTORS list through the same private-QA visibility filter used by the sub-CLI helper functions. - Extract the repeated private-QA filter into one helper...
  • test(cli): cover parsePort edge cases — Fixes #83899.\n\nSummary:\n- extend parsePort coverage for numeric strings, whitespace, invalid suffixes, fractional values, and upper-bound rejection\n- keep existing #83900 boundary coverage...
  • feat(memory): switch default local embedding model to bge-m3 Q8_0 🤖 AI-assisted — What Replaces the default local embedding model for memory search from embeddinggemma-300M-qat (768 dims) to BAAI/bge-m3 Q8\_0 via ggml-org/bge-m3-Q8_0-GGUF (1024 dims). Why With the current...
  • feat(googlechat): add sessionThread option to bind OpenClaw sessions to Google Chat threads — AI-assisted: yes (Claude Opus 4.7). Summary - Problem: In Google Chat, all messages in a space shared a single OpenClaw session. Starting a new thread to change topic still inherited memory from...
  • fix: Remove comments from tsconfig.json to resolve JSON parsing error — Problem The qa/convex-credential-broker/convex/tsconfig.json file contains / / style comments, which cause JSON parsing errors in strict JSON parsers: Solution - Removed all comments from the...
  • [Bug]: CLI commands hang at WebSocket gateway handshake — CLI Commands Hang at WebSocket Gateway Handshake Bug Description Every CLI subcommand that requires a live gateway connection hangs indefinitely. The CLI successfully connects to the gateway...
  • [Bug]: CLI Backends quick-start command fails on 2026.4.15 — `openclaw agent` has no `--model` flag — Bug type Behavior bug (incorrect output/state without crash) Beta release blocker No Summary Where https://docs.openclaw.ai/gateway/cli-backends Section: Beginner-friendly quick start The issue The...
  • fix(canvas-host): dedupe signal-polyfill in a2ui bundle — Summary - Problem: The a2ui bundle ships two independent copies of the signal-polyfill module — one renamed with a \$1 suffix (used by signalstore/watcher/effect) and a fresh unsuffixed copy (used by...
  • ui(theme): soften dashboard status and accent palette — Summary - soften the main accent color - use gentler amber and red tones for warnings and danger states - remove the yellow hover underline on overview attention links Why This is a visual polish...
  • ui(overview): clarify usage cost wording and summary cards — Summary - rename ambiguous dashboard Cost labels to Usage Cost - thread usage cost summary data into overview cards - add 7 day and 30 day usage cost hints to the overview card Why This makes the...
  • HTTP /v1/chat/completions: 10-15s TTFB due to full agent context assembly — needs lightContext/voice mode — Problem The HTTP /v1/chat/completions endpoint takes 10-15 seconds TTFB for a simple "say hi" prompt, making it unusable for real-time voice agents (LiveKit, Twilio, etc.). Direct OpenAI API calls...
  • [Bug]: ACP oneshot sessions leave orphaned processes — session reset does not clean up child ACP session keys — Bug type Behavior bug (incorrect output/state without crash) Summary When sessions_spawn creates ACP sessions with mode: "run", the spawned claude-agent-acp + claude processes remain alive...
  • fix(daemon): probe system bus and cgroup-aware dedup for gateway status — Problem: false-positive "double-supervisor" report On headless Linux hosts where OpenClaw is installed as system-level systemd units (unit files under /etc/systemd/system/), openclaw gateway status...
  • fix(agent): abort accepted gateway runs on signal — Problem openclaw agent could keep waiting after an external SIGTERM or SIGINT while a Gateway-backed agent run had already been accepted server-side. For cron, systemd, and other supervisors, that...
  • Dreaming Advanced page maps 'From Daily Log' to groundedCount instead of dailyCount — Summary The Dreaming Advanced page appears to label and summarize grounded replay entries as "From Daily Log", which does not match the underlying short-term recall store semantics. In my current...
  • Feature: Voice input with hold-for-continuous (short click = auto-send, hold 3s = continuous mode) — Feature Request: Smart Voice Input Button with Hold-for-Continuous Current Behavior The Control UI has a single microphone button. After speaking, the recognized text appears in the input field, but...
  • OpenClaw sponsors (119 total) — 119 sponsors supporting OpenClaw
  • fix: render CJK text in OG images (#2342)
  • feat: restore skill rescan moderation command (#2341)
  • fix: increase mobile detail tab touch target
  • fix: show VT undetected fallback as pass (#2338)
  • docs: reconcile local dev worktree workflows (#2328)
  • fix: increase clawscan worker throughput (#2327)
  • feat: add self-serve publisher creation (#2324)
  • feat: refresh dynamic og images (#2180)
  • Update install instructions

News

  • mradermacher/Qwen3.5-9b-Opus-Openclaw-Distilled-i1-GGUF — text-generation
  • peterjohannmedina/Medina-Qwen3.5-27B-OpenClaw
  • OpenClaw on DigitalOcean — Deploy your own personal AI assistant with OpenClaw on a DigitalOcean Droplet® server, a powerful open-source platform that runs entirely on your infrastructure. OpenClaw connects to the messaging...
  • OpenClaw – Moltbot Renamed Again
  • Anthropic says OpenClaw-style Claude CLI usage is allowed again
  • StepFun 3.5 Flash is #1 cost-effective model for OpenClaw tasks (300 battles)
  • I read the OpenClaw thread everyone shared — these 5 fixes cut agent costs to one-third and stopped the loops — A practical DEV.to rewrite of a popular OpenClaw discussion: 5 concrete fixes for long-running agents that cut spend to one-third and stop loops. Cove
  • Synology NAS에 OpenClaw 설치하기 — 들어가며 이번 글에서는 Synology NAS에 OpenClaw를 Docker Compose 기반으로 신규 설치하는 과정을 정리한다. Synology DSM...
  • Your Vibe-Coded Side Hustle Has No Customers — And It's Not Because of the Code — Business Insider ran a piece last month: "Good Vibes Won't Help Your Vibe-Coded Side Hustle Win." The...
  • Prime vs (hermes+ openclaw) — This is a submission for the Hermes Agent Challenge What I Built Prime is an open-source,...
  • I Gave an AI Agent a Telegram Bot and It Started Editing Videos — I wanted to test something simple: Could an autonomous AI agent receive a video from Telegram,...
  • OpenClaw outbound agents need deliverability checks before sending — Some agents can even schedule or send campaigns automatically. But most outbound agents still do not...
  • AI Agents Just Had Their ChatGPT Moment — And Most Developers Missed It — Last year, AI agents could handle about 20% of real-world tasks reliably. Today, that number crossed...
  • AI Agent Model: Infra, Cost, and Memory Realities with OpenClaw + Bedrock — We recently tested the increasingly popular and rapidly growing OpenClaw for Vinu Digital. Our...
  • Agentic LLM Inference Parameters Reference for Qwen and Gemma — This page is a practical reference for agentic LLM inference tuning (temperature, top_p, top_k,...
  • I read the 107-comment OpenClaw garlic thread and yeah, the real bug wasn’t garlic — A viral OpenClaw grocery fail wasn’t really about garlic. It was a textbook example of the real problem with autonomous agents: semantic mismatches in
  • $0 Personal Agentic AI Assistant - Setting Up Free Cloud Server - Part 2 — Introduction This is Part 2 of the Zero Dollar AI Assistant series. Part 1- Running a...
  • So Many OpenClaw Wrappers, So Little Time — I Built a Directory for That — If you've been following the OpenClaw ecosystem, you already know the problem: there are a lot of...
  • Claude Cowork vs OpenClaw: Which AI Agent Wins? Is it even a Fair Debate? — The real difference isn’t capability. It’s how much implementation risk each tool puts on the userContinue reading on AI Snapshots »
  • Local LLM Setup with Hermes Agent: Ollama + Hermes Tutorial — Run a fully self-hosted, privacy-first AI agent on your own hardware. No API keys. No cloud costs. No third-party tracking. Complete…Continue reading on Medium »
  • Why you (and everyone else) are looking at AI wrong — Photo by Andrea De Santis on UnsplashContinue reading on Medium »
  • OpenClaw setup experiences and first skill developed — In my previous post, I wrote about building a text-based RPG with Codex.Continue reading on Medium »
  • I Built a Merciless AI Dominatrix Who Never Sleeps — How I Used OpenClaw and Grok to Create Mistress NataliaContinue reading on Medium »
  • How OpenClaw is Going Mainstream — Why is OpenClaw suddenly making headlines in the AI world?Continue reading on Medium »
  • Your OpenClaw Agents Are Sharing Memories. Tenure Fixes That Without Configuration. — How the Tenure plugin for OpenClaw solves the agent isolation problem that every other memory plugin is scrambling to patch.Continue reading on Data Science Collective »
  • different between OpenClaw vs LangChain vs AutoGPT — 1. LangChain = The engineering toolkitContinue reading on Medium »
  • Apertus — As a fully open language model, Apertus allows researchers, professionals and enthusiasts to build upon the model and adapt it to their specific needs, as well as to inspect any part of the training...
  • Manus — AI agent bridges thoughts and actions, excelling in work and life tasks like personalized travel, stock analysis, insurance comparisons, and supplier sourcing, autonomously completing tasks and...
  • Together Chat — Together Chat is a next-generation consumer app designed to let you interact seamlessly with today's most popular open-source models, including free access to DeepSeek R1, securely hosted in the...

Security

  • Helpful Skills or Hidden Payloads? Bitdefender Labs Dives Deep into the OpenClaw Malicious Skill Trap — With hundreds of malicious OpenClaw skills blending in among legitimate ones, manually reviewing every script or command isn’t realistic — especially when skills are designed to look helpful and...

OpenClaw Newsletter — Daily updates from the OpenClaw ecosystem

Read online · Archive

Don't miss what's next. Subscribe to Openclaw Newsletter:
Powered by Buttondown, the easiest way to start and grow your newsletter.