RepoRose

Loading RepoRose...

Back

Debug & Troubleshoot

Having trouble with RepoRose?

Common issues and solutions to get you up and running quickly.

Quick Commands Reference

Initialize Configuration

Terminal
$reporose init

Interactive setup wizard for AI providers and settings.

Analyze Repository

Terminal
$reporose analyze

Scans current directory and generates map.json.

Start Visualization Server

Terminal
$reporose serve

Opens 3D visualization at localhost:8689.

View Configuration

Terminal
$reporose config --show

Display current AI provider settings.

'reporose' is not recognized

If you get reporose: command not found after installation, your npm global bin directory is not in your PATH.

Find your npm global path:

Terminal
$npm config get prefix

Add to PATH (macOS/Linux):

Terminal
$echo "export PATH=\$(npm config get prefix)/bin:\$PATH" >> ~/.bashrc && source ~/.bashrc

Use .zshrc instead of .bashrc if you use Zsh.

Add to PATH (Windows PowerShell):

Terminal
$$npmPath = npm config get prefix; [Environment]::SetEnvironmentVariable("Path", $env:Path + ";$npmPath", "User")

Alternative: Use npx (no PATH needed)

Terminal
$npx reporose analyze

AI Provider Setup

RepoRose supports multiple AI providers. Choose the one that works best for you:

Ollama (Local - Free)

Run AI locally on your machine. Requires Ollama installed.

Terminal
$reporose config --model ollama --ollama-model codellama --ollama-url http://localhost:11434

Groq (Cloud - Free Tier)

Fast cloud inference with generous free tier.

Terminal
$reporose config --model groq --api-key-env GROQ_API_KEY

Set GROQ_API_KEY environment variable first.

Anthropic Claude

High-quality AI descriptions.

Terminal
$reporose config --model anthropic --api-key-env ANTHROPIC_API_KEY

OpenAI / OpenRouter

Compatible with any OpenAI-compatible API.

Terminal
$reporose config --model openai --api-key-env OPENAI_API_KEY

Configuration File Location

RepoRose stores configuration in a .reporose directory:

View config
$cat .reporose/config.json

The config includes your AI provider, model name, API key environment variable name, and generation parameters.

Still stuck?

Check the full documentation on GitHub or open an issue.

© 2026 RepoRose. All rights reserved.