Skip to main content
Example errors:
Agent not initialized: Agent initialization failed: Blob storage initialization error: Fail
Failed to initialize SQLite storage: The module was compiled against a different Node.js version
Cause: Node.js version mismatch—the CLI was installed with a different Node version than what’s currently active.Solution: Use Node.js 22 and reinstall the CLI:
# Check your Node version (should be v22.x.x)
node --version

# If using nvm, switch to Node 22
nvm install 22 && nvm use 22

# Reinstall ByteRover CLI
npm uninstall -g byterover-cli
npm install -g byterover-cli
Symptom:A command (like /query) is visibly running in the REPL, but the Activity Tab displays running:0.Cause:This typically happens when:
  • The REPL has been kept active for a long time
  • Your laptop went to sleep mode while the REPL was open
Solution:Terminate the current REPL session and start a new one:
  1. Press Ctrl+C to quit the current session
  2. Start a fresh REPL:
    brv