Configuration
GROOVE uses a .groove/config.json file in your project root for per-project configuration. Edit it directly or use the CLI.
groove config show # view current config
groove config set <k> <v> # change a valueDefault Configuration
{
"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.
groove config set port 31415journalistInterval
How often the Journalist runs a synthesis cycle, in seconds. Default: 120 (2 minutes).
groove config set journalistInterval 120Lower 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%).
groove config set rotationThreshold 0.75This 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.
groove config set autoRotation trueWhen 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.
groove config set qcThreshold 4When 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.
groove config set maxAgents 10defaultProvider
The default AI provider for new agents. Default: "claude-code".
groove config set defaultProvider claude-codeAvailable values: claude-code, codex, gemini, aider, ollama.
