ClaudeClaw: Free Claude Code Plugin for Persistent AI Agents on Messaging Platforms

ClaudeClaw is a free, open-source Claude Code plugin that runs Claude as a persistent agent on messaging channels like Slack, WhatsApp, and Telegram. It's not a hosted service—you clone and run it locally, bringing your own Anthropic API key.
Key Details
The project is a fork of NanoClaw rebuilt as a plugin, with sandbox runtime, webhook triggers, memory system, cost tracking, and extension system added in 2 days. It's written in TypeScript (~8K lines) with 355 tests.
Installation and Setup
Installation requires:
- macOS or Linux
- Node.js 20+
- Claude Code (free)
- Your own Anthropic API key
Install with:
git clone https://github.com/sbusso/claudeclaw
cd claudeclaw && claude
# type: /setupFeatures
- 100% free and open source (MIT license)
- Claude Code plugin (not standalone—leverages Claude Code's tools, skills, hooks)
- OS-level sandbox isolation via Anthropic's sandbox-runtime (<10ms cold starts)
- Composable extension system—
/install-extension slackto add Slack - Structured memory (daily logs, topic files, searchable archive)
- Per-group agent config (model, effort, tools, cost limits)
- Self-hosted—runs on your machine, your data stays local
What It Does
ClaudeClaw listens to Slack/WhatsApp/Telegram, routes messages to Claude agents running in OS-level sandboxes, manages memory across conversations, and handles scheduled tasks and webhooks. The developer built it because they needed Claude answering support questions in their Slack 24/7, not just when they had a terminal open. They found existing frameworks like OpenClaw too large to audit and wanted something small enough to read end-to-end.
📖 Read the full source: r/openclaw
👀 See Also

Mímir: A Python Memory System Built on 21 Neuroscience Mechanisms
Mímir is a Python memory system for AI agents that implements 21 cognitive science mechanisms like flashbulb memory and retrieval-induced forgetting. It uses a hybrid BM25 + semantic + date index and shows benchmark improvements including 13% higher tool accuracy on Mem2ActBench versus VividnessMem.

Claude IDE Bridge: MCP Tool for Remote Editor Access
Claude IDE Bridge is an open-source tool that provides Claude AI with remote control access to code editors via MCP (Model Context Protocol). It exposes editor knowledge like live type information and debugger state as callable tools.

Atoo Studio: Open-Source Workspace for Managing Multi-Project Claude Code Workflows
Atoo Studio is an open-source workspace built to address terminal and tab chaos when using Claude Code across multiple projects. It introduces session forking like Git branches and allows continuation across Claude Code, Codex CLI, and Gemini CLI.

Replacing complex retrieval pipelines with simple git commands for AI agents
A developer replaced their 3GB Docker image with sentence-transformers, rank-bm25, and scikit-learn with a single tool that lets AI agents execute read-only shell commands like git log, grep, and git diff directly on their memory repository.