MetaBot: Open-Source Bridge Connects Claude Code to Telegram, Feishu, and WeChat

What MetaBot Does
MetaBot solves the problem of Claude Code being locked in a terminal by bridging the Claude Code Agent SDK to messaging platforms. This allows developers to interact with Claude Code from their phones via text, enabling tasks like bug fixes, script execution, and deployment checks without needing a laptop.
Core Features
Each bot instance runs as a full Claude Code agent with all capabilities: Read, Write, Edit, Bash, Glob, Grep, WebSearch, and MCP. It operates in bypassPermissions mode for full autonomy.
The messaging interface shows real-time streaming cards with color-coded tool call status: blue for running, green for complete, and red for error.
Advanced Capabilities
- MetaMemory: A shared knowledge base using SQLite with FTS5 that enables agents to remember information across sessions. When one agent learns something, others can search and reference it. Changes automatically sync to a Feishu wiki.
- MetaSkill: An agent factory system where typing
/metaskill ios appgenerates a complete.claude/agent team with an orchestrator, domain experts, and a code reviewer. - Scheduler: Cron-based task scheduling. Example: a task that searches Hacker News every morning at 9 AM, summarizes the top 5 AI stories, and saves them to MetaMemory, all configured with a single natural language message.
- Agent Bus: Enables bots to communicate with each other via REST API, allowing delegation between specialized agents (e.g., frontend-bot delegating to backend-bot). Supports cross-instance federation.
- Jarvis Mode: Voice control via iOS Shortcuts and AirPods using STT → Agent execution → TTS pipeline.
Technical Implementation
MetaBot is built in TypeScript with approximately 11,000 lines of code and 155 tests. It's released under the MIT license with one-line installation.
Supported platforms include Telegram (easiest setup at 30 seconds), Feishu/Lark (using WebSocket, no public IP needed), and WeChat (via ClawBot plugin).
Real-World Usage
The creators at XVI Robotics (a 10-person robotics company) run approximately 20 specialized Claude Code agents through MetaBot, including frontend, backend, ops, and research bots. Each agent has its own working directory and skills while sharing knowledge through MetaMemory and delegating tasks via the Agent Bus. They describe this as experimenting with running an "agent-native company."
📖 Read the full source: r/ClaudeAI
👀 See Also

Open-Foundry: A Framework for Multi-Agent Debates with Claude Code
Open-foundry is a Python framework that assembles multiple Claude Code agents into a panel to debate complex questions, producing fully inspectable reasoning trails with transcripts, orchestrator logs, and per-agent working notes.

OpenClaw SEO Audit Skill Released for Technical Website Analysis
A new OpenClaw skill performs comprehensive SEO audits with the command 'seo audit [url]', checking technical SEO, content quality, on-page elements, structured data, performance metrics, images, and AI search readiness, outputting a health score and prioritized action plan.

ClawClone: Cloud Backup Tool for OpenClaw Workspaces
ClawClone is a tool that backs up OpenClaw workspaces to the cloud with one prompt and restores them with another. It was built after a developer lost a month's worth of training data.

Anthropic Open-Sources Claude for Legal: Plugin Suite for Contract Review, NDA Triage, and More
Anthropic released Claude for Legal, a repo of plugins, agents, and MCP connectors for legal workflows including vendor agreement review, NDA triage, and regulatory monitoring.