Overview

ElasticClaw provisions AI agents as ephemeral VMs — isolated environments with full git access, a terminal, and real-time streaming.

ElasticClaw is early-stage open source software. Expect rough edges and breaking changes until v1.0.

What is ElasticClaw?

ElasticClaw lets you spin up AI agent VMs on demand. Each agent is a real virtual machine running your bootstrap template. Agents connect to your AI provider, can read and write files, run commands, and integrate with GitHub and Linear.

The core components are:

  • elasticclaw CLI — create, manage, and chat with agents
  • hub.yaml — your central config: providers, templates, secrets
  • elasticclaw-config.yaml — per-template bootstrap definition
  • elasticclaw-web — optional web dashboard with real-time streaming

Quick Start

Install the CLI:

bash
brew tap elasticclaw/elasticclaw
brew install elasticclaw

Create your first agent:

bash
elasticclaw create --name my-agent --template my-template
elasticclaw chat my-agent

Next Steps