SwarmClaw Dashboard Adds Orchestration Layer to OpenClaw

SwarmClaw is a self-hosted dashboard that adds a full orchestration layer on top of OpenClaw, allowing developers to deploy and manage multiple OpenClaw instances from a single interface.
Key Features
- Per-agent gateway toggling for individual instance control
- Built-in gateway controls with reload mode switching
- Config issue detection and repair capabilities
- Remote history sync between instances
- Live execution approval handling
- Direct support for OpenClaw plugins
- SKILL.md file support with frontmatter
- Connects to 14 other AI providers including Anthropic, OpenAI, Gemini, and Ollama for mixed setups
Getting Started
Install and run with these commands:
npm i -g @swarmclawai/swarmclaw
swarmclaw
The tool is available on GitHub at github.com/swarmclawai/swarmclaw.
This type of orchestration tool is useful for teams running multiple AI coding agent instances who need centralized management and monitoring capabilities.
📖 Read the full source: r/clawdbot
👀 See Also

GitAgent: An Open Standard for Portable AI Agents in Git Repos
GitAgent is an open specification that defines AI agents through three core files in a git repository: agent.yaml for configuration, SOUL.md for personality/instructions, and SKILL.md for capabilities. The CLI allows running any agent repo directly with commands like npx @open-gitagent/gitagent run -r https://github.com/user/agent -a claude.

Caliber: Local CLI tool generates AI coding assistant configs from your repo
Caliber is a local-first CLI tool that scans repositories in languages like TypeScript, Python, Go, and Rust, then generates prompt and configuration files for AI coding assistants including Claude Code, Cursor, and Codex. It runs entirely on your machine with your own keys, has 13k npm installs, and is open source under MIT license.

Developer Builds MCP Server for Claude WhatsApp Integration, Shares Challenges
A developer built an MCP server to give Claude access to real WhatsApp conversations, discovering that conversation context management was trickier than expected and required a database to track conversations.

OpenClaw memory loss fix using Mem0 plugin
OpenClaw agents experience memory loss due to context compaction rewriting files like MEMORY.md. The Mem0 plugin solves this by moving memory outside the context window with auto-recall and auto-capture features.