mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-03 14:20:19 +00:00
Add Latitude.sh as the 19th cloud provider in the spawn matrix.
Latitude.sh offers bare metal servers and VMs via REST API with
hourly billing, global locations, and plans starting at $0.07/hr.
New files:
- latitude/lib/common.sh: Provider functions (API wrapper, server
creation/deletion, SSH key management, wait-for-ready)
- latitude/{agent}.sh: All 13 agent deployment scripts
- latitude/README.md: Usage docs with env vars and pricing
Updated:
- manifest.json: Added latitude cloud + 13 matrix entries
- README.md: Updated matrix table (19 clouds, 247 combinations)
Agent: cloud-scout
Co-authored-by: B <6723574+louisgv@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
76 lines
2.4 KiB
Bash
76 lines
2.4 KiB
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
# Source common functions - try local file first, fall back to remote
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" 2>/dev/null && pwd)"
|
|
if [[ -f "${SCRIPT_DIR}/lib/common.sh" ]]; then
|
|
source "${SCRIPT_DIR}/lib/common.sh"
|
|
else
|
|
eval "$(curl -fsSL https://raw.githubusercontent.com/OpenRouterTeam/spawn/main/latitude/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "Claude Code on Latitude.sh"
|
|
echo ""
|
|
|
|
# 1. Resolve Latitude.sh API token
|
|
ensure_latitude_token
|
|
|
|
# 2. Generate + register SSH key
|
|
ensure_ssh_key
|
|
|
|
# 3. Get server name and create server
|
|
SERVER_NAME=$(get_server_name)
|
|
create_server "${SERVER_NAME}"
|
|
|
|
# 4. Wait for server to become active and get IP
|
|
wait_for_server_ready "${LATITUDE_SERVER_ID}" 60
|
|
|
|
# 5. Wait for SSH connectivity
|
|
verify_server_connectivity "${LATITUDE_SERVER_IP}"
|
|
|
|
# 6. Install base tools and Claude Code
|
|
install_base_tools "${LATITUDE_SERVER_IP}"
|
|
|
|
log_warn "Installing Claude Code..."
|
|
run_server "${LATITUDE_SERVER_IP}" "curl -fsSL https://claude.ai/install.sh | bash"
|
|
|
|
# Verify installation succeeded
|
|
if ! run_server "${LATITUDE_SERVER_IP}" "command -v claude &> /dev/null && claude --version &> /dev/null"; then
|
|
log_error "Claude Code installation verification failed"
|
|
log_error "The 'claude' command is not available or not working properly on server ${LATITUDE_SERVER_IP}"
|
|
exit 1
|
|
fi
|
|
log_info "Claude Code installation verified successfully"
|
|
|
|
# 7. Get OpenRouter API key
|
|
echo ""
|
|
if [[ -n "${OPENROUTER_API_KEY:-}" ]]; then
|
|
log_info "Using OpenRouter API key from environment"
|
|
else
|
|
OPENROUTER_API_KEY=$(get_openrouter_api_key_oauth 5180)
|
|
fi
|
|
|
|
log_warn "Setting up environment variables..."
|
|
inject_env_vars_ssh "${LATITUDE_SERVER_IP}" upload_file run_server \
|
|
"OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_BASE_URL=https://openrouter.ai/api" \
|
|
"ANTHROPIC_AUTH_TOKEN=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_API_KEY=" \
|
|
"CLAUDE_CODE_SKIP_ONBOARDING=1" \
|
|
"CLAUDE_CODE_ENABLE_TELEMETRY=0"
|
|
|
|
# 8. Configure Claude Code settings
|
|
setup_claude_code_config "${OPENROUTER_API_KEY}" \
|
|
"upload_file ${LATITUDE_SERVER_IP}" \
|
|
"run_server ${LATITUDE_SERVER_IP}"
|
|
|
|
echo ""
|
|
log_info "Latitude.sh server setup completed successfully!"
|
|
log_info "Server: ${SERVER_NAME} (ID: ${LATITUDE_SERVER_ID}, IP: ${LATITUDE_SERVER_IP})"
|
|
echo ""
|
|
|
|
# 9. Start Claude Code interactively
|
|
log_warn "Starting Claude Code..."
|
|
sleep 1
|
|
clear
|
|
interactive_session "${LATITUDE_SERVER_IP}" "source ~/.zshrc && claude"
|