Skip to content

Configuration

GROOVE uses a .groove/config.json file in your project root for per-project configuration. Edit it directly or use the CLI.

bash
groove config show        # view current config
groove config set <k> <v> # change a value

Default Configuration

json
{
  "version": "0.3.0",
  "port": 31415,
  "journalistInterval": 120,
  "rotationThreshold": 0.75,
  "autoRotation": true,
  "qcThreshold": 4,
  "maxAgents": 10,
  "defaultProvider": "claude-code"
}

Options

version

Config schema version. Managed automatically -- do not edit.

port

Daemon port for the REST API, WebSocket, and GUI. Default: 31415.

bash
groove config set port 31415

journalistInterval

How often the Journalist runs a synthesis cycle, in seconds. Default: 120 (2 minutes).

bash
groove config set journalistInterval 120

Lower values give fresher context documents but consume more headless API calls. For active multi-agent sessions, 120 seconds is a good balance. For solo agent work, consider raising to 300.

rotationThreshold

Context usage percentage that triggers auto-rotation. Default: 0.75 (75%).

bash
groove config set rotationThreshold 0.75

This is the base threshold. GROOVE's adaptive engine adjusts the actual trigger per provider and per role based on session quality scoring. The value here sets the starting point.

autoRotation

Enable or disable automatic context rotation. Default: true.

bash
groove config set autoRotation true

When false, agents will continue running past the threshold until you manually rotate them via the GUI or groove rotate <id>.

qcThreshold

Number of active agents that triggers automatic QC supervisor spawn. Default: 4.

bash
groove config set qcThreshold 4

When you hit this many agents, GROOVE spawns a supervisor agent that reviews risky operations and routes them through the approval queue.

maxAgents

Maximum number of agents that can run simultaneously. Default: 10.

bash
groove config set maxAgents 10

defaultProvider

The default AI provider for new agents. Default: "claude-code".

bash
groove config set defaultProvider claude-code

Available values: claude-code, codex, gemini, aider, ollama.

FSL-1.1-Apache-2.0