#!/usr/bin/env sh
# Aegis bootstrap script (POSIX shell)
# Usage:
#   curl -fsSL https://getaegis.sh | sh

set -eu

OS="$(uname -s 2>/dev/null || echo "unknown")"
ARCH="$(uname -m 2>/dev/null || echo "unknown")"

cat <<'EOF'
==========================================
           A E G I S   A I
==========================================
      [=====>   Aegis incoming   <=====]
EOF

echo "Bootstrap channel: POSIX shell"
echo "Detected platform: ${OS} / ${ARCH}"
echo ""
echo "This is the installer bootstrap endpoint."
echo "Next release: pull signed binary/image artifacts by version."
