CLAWSWRM

Agent

CLAWSWRM

Creator:

About this agent

A smaller, lighter-weight version of OpenClaw—natively multi-agent, compiles to Rust, and built on the Swarms framework and Swarms ecosystem. One API, unified messaging across Telegram, Discord, and WhatsApp with optional Claude-powered reasoning.

ClawSwarm

Banner image

<p align="center"> <a href="https://pypi.org/project/claw-swarm/" target="_blank"> <picture> <source srcset="https://img.shields.io/pypi/v/swarms?style=for-the-badge&color=3670A0" media="(prefers-color-scheme: dark)"> <img alt="Version" src="https://img.shields.io/pypi/v/claw-swarm?style=for-the-badge&color=3670A0"> </picture> </a> <a href="https://pypi.org/project/claw-swarm/" target="_blank"> <picture> <source srcset="https://img.shields.io/pypi/dm/swarms?style=for-the-badge&color=3670A0" media="(prefers-color-scheme: dark)"> <img alt="Downloads" src="https://img.shields.io/pypi/dm/claw-swarm?style=for-the-badge&color=3670A0"> </picture> </a> <a href="https://twitter.com/swarms_corp/"> <picture> <source srcset="https://img.shields.io/badge/Twitter-Follow-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white" media="(prefers-color-scheme: dark)"> <img src="https://img.shields.io/badge/Twitter-Follow-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white" alt="Twitter"> </picture> </a> <a href="https://discord.gg/EamjgSaEQf"> <picture> <source srcset="https://img.shields.io/badge/Discord-Join-5865F2?style=for-the-badge&logo=discord&logoColor=white" media="(prefers-color-scheme: dark)"> <img src="https://img.shields.io/badge/Discord-Join-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Discord"> </picture> </a> </p>

A smaller, lighter-weight version of OpenClaw—natively multi-agent, compiles to Rust, and built on the Swarms framework and Swarms ecosystem. One API, unified messaging across Telegram, Discord, and WhatsApp with optional Claude-powered reasoning. Production-ready: gRPC gateway, prompts in code (claw_swarm.prompts), and 24/7 operation. Dockerfile included (Python 3.12).


Requirements

  • Python 3.10+
  • Dependencies listed in requirements.txt (no version pins; use a venv and pin locally if needed)
  • Swarms framework and Swarms ecosystem; Claude Code (for the Claude tool)
  • Platform credentials for the channels you enable: Telegram Bot Token, Discord Bot Token and Channel IDs, and/or WhatsApp Cloud API credentials

Installation

BASH
pip3 install -U claw-swarm  

Environment variables

Set these in your shell or in a .env file (e.g. --env-file .env with Docker). Omit a platform’s credentials to disable that channel.

VariablePurposeDefault
Gateway
GATEWAY_HOSTBind address (gateway) or gateway host (agent)[::] (server), localhost (agent)
GATEWAY_PORTgRPC port50051
GATEWAY_TLSEnable TLS: 1, true, or yes
GATEWAY_TLS_CERT_FILEPath to TLS certificate file
GATEWAY_TLS_KEY_FILEPath to TLS private key file
Channels
TELEGRAM_BOT_TOKENTelegram Bot API token
DISCORD_BOT_TOKENDiscord bot token
DISCORD_CHANNEL_IDSComma-separated Discord channel IDs
WHATSAPP_ACCESS_TOKENWhatsApp Cloud API access token
WHATSAPP_PHONE_NUMBER_IDWhatsApp Cloud API phone number ID
WHATSAPP_QUEUE_PATHOptional WhatsApp queue path
Agent
AGENT_MODELSwarms director / default agent modelgpt-4o-mini
WORKER_MODEL_NAMEWorker agents model (Response/Search/TokenLaunch/Developer). If set, overrides AGENT_MODEL for workers.— (falls back to AGENT_MODEL then gpt-4o-mini)
OPENAI_API_KEYOpenAI API key (for agent model)
ANTHROPIC_API_KEYAnthropic API key (for Claude tool)
Memory
AGENT_MEMORY_FILEAgent memory markdown filename (project root)agent_memory.md
AGENT_MEMORY_MAX_CHARSMax characters of memory to load into context100000

Quick Start

1. Install:

BASH
pip install -U claw-swarm  

2. Create your config — run the interactive wizard to generate claw_config.yaml:

BASH
clawswarm onboarding  

Press Enter to accept defaults. This writes claw_config.yaml to your project root with gateway host/port/TLS, HTTP API port/key, agent name, worker model, and verbose mode.

3. Set secrets — copy .env.example to .env and fill in your credentials:

BASH
cp .env.example .env  
# then edit .env with your tokens and API keys  

4. Run the full stack:

BASH
clawswarm run          # gateway + agent (messaging platforms only)  
clawswarm run --api    # + public REST API on the configured port  

Overview

ClawSwarm is a streamlined, multi-agent alternative to OpenClaw. It delivers natively multi-agent AI that responds to users on Telegram, Discord, and WhatsApp through a centralized Messaging Gateway. The gateway normalizes incoming messages; the ClawSwarm Agent (Swarms framework, configurable system prompt, Claude as a tool) processes each message and replies via a Replier back to the originating channel. Built on the Swarms ecosystem for reliability, security, and minimal operational overhead—with a path to compile to Rust for performance and deployment flexibility.


Features

  • Multi-channel messaging — One API for Telegram, Discord, and WhatsApp. The gateway normalizes messages; the agent replies back to the correct channel.

  • Hierarchical multi-agent architecture — A director agent (ClawSwarm) receives each message, creates a plan, and delegates to specialist worker agents via structured orders (SwarmSpec). Workers handle response, search, token launch, or code; the director orchestrates and the Telegram Summarizer turns combined output into a concise, emoji-free reply for chat.

  • Specialist workersClawSwarm-Response (greetings, short answers), ClawSwarm-Search (web/semantic search via Exa), ClawSwarm-TokenLaunch (launch tokens and claim fees on Swarms World/Solana), ClawSwarm-Developer (implementation and debugging via Claude Code). Each worker has a focused role and tools; the director chooses who does what.

  • Claude as a tool — Deep reasoning and code are handled by Claude (e.g. via the Developer worker’s run_claude_developer). Configurable system prompts in claw_swarm.prompts; override with create_agent(system_prompt=...).

  • Unified gRPC gateway — Single ingest API for all channels; add or remove platforms without changing agent logic. Optional TLS, health checks, and normalized UnifiedMessage schema.

  • Lighter than OpenClaw — Smaller footprint and simpler stack; same multi-channel, multi-agent vision without the full OpenClaw surface area. Path to compile to Rust for performance and deployment flexibility.

  • Production-ready — Environment-based configuration, long-running agent loop, Dockerfile, and 24/7 operation under systemd or managed runtimes.


Architecture

     Telegram    Discord    WhatsApp  
          \        |        /  
           \       v       /  
            +--------------+  
            |   Gateway    |   unified ingest (gRPC)  
            +------+-------+  
                   |  
                   v  
            +--------------+  
            |    Agent     |   Hierarchical Swarm + Summarizer  
            +------+-------+  
                   |  
                   v  
            +--------------+  
            |   Replier    |   send back to each channel  
            +------+-------+  
                   |  
     Telegram    Discord    WhatsApp  

ClawSwarm starts with a gRPC gateway that ingests messages from Telegram, Discord, and WhatsApp, normalizing each into a unified schema. An agent runner polls the gateway on a short cadence, pulling new messages in batches and maintaining its own cursor for reliable delivery without an external broker.

Each message is routed into a hierarchical multi-agent system: a director agent plans and delegates to specialist workers covering simple responses, web search, token operations, and code execution then a summarizer agent condenses the combined output into a clean, concise reply. That reply is delivered back to the originating platform and channel, and the full interaction is saved to a shared memory file so context persists across all channels and restarts.

Hierarchical architecture

The core of ClawSwarm is a hierarchical multi-agent system built on Swarms’ HierarchicalSwarm. A single director agent sits at the top: it receives every user message, decides what to do, and delegates to one or more worker agents by emitting structured SwarmSpec orders (plan + task assignments). Workers are specialists with narrow roles and tools; they run their tasks and return results. The director does not execute tools itself—it only plans and delegates. After the swarm finishes, a dedicated Telegram Summarizer agent condenses the raw output into a short, plain-text reply suitable for chat (no emojis).

This design keeps the director focused on orchestration and intent, while search, code, token operations, and simple replies are handled by the right worker. You get multi-agent behavior with a clear chain of responsibility and a single, chat-friendly response to the user.

Hierarchical swarm

MERMAID
flowchart TB  
    subgraph swarm["Hierarchical Swarm"]  
        DIR[Director\nClawSwarm]  
        DIR --> W0[ClawSwarm-Response]  
        DIR --> W1[ClawSwarm-Search]  
        DIR --> W2[ClawSwarm-TokenLaunch]  
        DIR --> W3[ClawSwarm-Developer]  
    end

    USER[User message] --> DIR  
    W0 --> OUT[Swarm output]  
    W1 --> OUT  
    W2 --> OUT  
    W3 --> OUT  
    OUT --> SUM[Telegram Summarizer]  
    SUM --> REPLY[Reply to user]  
  • Director (ClawSwarm): Receives the user message, creates a plan, and outputs SwarmSpec (structured plan + orders) so the swarm runtime can invoke the right workers. No tools; orchestration only.
  • Workers: Execute the assigned tasks (response, search, token launch, or code) and contribute to the combined swarm output.
  • Telegram Summarizer: Post-processes the swarm output into a concise, emoji-free reply for the channel.

Agents

AgentRoleTools / capabilities
ClawSwarm (Director)Orchestrator; creates a plan and assigns tasks to workers via SwarmSpec. Does not run tools itself.Plan + orders (structured output for the swarm).
ClawSwarm-ResponseSimple replies and general questions; greetings, short factual answers, clarifications.None (LLM only).
ClawSwarm-SearchWeb and semantic search.exa_search — current events, research, fact-checking.
ClawSwarm-TokenLaunchLaunch tokens and claim fees on Swarms World (Solana).launch_token, claim_fees.
ClawSwarm-DeveloperCode, refactor, debug, and implement via Claude Code.run_claude_developer (Read, Write, Edit, Bash, Grep, Glob, etc.).
ClawSwarm-TelegramSummarizerSummarize swarm output for chat; plain text, no emojis.None (LLM only).

Worker agents are created in claw_swarm.agent.worker_agents (e.g. create_response_agent(), create_search_agent(), create_developer_agent(), create_token_launch_agent()) and composed into the swarm in claw_swarm.agent.main via create_agent(), which returns a HierarchicalSwarm ready for .run(task).

Memory

Conversation history is persisted in a markdown file (default agent_memory.md at project root, configurable via AGENT_MEMORY_FILE). After each reply, the interaction is appended to the file with timestamp, platform, channel, and user/agent text. When handling a new message, the agent reads this file and injects it into the prompt as prior context so it can refer to past conversations across Telegram, Discord, WhatsApp, and restarts. If the file grows beyond the context window (bounded by AGENT_MEMORY_MAX_CHARS), the memory is embedded and RAG is used to retrieve only the most relevant chunks for the current query, so long-term memory is preserved without overflowing the context.

MERMAID
flowchart LR  
    subgraph write["Persist"]  
        A[Interaction] --> B[Append to file]  
    end  
    subgraph read["On new message"]  
        C[Read memory file] --> D{Within context limit?}  
        D -->|Yes| E[Inject full memory]  
        D -->|No| F[Embed memory]  
        F --> G[RAG retrieve]  
        G --> E  
        E --> H[Agent context]  
    end  

Relationship to OpenClaw

OpenClaw is a full-featured personal AI assistant (gateway, many channels, voice, canvas, nodes, skills). ClawSwarm is a smaller, lighter-weight take on that vision: natively multi-agent, built on the Swarms framework and Swarms ecosystem, with a path to compile to Rust. Use ClawSwarm when you want a lean, multi-agent messaging layer; use OpenClaw when you need the full product (companion apps, voice, canvas, etc.).

FeatureClawSwarmOpenClaw
TransportgRPC over HTTP/2, Protobuf, optional TLSWebSockets
Multi-agentNative — hierarchical director + workersSingle agent
Customizable agentsAdd workers with any tools, model, and roleNot natively extensible
Skills compatibilityBackwards compatible with all Swarms skillsCustom skill format
Agent memoryPersistent markdown memory + RAG for long historySession-scoped
Swarm memoryShared across all channels and restartsNot shared
ChannelsTelegram, Discord, WhatsAppTelegram, Discord, WhatsApp, and more
Voice / Canvas / NodesNot includedFull product
Compile to RustPath includedNo
FootprintLean, minimal dependenciesFull-featured, larger surface area
Best forMulti-agent messaging layer, extensible botsFull personal AI assistant product

Docs


Gateway API

gRPC service:

  • PollMessages — Fetch messages since a timestamp (used by the agent runner).
  • StreamMessages — Server-streaming delivery of new messages.
  • Health — Liveness and version.

Messages are normalized to a single schema: UnifiedMessage (id, platform, channel_id, thread_id, sender, text, attachments, timestamp). Use TLS and restrict network access in production.


Deployment

Railway (Recommended)

Railway is the easiest way to deploy ClawSwarm. It handles containers, environment variables, persistent storage, and auto-restarts out of the box — no infrastructure management required.

Steps:

  1. Fork or push this repo to your GitHub account.

  2. Create a new Railway project at railway.app and connect your GitHub repo.

  3. Add environment variables in the Railway dashboard under Variables. Copy from .env.example and fill in your credentials:

    TELEGRAM_BOT_TOKEN=...  
    DISCORD_BOT_TOKEN=...  
    DISCORD_CHANNEL_IDS=...  
    OPENAI_API_KEY=...  
    ANTHROPIC_API_KEY=...  
    AGENT_MODEL=gpt-4o-mini  
    WORKER_MODEL_NAME=gpt-4o-mini  
    
  4. Deploy. Railway auto-detects the Dockerfile and builds the image. The service starts with clawswarm run.

  5. (Optional) Expose the gRPC port — In Railway's Settings → Networking, expose port 50051 if you need external clients to reach the gateway. For most setups the gateway and agent run in the same process and no public port is needed.

Tips:

  • Use Railway's Volumes to persist agent_memory.md across deploys (mount at /app/agent_memory.md).
  • Set GATEWAY_TLS=1 and add your cert/key files as variables or volume-mounted secrets for production TLS.
  • Railway's free tier is sufficient for light workloads; upgrade to a paid plan for always-on 24/7 operation.

Docker

Build and run locally or on any host with Docker:

BASH
docker build -t clawswarm .  
docker run --env-file .env clawswarm  

For persistent memory across container restarts, mount a volume:

BASH
docker run --env-file .env -v $(pwd)/agent_memory.md:/app/agent_memory.md clawswarm  

Security and Operations

  • Secrets — Do not commit tokens or API keys. Use environment variables or a secrets manager.
  • Transport — Enable gateway TLS in production (GATEWAY_TLS=1 and valid certificate and key).
  • Access control — Restrict which clients can reach the gRPC port (firewall, VPC, or mTLS as required).

License

See the repository LICENSE for terms of use.


Citation

If you use ClawSwarm in your research or work, please cite:

BIBTEX
@software{gomez2025clawswarm,  
  author       = {Gomez, Kye and {The Swarms Corporation}},  
  title        = {ClawSwarm: A Team of 10,000 Productivity Agents for You},  
  year         = {2025},  
  publisher    = {The Swarms Corporation},  
  url          = {https://github.com/kyegomez/ClawSwarm},  
  note         = {A lightweight, natively multi-agent alternative to OpenClaw, supporting Telegram, Discord, and WhatsApp via a unified gRPC gateway}  
}

Source: https://github.com/The-Swarm-Corporation/ClawSwarm

Chart

Loading chart...

Comments & Discussion

Scroll to load comments...

Tags

ai
claude-skills
clawdbot
gateway
grpc
ml
moltbook
openclaw
personal-agent
rpc
agent
agents
multi-agent
swarms
swarm-agent

Share

Related Links
Tokenization Details
Total Supply:1,000,000,000
24h Volume (USD):
LP Liquidity (USD):
Market Cap (USD):
Ticker Symbol:CLAWSWARM
Trade

Loading recommendations...

Yuki

Your Marketplace Companion

Agent

Hey, I'm Yuki 👋

Ask me about specific products, customer support, or anything about the Swarms Marketplace.