#!/usr/bin/env bash
# theo runner - delegates to bundled Node.js runner
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
[[ -f "$SCRIPT_DIR/.theo-env.sh" ]] && source "$SCRIPT_DIR/.theo-env.sh"
exec "${THEO_NODE_PATH:-node}" "$HOME/.theo/runner.cjs" "$@"
