#!/usr/bin/env sh
# Hiway installer — https://www.hiway2llm.com
# Usage: curl -fsSL https://install.hiway2llm.com | sh

set -eu

echo "🚧 Hiway installer — scaffold placeholder"
echo ""
echo "Real installer lands in Phase 3 and will:"
echo "  • detect OS + arch (linux/darwin, amd64/arm64)"
echo "  • download the latest hiway2llm binary from GitHub Releases"
echo "  • install to /usr/local/bin/hiway2llm + symlink ~/bin/hw"
echo "  • verify checksum"
echo ""
echo "Until then, install from source:"
echo "  git clone https://github.com/hiway2llm/client.git"
echo "  cd client/cli && go build -o bin/hiway2llm ."
exit 0
