#!/bin/bash
# Wrapper to run Python3 in the project directory.
# Reads Python code from stdin (heredoc).
# This avoids compound bash commands (cd && python3) that trigger permission prompts.
cd "/Users/kimhansen/Desktop/03 Workspace/ceo-agents/chl-effectiveness"
exec python3 "$@"
