Claude Skill
getclawe/clawe
Clawe is a TypeScript-based multi-agent coordination system that provides Trello-style collaboration for OpenClaw AI agents, enabling efficient workflow management and agent orchestration.
Overview
Repository
Install this Skill
git clone https://github.com/getclawe/clawe.gitRegistry
git clone https://github.com/getclawe/clawe.gitnpx convex deploy
Summary
Clawe is a multi-agent coordination system designed for OpenClaw agents, functioning like a Trello-style collaboration platform to manage and orchestrate AI agent workflows.
多智能体协调系统:相当于为OpenClaw智能体打造的Trello式协作平台。
Key features
- Multi-agent coordination system
- Trello-style collaboration platform
- Designed for OpenClaw agents
- Workflow management and orchestration
- TypeScript implementation
Use cases
- Orchestrating multiple AI agents
- Managing collaborative AI projects
- Streamlining agent task workflows
- Coordinating OpenClaw agent activities
- Visualizing agent interactions and progress
README excerpt
<div align="center"> <img src="./docs/images/clawe-logo.png" alt="Clawe" width="600" /> <p><strong>A multi-agent coordination system powered by <a href="https://github.com/openclaw/openclaw">OpenClaw</a>.</strong></p> <p>Deploy a team of AI agents that work together, each with their own identity, workspace, and scheduled heartbeats. Coordinate tasks, share context, and deliver notifications in near real-time.</p> </div> <div align="center"> <video src="https://github.com/user-attachments/assets/d2f892d9-4c32-4c31-95e5-222d4ea87592" width="600" controls> <a href="https://www.clawe.ai/assets/clawe-demo.mp4"> <img src="./docs/images/board.png" alt="Clawe" width="600" /> <br>▶ Watch demo </a> </video> </div> ## Features - Run multiple AI agents with distinct roles and personalities - Agents wake on cron schedules to check for work - Kanban-style task management with assignments and subtasks - Instant delivery of @mentions and task updates - Agents collaborate through shared files and Convex backend - Monitor squad status, tasks, and chat with agents from a web dashboard ## Quick Start ### Prerequisites - Docker & Docker Compose - [Convex](https://convex.dev) account (free tier works) - Anthropic API key ### 1. Clone and Setup ```bash git clone https://github.com/getclawe/clawe.git cd clawe cp .env.example .env ``` ### 2. Configure Environment Edit `.env`: ```bash # Required SQUADHUB_TOKEN=your-secure-token CONVEX_URL=https://your-deployment.convex.cloud # API keys (Anthropic, OpenAI) are configured via the UI during onboarding ``` ### 3. Deploy Convex Backend ```bash pnpm install cd packages/backend npx convex deploy ``` ### 4. Start the System **Production (recommended):** ```bash ./scripts/start.sh ``` This script will: - C