Files
chrome-use/bin/agent-browser
T
2026-01-11 03:52:44 -06:00

38 lines
852 B
Bash
Executable File

#!/bin/sh
# agent-browser CLI wrapper
# Detects platform and runs the appropriate native binary
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS" in
darwin) OS="darwin" ;;
linux) OS="linux" ;;
mingw*|msys*|cygwin*) OS="win32" ;;
*) echo "Unsupported OS: $OS" >&2; exit 1 ;;
esac
case "$ARCH" in
x86_64|amd64) ARCH="x64" ;;
aarch64|arm64) ARCH="arm64" ;;
*) echo "Unsupported architecture: $ARCH" >&2; exit 1 ;;
esac
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
if [ "$OS" = "win32" ]; then
BINARY="agent-browser-${OS}-${ARCH}.exe"
else
BINARY="agent-browser-${OS}-${ARCH}"
fi
BINARY_PATH="$SCRIPT_DIR/$BINARY"
if [ ! -f "$BINARY_PATH" ]; then
echo "Native binary not found: $BINARY" >&2
echo "Falling back to Node.js..." >&2
exec node "$SCRIPT_DIR/../dist/index.js" "$@"
fi
exec "$BINARY_PATH" "$@"