--- title: WitNote emoji: ๐ฆ colorFrom: blue colorTo: green sdk: docker app_port: 7860 ---
The Evolution of AI Agents ๐: Solo ๐ค โ Swarm ๐ฆ๐ค๐ค๐ค
ClawTeam: Let AI Agents Form Swarms, Think & Work Together, and Ship Faster
๐ฌ AI Research Automation
โข Large-Scale Automated ML Experimentation โข AI Model Training & Optimization โข AI-Driven Hypothesis Generation & Validation โข Self-Improving Model Architectures |
๐๏ธ Agentic Engineering
โข Autonomous Full-Stack Development โข Self-Evolving Software โข Collaborative Open Source Development โข Real-Time System Integration |
๐ฐ AI Hedge Fund
โข Automated Market Research & Data Mining โข Multi-Strategy Portfolio Optimization โข Real-Time Risk Assessment โข Algorithmic Trading Execution & Monitoring |
๐ช Your Own Swarm
โข Custom Scientific Research Teams โข Personalized Investment Committees โข Business Operations Teams โข Content Production Studios |
| v0.1.0 https://github.com/user-attachments/assets/7e2f0ecd-8fe3-4970-90ac-5c9669ff060c | v0.2.0 https://github.com/user-attachments/assets/fd23be91-5cf4-457c-a77e-bac24b76e58f |
| ### ๐ฆ Agents Spawn Agents The leader agent calls `clawteam spawn` to create workers. Each worker gets its own **git worktree**, **tmux window**, and **identity** โ automatically. ```bash # The leader agent runs: clawteam spawn --team my-team \ --agent-name worker1 \ --task "Implement auth module" ``` | ### ๐ค Agents Talk to Agents Workers check their inbox, update task status, and report results โ all through CLI commands that are **auto-injected** into their prompt. ```bash # A worker agent checks tasks: clawteam task list my-team --owner me # Then reports back: clawteam inbox send my-team leader \ "Auth done. All tests passing." ``` | ### ๐ You Just Watch Monitor the swarm from a tiled tmux view or a Web UI. The leader handles coordination โ you intervene only when you want to. ```bash # Watch all agents simultaneously clawteam board attach my-team # Or open the web dashboard clawteam board serve --port 8080 ``` |
๐ val_bpb: 1.044 โ 0.977 (6.4% improvement) | 2430+ experiments | ~30 GPU-hours
| ### ๐ฆ Agent Self-Organization - Leader agents spawn and manage worker agents - **Auto-injected coordination prompt** โ zero manual setup - Workers self-report status, results, and idle state - Works with any CLI agent: Claude Code, Codex, OpenClaw, custom ### ๐ณ Workspace Isolation - Each agent gets its own **git worktree** (separate branch) - No merge conflicts between parallel agents - Checkpoint, merge, and cleanup commands - Branch naming: `clawteam/{team}/{agent}` ### ๐ Task Tracking with Dependencies - Shared kanban: `pending` โ `in_progress` โ `completed` / `blocked` - `--blocked-by` dependency chains โ **auto-unblock on completion** - `task wait` blocks until all tasks complete - Filter by status, owner; JSON output for scripting | ### ๐ฌ Inter-Agent Messaging - Point-to-point **inboxes** (send, receive, peek) - **Broadcast** to all team members - File-based (default) or ZeroMQ P2P transport with offline fallback - Agents discover messages via `inbox receive` ### ๐ Monitoring & Dashboards - `board show` โ terminal kanban board - `board live` โ auto-refreshing dashboard - `board attach` โ **tiled tmux view** of all agents working - `board serve` โ **Web UI** with real-time updates ### ๐ช Team Templates - **TOML files** define team archetypes (roles, tasks, prompts) - One command launches a complete team: `clawteam launch ` - Built-in: AI Hedge Fund (7 agents). Create your own. - Variable substitution: `{goal}`, `{team_name}`, `{agent_name}` |
Thanks for visiting โจ ClawTeam!