Skip to content

Getting Started

Installation

bash
npm i -g groove-ai

Quick Start

Start the daemon:

bash
groove start

Spawn your first agent:

bash
groove spawn --role backend

Spawn a second agent — it will automatically be introduced to the first:

bash
groove spawn --role frontend

Check status:

bash
groove status

What Just Happened

  1. groove start launched the daemon on port 3141, which manages all agent coordination
  2. Each groove spawn started a Claude Code session with the specified role
  3. The introduction protocol notified existing agents about the new arrival
  4. The Journalist began synthesizing context in the background

Next Steps

FSL-1.1-Apache-2.0