#!/bin/bash
# Wrapper to run bot_manager.py from anywhere
# It forces the CWD to the project root

PROJECT_ROOT="/root/projects/butler"
cd "$PROJECT_ROOT" || exit 1
"$PROJECT_ROOT/venv/bin/python3" scripts/bot_manager.py "$@"
