1#!/bin/sh2# Run a command with the repo .env loaded: scripts/with-env.sh pnpm tsx scripts/ai-smoke.ts3set -a4. "$(dirname "$0")/../.env"5set +a6exec "$@"7