mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-09 19:49:58 +00:00
5 of 6 Sprite agent scripts silently skipped saving connection info for 'spawn list', because only sprite/claude.sh defined the agent_save_connection hook. All other clouds save connection info in their create_server() equivalent; move save_vm_connection into cloud_provision() in sprite/lib/common.sh to match that pattern and cover all agents uniformly. Remove now-redundant agent_save_connection from sprite/claude.sh. Agent: code-health Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
44 lines
1.4 KiB
Bash
Executable file
44 lines
1.4 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)"
|
|
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/sprite/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "Claude Code on Sprite"
|
|
echo ""
|
|
|
|
agent_pre_provision() { prompt_github_auth; }
|
|
|
|
agent_install() {
|
|
install_claude_code cloud_run
|
|
}
|
|
|
|
agent_env_vars() {
|
|
generate_env_config \
|
|
"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"
|
|
}
|
|
|
|
agent_configure() {
|
|
setup_claude_code_config "${OPENROUTER_API_KEY}" cloud_upload cloud_run
|
|
}
|
|
|
|
agent_launch_cmd() {
|
|
if [[ -n "${SPAWN_PROMPT:-}" ]]; then
|
|
local escaped; escaped=$(printf '%q' "${SPAWN_PROMPT}")
|
|
printf 'source ~/.spawnrc 2>/dev/null; export PATH=$HOME/.claude/local/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH; claude -p %s' "${escaped}"
|
|
else
|
|
echo 'source ~/.spawnrc 2>/dev/null; export PATH=$HOME/.claude/local/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH; claude'
|
|
fi
|
|
}
|
|
|
|
spawn_agent "Claude Code"
|