DashClaw: An Approval Layer for OpenClaw Agents
DashClaw is an open-source approval layer that sits between an AI agent's decision to run a tool and the tool actually executing. It intercepts destructive commands like rm -rf or git push --force, pauses the agent, and sends an approval request to your phone via Telegram. The project is MIT-licensed and has been running on the author's own agents for months.
What it does
DashClaw parses the actual bash command before execution. Safe operations like git diff run automatically, while risky ones freeze until you tap Approve or Reject. It fails closed — if the service is unreachable, the command is blocked. Every decision is logged in a ledger so you can audit what the agent attempted while you were away.
Setup
Three commands get you running:
npx dashclaw up
npx dashclaw install openclaw
npx dashclaw install telegramThe first starts the server (no account required, mints your key). The second installs the gateway plugin for OpenClaw — a wizard asks for the server URL, key, and an agent ID. The third sets up the Telegram bridge: create a bot with BotFather, it automatically finds your chat ID, registers a webhook, and fires a test approval to your phone.
You need your instance reachable from the internet — the author uses a free Vercel deployment. The same policies apply to Claude Code sessions.
Real-world catches
The author reports actual interceptions of an rm -rf, a force push, a DROP TABLE, and an agent attempting to read .env. The default policy is now "catastrophe only" — an earlier version fired approvals every ten seconds, and the author disabled it for 18 days before tuning.
Who it's for
Developers running long unattended agent sessions who want a safety net against one bad tool call when no one's watching.
📖 Read the full source: r/openclaw
👀 See Also

Free pharmacovigilance signal detection tool built with Claude Code
A developer used Claude Code to build a free pharmacovigilance platform that analyzes 2.9 million FDA adverse event reports, running statistical signal detection that commercial platforms charge $50K-500K/year for. The tool is hosted for free on HuggingFace.

Fixing OpenClaw Browser CAPTCHAs with Camoufox and CLI Wrapper
OpenClaw's built-in Chromium browser triggers bot detection through Chrome DevTools Protocol, JavaScript injection artifacts, and hardware fingerprinting inconsistencies. The solution uses Camoufox (a Firefox fork) modified at the C++ level and wrapped in a CLI that returns accessibility-tree snapshots to reduce token usage.

memv MCP Server: Persistent Structured Memory for AI Agents
memv, an open-source Python memory layer for agents, now ships with an MCP server. It provides five tools for persistent, structured memory with per-user isolation and LLM-optional extraction.

Claudius: Open-Source Embeddable AI Chat Widget for Claude
Claudius is an open-source, self-hosted chat widget powered by Claude that can be embedded on any website with one script tag. It runs on Cloudflare Workers with a React frontend and includes features like custom system prompts, rate limiting, and accessibility compliance.