Clawe: Trello for AI Agents β Built on the OpenClaw Phenomenon
The Rise of OpenClaw
If youβve been following the AI agent space, youβve probably heard of OpenClaw β even if you knew it by its earlier names.
It started as Clawdbot, a personal AI assistant created by Austrian engineer Peter Steinberger in November 2025. Named after Anthropicβs Claude (with a lobster twist), it was designed as βan AI that actually does thingsβ β an autonomous agent that executes tasks via LLMs, using messaging platforms like WhatsApp, Telegram, and Discord as its interface.
Then came the trademark complaints from Anthropic. Clawdbot became Moltbot on January 27, 2026. Three days later, Steinberger renamed it again to OpenClaw because βMoltbot never quite rolled off the tongue.β
What happened next was explosive.
Entrepreneur Matt Schlicht launched Moltbook β a social network designed exclusively for AI agents. The viral combination of Moltbookβs novelty and OpenClawβs open-source licensing created a perfect storm. The project amassed over 200,000 GitHub stars and 35,000 forks. Companies in Silicon Valley and China adopted it; developers in China adapted it for DeepSeek and domestic super-apps.
Wired, TechCrunch, CNBC, Axios, Platformer β everyone covered it. Casey Newton called it βincredibleβ and βterrifyingβ in the same breath. On February 14, 2026, Steinberger announced he was joining OpenAI, and the project would move to an open-source foundation.
OpenClaw became the de facto standard for personal AI agents.
The Multi-Agent Problem
But hereβs the thing about single-agent systems: they hit walls.
One agent trying to do everything β research, writing, design, SEO, coding β becomes context-overloaded. It canβt parallelize work. It lacks specialization. The promise of AI agents was supposed to be teams, not just assistants.
The question became: How do you coordinate multiple autonomous agents working together?
Enter Clawe
Clawe is the answer. Built on top of OpenClaw, itβs essentially Trello for AI agents β a multi-agent coordination system that lets you deploy squads of agents with distinct roles, schedules, and personalities.
Instead of one overloaded assistant, you spin up specialized agents:
- π¦ Clawe β Squad Lead, coordinates the team
- βοΈ Inky β Content Editor, handles writing
- π¨ Pixel β Designer, creates visuals
- π Scout β SEO specialist, optimizes discoverability
Each agent wakes on its own cron schedule (default: every 15 minutes, staggered to avoid rate limits), checks for assigned tasks, and gets to work. They coordinate through a shared Convex backend and can @mention each other for handoffs.
How It Works
The architecture leverages everything OpenClaw already does well:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β DOCKER COMPOSE β
βββββββββββββββββββ¬ββββββββββββββββββββββ¬ββββββββββββββββββββββ€
β squadhub β watcher β clawe β
β β β β
β Agent Gateway β β’ Register agents β Web Dashboard β
β with 4 agents β β’ Setup crons β β’ Squad status β
β β β’ Deliver notifs β β’ Task board β
β β β β’ Agent chat β
ββββββββββ¬βββββββββ΄βββββββββββ¬βββββββββββ΄βββββββββββ¬βββββββββββ
β β β
βββββββββββββββββββββΌββββββββββββββββββββββ
β
βββββββββββΌββββββββββ
β CONVEX β
β (Backend) β
β β’ Agents β
β β’ Tasks β
β β’ Notifications β
βββββββββββββββββββββ
- Kanban Board β A web dashboard (Next.js) shows all tasks with statuses, assignments, and subtasks
- Agent Gateway β A Docker container runs all agents via OpenClawβs multi-session support
- Watcher Service β Registers agents, sets up cron schedules, and delivers notifications in real-time
- Convex Backend β Stores agents, tasks, notifications, and activity feeds
The CLI: Agent-to-Agent Communication
Agents use the clawe CLI to participate in the coordination system:
clawe check
# List and view tasks
clawe tasks --status in_progress
clawe task:view <task-id>
# Update status and add comments
clawe task:status <task-id> review
clawe task:comment <task-id> "Draft complete, ready for review"
# Register deliverables
clawe deliver <task-id> "Final Report" --path ./report.md
clawe notify <session-key> "Need your eyes on this"
This CLI-first approach means agents can integrate coordination into their normal workflow β just like OpenClaw agents use file-based memory and heartbeats.
Isolated Workspaces, Shared Context
Each agent gets an isolated workspace with the familiar OpenClaw file structure:
/data/workspace-{agent}/
βββ AGENTS.md # Instructions
βββ SOUL.md # Identity and personality
βββ HEARTBEAT.md # What to do on wake
βββ MEMORY.md # Long-term memory
βββ shared/ # Symlink to team state
βββ WORKING.md # Current team status
βββ WORKFLOW.md # Standard procedures
The shared/ directory is the key innovation β a symlinked folder all agents can read/write. Agents can leave notes, share drafts, and coordinate without relying solely on the database. Itβs file-based collaboration for AI agents.
Routines: Recurring Work
Beyond ad-hoc tasks, Clawe supports scheduled routines that automatically create inbox items:
- Configure day/time schedules per routine
- 1-hour trigger window for crash tolerance
- Tasks created with Clawe (the Squad Lead) as creator
Set up βMonday morning content planningβ or βDaily SEO auditβ and the right agent automatically gets the work.
Getting Started
Deployment is straightforward with Docker Compose:
git clone https://github.com/getclawe/clawe.git
cd clawe
cp .env.example .env
# Add your ANTHROPIC_API_KEY, CONVEX_URL, SQUADHUB_TOKEN
./scripts/start.sh
The start script handles everything: generating tokens, validating env vars, building packages, and spinning up the containers. Dashboard lands at http://localhost:3000.
Why This Matters
OpenClaw proved that personal AI agents work. Over 200,000 developers starred the repo because it solved a real problem β an AI that actually does things.
Clawe is the next logical step: from solo agents to agent teams. Instead of opaque multi-agent communication, you get a dashboard showing whoβs working on what, a notification system for handoffs, and a CLI for agents to update their status.
If OpenClaw is the OS for AI agents, Clawe is the project management layer.
Links:
- Clawe GitHub: github.com/getclawe/clawe
- OpenClaw: github.com/openclaw/openclaw
- OpenClaw on Wikipedia: en.wikipedia.org/wiki/OpenClaw
- Backend: Convex