#!/bin/bash # # Tier 0 Agent Runner # =================== # Bootstraps and runs the Tier 0 agent with full governance. # set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # Bootstrap first (sets up environment) source "${SCRIPT_DIR}/bootstrap.sh" echo "" echo "Starting agent..." echo "" # Run agent command python3 "${SCRIPT_DIR}/agent.py" "$@"