mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-09 19:49:58 +00:00
24 agent scripts (codex, opencode, kilocode, openclaw across 6 clouds) used `source ~/.zshrc && <agent>` which loads env vars indirectly via a hook. This fails silently when .zshrc has errors or the hook install was non-fatal, causing agents to launch without OPENROUTER_API_KEY. Change to `source ~/.spawnrc 2>/dev/null; source ~/.zshrc 2>/dev/null; <agent>` which loads env vars directly (matching claude/zeroclaw pattern) and tolerates .zshrc failures without blocking the agent. Agent: code-health Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
33 lines
1.1 KiB
Bash
Executable file
33 lines
1.1 KiB
Bash
Executable file
#!/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)"
|
|
# shellcheck source=aws/lib/common.sh
|
|
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/aws/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "OpenClaw on AWS Lightsail"
|
|
echo ""
|
|
|
|
AGENT_MODEL_PROMPT=1
|
|
AGENT_MODEL_DEFAULT="openrouter/auto"
|
|
|
|
agent_install() { install_agent "openclaw" "source ~/.bashrc && bun install -g openclaw" cloud_run; }
|
|
agent_env_vars() {
|
|
generate_env_config \
|
|
"OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_BASE_URL=https://openrouter.ai/api"
|
|
}
|
|
agent_configure() { setup_openclaw_config "${OPENROUTER_API_KEY}" "${MODEL_ID}" cloud_upload cloud_run; }
|
|
agent_pre_launch() {
|
|
start_openclaw_gateway cloud_run
|
|
wait_for_openclaw_gateway cloud_run
|
|
}
|
|
agent_launch_cmd() { echo 'source ~/.spawnrc 2>/dev/null; source ~/.zshrc 2>/dev/null; openclaw tui'; }
|
|
|
|
spawn_agent "OpenClaw"
|