#!/usr/bin/env bash
set -euo pipefail
CONTROL="$(dirname "${BASH_SOURCE[0]}")/agentic-orchestration-control"
if [[ ! -x "$CONTROL" ]]; then
  echo "Missing executable wrapper: $CONTROL" >&2
  exit 1
fi
exec "$CONTROL" gui "$@"
