bash Install uv curl -LsSf https://astral.sh/uv/install.sh | sh Clone and install dependencies git clone https://github.com/kevinrgu/autoagent cd autoagent uv sync Configure environment variables cat .env << 'EOF' OPENAI API KEY=$OPENAI API KEY Add other provider keys as needed EOF Build the base Docker image docker build -f Dockerfile.base -t autoagent-base . autoagent/ ├── agent.py # Single-file harness under test (primary edit surface) ├── program.md # Meta-agent instructions + directive (human edits this) ├── Dockerfile.base # Base Docker image for task containers ├── tasks/ # Benchmark t…