#!/bin/bash has_asdf_plugin() { local plugin="$1" case "$plugin" in nodejs|python|golang|rust) echo "true" ;; *) echo "false" ;; esac } build_extension() { echo "๐Ÿ”จ Building the Roo Code extension..." pnpm -w vsix -- --out ../bin/roo-code-$(git rev-parse --short HEAD).vsix || exit 1 code --install-extension ../../bin/roo-code-$(git rev-parse --short HEAD).vsix || exit 1 cd evals } check_docker_services() { echo "๐Ÿณ Checking Docker services..." if ! command -v docker &> /dev/null; then echo "โŒ Docker is not installed. Please install Docker Desktop and try again." exit 1 fi if ! docker info &> /dev/null; then echo "โŒ Docker is not running. Please start Docker Desktop and try again." exit 1 fi if ! docker compose version &> /dev/null; then echo "โŒ Docker Compose is not available. Please ensure Docker Desktop is properly installed." exit 1 fi local services_to_start=() if ! nc -z localhost 5432 2>/dev/null; then echo "๐Ÿ“ฆ PostgreSQL not running on port 5432" services_to_start+=("db") else echo "โœ… PostgreSQL is running" fi if ! nc -z localhost 6379 2>/dev/null; then echo "๐Ÿ“ฆ Redis not running on port 6379" services_to_start+=("redis") else echo "โœ… Redis is running" fi if [ ${#services_to_start[@]} -gt 0 ]; then echo "๐Ÿš€ Starting Docker services: ${services_to_start[*]}" echo "๐Ÿงน Cleaning up stale Docker state..." docker compose down --remove-orphans &>/dev/null || true docker network prune -f &>/dev/null || true if docker compose --profile server up -d "${services_to_start[@]}"; then echo "โœ… Docker services started successfully" echo "โณ Waiting for services to be ready..." local timeout=30 local elapsed=0 local all_ready=false while [ $elapsed -lt $timeout ]; do all_ready=true for service in "${services_to_start[@]}"; do if [[ "$service" == "db" ]] && ! nc -z localhost 5432 2>/dev/null; then all_ready=false break elif [[ "$service" == "redis" ]] && ! nc -z localhost 6379 2>/dev/null; then all_ready=false break fi done if [ "$all_ready" = true ]; then echo "โœ… All services are ready" break fi sleep 1 elapsed=$((elapsed + 1)) if [ $((elapsed % 5)) -eq 0 ]; then echo " Still waiting... (${elapsed}s/${timeout}s)" fi done if [ "$all_ready" = false ]; then echo "โŒ Timeout: Services failed to start within ${timeout} seconds" echo " Please check Docker logs: docker compose logs" exit 1 fi else echo "โŒ Failed to start Docker services even after cleanup. Please check your docker-compose.yml file." exit 1 fi else echo "โœ… All required Docker services are already running" fi } if [[ "$(uname -s)" != "Darwin" ]]; then echo "โš ๏ธ Only macOS is currently supported." echo "The Roo Code evals system can also be run with Docker on any platform." echo "See https://github.com/RooCodeInc/Roo-Code/blob/main/packages/evals/README.md for instructions." exit 1 fi if ! command -v brew &>/dev/null; then if [[ -f "/opt/homebrew/bin/brew" ]]; then echo "โš ๏ธ Homebrew is installed but not in your PATH" exit 1 fi read -p "๐Ÿบ Homebrew (https://brew.sh) is required. Install it? (Y/n): " install_brew if [[ "$install_brew" =~ ^[Yy]|^$ ]]; then echo "๐Ÿบ Installing Homebrew..." /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" || exit 1 # Can be undone with: # /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" && sudo rm -rvf /opt/homebrew if [[ "$SHELL" == "/bin/zsh" ]] && ! grep -q 'eval "$(/opt/homebrew/bin/brew shellenv)"' ~/.zprofile; then echo '[[ -s "/opt/homebrew/bin/brew" ]] && eval "$(/opt/homebrew/bin/brew shellenv)"' >>~/.zprofile elif [[ "$SHELL" == "/bin/bash" ]] && ! grep -q 'eval "$(/opt/homebrew/bin/brew shellenv)"' ~/.bash_profile; then echo '[[ -s "/opt/homebrew/bin/brew" ]] && eval "$(/opt/homebrew/bin/brew shellenv)"' >>~/.bash_profile fi if [[ "$SHELL" == "/bin/zsh" ]]; then eval "$(/opt/homebrew/bin/brew shellenv)" elif [[ "$SHELL" == "/bin/bash" ]]; then eval "$(/opt/homebrew/bin/brew shellenv)" fi BREW_VERSION=$(brew --version) echo "โœ… Homebrew is installed ($BREW_VERSION)" else exit 1 fi else BREW_VERSION=$(brew --version) echo "โœ… Homebrew is installed ($BREW_VERSION)" fi ASDF_PATH="$(brew --prefix asdf)/libexec/asdf.sh" if ! command -v asdf &>/dev/null; then if [[ -f "$ASDF_PATH" ]]; then echo "โš ๏ธ asdf is installed but not in your PATH" exit 1 fi read -p "๐Ÿ› ๏ธ asdf (https://asdf-vm.com) is required. Install it? (Y/n): " install_asdf if [[ "$install_asdf" =~ ^[Yy]|^$ ]]; then echo "๐Ÿ› ๏ธ Installing asdf..." brew install asdf || exit 1 # Can be undone with: # brew uninstall asdf # rm -rvf ~/.asdf . "$ASDF_PATH" if [[ "$SHELL" == "/bin/zsh" ]] && ! grep -q 'source "$(brew --prefix asdf)/libexec/asdf.sh"' ~/.zshrc; then echo '[[ -s "/opt/homebrew/bin/brew" ]] && [[ -s "$(brew --prefix asdf)/libexec/asdf.sh" ]] && source "$(brew --prefix asdf)/libexec/asdf.sh"' >>~/.zprofile elif [[ "$SHELL" == "/bin/bash" ]] && ! grep -q 'source "$(brew --prefix asdf)/libexec/asdf.sh"' ~/.bash_profile; then echo '[[ -s "/opt/homebrew/bin/brew" ]] && [[ -s "$(brew --prefix asdf)/libexec/asdf.sh" ]] && source "$(brew --prefix asdf)/libexec/asdf.sh"' >>~/.bash_profile fi ASDF_VERSION=$(asdf --version) echo "โœ… asdf is installed ($ASDF_VERSION)" else exit 1 fi else ASDF_VERSION=$(asdf --version) echo "โœ… asdf is installed ($ASDF_VERSION)" . "$ASDF_PATH" fi if ! command -v gh &>/dev/null; then read -p "๐Ÿ‘จโ€๐Ÿ’ป GitHub cli is needed to submit evals results. Install it? (Y/n): " install_gh if [[ "$install_gh" =~ ^[Yy]|^$ ]]; then brew install gh || exit 1 GH_VERSION=$(gh --version | head -n 1) echo "โœ… gh is installed ($GH_VERSION)" gh auth status || gh auth login -w -p https fi else GH_VERSION=$(gh --version | head -n 1) echo "โœ… gh is installed ($GH_VERSION)" fi options=("nodejs" "python" "golang" "rust" "java") binaries=("node" "python" "go" "rustc" "javac") for i in "${!options[@]}"; do plugin="${options[$i]}" binary="${binaries[$i]}" if [[ "$(has_asdf_plugin "$plugin")" == "true" ]]; then if ! asdf plugin list | grep -q "^${plugin}$" && ! command -v "${binary}" &>/dev/null; then echo "๐Ÿ“ฆ Installing ${plugin} asdf plugin..." asdf plugin add "${plugin}" || exit 1 echo "โœ… asdf ${plugin} plugin installed successfully" fi fi case "${plugin}" in "nodejs") if ! command -v node &>/dev/null; then asdf install nodejs 20.19.2 || exit 1 asdf set nodejs 20.19.2 || exit 1 NODE_VERSION=$(node --version) echo "โœ… Node.js is installed ($NODE_VERSION)" else NODE_VERSION=$(node --version) echo "โœ… Node.js is installed ($NODE_VERSION)" fi if [[ $(node --version) != "v20.19.2" ]]; then NODE_VERSION=$(node --version) echo "๐Ÿšจ You have the wrong version of node installed ($NODE_VERSION)." echo "๐Ÿ’ก If you are using nvm then run 'nvm install' to install the version specified by the repo's .nvmrc." exit 1 fi ;; "python") if ! command -v python &>/dev/null; then asdf install python 3.13.2 || exit 1 asdf set python 3.13.2 || exit 1 PYTHON_VERSION=$(python --version) echo "โœ… Python is installed ($PYTHON_VERSION)" else PYTHON_VERSION=$(python --version) echo "โœ… Python is installed ($PYTHON_VERSION)" fi if ! command -v uv &>/dev/null; then brew install uv || exit 1 UV_VERSION=$(uv --version) echo "โœ… uv is installed ($UV_VERSION)" else UV_VERSION=$(uv --version) echo "โœ… uv is installed ($UV_VERSION)" fi ;; "golang") if ! command -v go &>/dev/null; then asdf install golang 1.24.2 || exit 1 asdf set golang 1.24.2 || exit 1 GO_VERSION=$(go version) echo "โœ… Go is installed ($GO_VERSION)" else GO_VERSION=$(go version) echo "โœ… Go is installed ($GO_VERSION)" fi ;; "rust") if ! command -v rustc &>/dev/null; then asdf install rust 1.85.1 || exit 1 asdf set rust 1.85.1 || exit 1 RUST_VERSION=$(rustc --version) echo "โœ… Rust is installed ($RUST_VERSION)" else RUST_VERSION=$(rustc --version) echo "โœ… Rust is installed ($RUST_VERSION)" fi ;; "java") if ! command -v javac &>/dev/null || ! javac --version &>/dev/null; then echo "โ˜• Installing Java..." brew install openjdk@17 || exit 1 export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH" if [[ "$SHELL" == "/bin/zsh" ]] && ! grep -q 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' ~/.zprofile; then echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.zprofile elif [[ "$SHELL" == "/bin/bash" ]] && ! grep -q 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' ~/.bash_profile; then echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.bash_profile fi JAVA_VERSION=$(javac --version | head -n 1) echo "โœ… Java is installed ($JAVA_VERSION)" else JAVA_VERSION=$(javac --version | head -n 1) echo "โœ… Java is installed ($JAVA_VERSION)" fi ;; esac done if ! command -v pnpm &>/dev/null; then brew install pnpm || exit 1 PNPM_VERSION=$(pnpm --version) echo "โœ… pnpm is installed ($PNPM_VERSION)" else PNPM_VERSION=$(pnpm --version) echo "โœ… pnpm is installed ($PNPM_VERSION)" fi pnpm install --silent || exit 1 if ! command -v code &>/dev/null; then echo "โš ๏ธ Visual Studio Code cli is not installed" exit 1 else VSCODE_VERSION=$(code --version | head -n 1) echo "โœ… Visual Studio Code is installed ($VSCODE_VERSION)" fi # To reset VSCode: # rm -rvf ~/.vscode && rm -rvf ~/Library/Application\ Support/Code echo -n "๐Ÿ”Œ Installing Visual Studio Code extensions... " code --install-extension golang.go &>/dev/null || exit 1 code --install-extension dbaeumer.vscode-eslint&>/dev/null || exit 1 code --install-extension redhat.java &>/dev/null || exit 1 code --install-extension ms-python.python&>/dev/null || exit 1 code --install-extension rust-lang.rust-analyzer &>/dev/null || exit 1 if ! code --list-extensions 2>/dev/null | grep -q "RooVeterinaryInc.roo-cline"; then code --install-extension RooVeterinaryInc.roo-cline &>/dev/null || exit 1 fi echo "โœ… Done" if [[ ! -d "../../../evals" ]]; then echo -n "๐Ÿ”— Cloning evals repository... " git clone https://github.com/RooCodeInc/Roo-Code-Evals.git ../../../evals || exit 1 echo "โœ… Done" else echo -n "๐Ÿ”„ Updating evals repository... " (cd ../../../evals && \ git checkout -f &>/dev/null && \ git clean -f -d &>/dev/null && \ git checkout main &>/dev/null && \ git pull &>/dev/null) || { echo "โŒ Failed to update evals repository."; exit 1; } echo "โœ… Done" fi if [[ ! -s .env.local ]]; then touch .env.local || exit 1 fi # Check and start Docker services before database operations check_docker_services echo -n "๐Ÿ—„๏ธ Syncing Roo Code evals database... " pnpm --filter @roo-code/evals db:push --force &>/dev/null || exit 1 echo "โœ… Done" if ! grep -q "OPENROUTER_API_KEY" .env.local; then read -p "๐Ÿ” Enter your OpenRouter API key (sk-or-v1-...): " openrouter_api_key echo "๐Ÿ”‘ Validating..." curl --silent --fail https://openrouter.ai/api/v1/key -H "Authorization: Bearer $openrouter_api_key" &>/dev/null || exit 1 echo "OPENROUTER_API_KEY=$openrouter_api_key" >> .env.local || exit 1 fi current_version=$(code --list-extensions --show-versions 2>/dev/null | grep roo) read -p "๐Ÿ’ป Do you want to build a new version of the Roo Code extension? [currently $current_version] (y/N): " build_extension if [[ "$build_extension" =~ ^[Yy]$ ]]; then build_extension fi echo -e "\n๐Ÿš€ You're ready to rock and roll! \n" if ! nc -z localhost 3000; then read -p "๐ŸŒ Would you like to start the evals web app? (Y/n): " start_evals if [[ "$start_evals" =~ ^[Yy]|^$ ]]; then pnpm --filter @roo-code/web-evals dev else echo "๐Ÿ’ก You can start it anytime with 'pnpm --filter @roo-code/web-evals dev'." fi else echo "๐Ÿ‘Ÿ The evals web app is running at http://localhost:3000 (or http://localhost:3446 if using Docker)" fi