From 9efa45132653521129ea9d203f510a7769552b89 Mon Sep 17 00:00:00 2001 From: A <258483684+la14-1@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:17:02 -0800 Subject: [PATCH] feat: Add OpenCode and Plandex on OVHcloud (#122) Implement ovh/opencode.sh and ovh/plandex.sh using OVH primitives. Both scripts provision an OVHcloud instance, install the agent, inject OpenRouter credentials, and launch an interactive session. Agent: gap-filler-5 Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) --- manifest.json | 4 +-- ovh/README.md | 12 +++++++++ ovh/opencode.sh | 61 ++++++++++++++++++++++++++++++++++++++++++++ ovh/plandex.sh | 68 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 143 insertions(+), 2 deletions(-) create mode 100644 ovh/opencode.sh create mode 100644 ovh/plandex.sh diff --git a/manifest.json b/manifest.json index bdce5f45..87b7b838 100644 --- a/manifest.json +++ b/manifest.json @@ -803,8 +803,8 @@ "ovh/amazonq": "implemented", "ovh/cline": "missing", "ovh/gptme": "missing", - "ovh/opencode": "missing", - "ovh/plandex": "missing", + "ovh/opencode": "implemented", + "ovh/plandex": "implemented", "kamatera/claude": "implemented", "kamatera/openclaw": "implemented", "kamatera/nanoclaw": "implemented", diff --git a/ovh/README.md b/ovh/README.md index dc104b42..837d289a 100644 --- a/ovh/README.md +++ b/ovh/README.md @@ -73,6 +73,18 @@ bash <(curl -fsSL https://openrouter.ai/lab/spawn/ovh/gemini.sh) bash <(curl -fsSL https://openrouter.ai/lab/spawn/ovh/amazonq.sh) ``` +#### OpenCode + +```bash +bash <(curl -fsSL https://openrouter.ai/lab/spawn/ovh/opencode.sh) +``` + +#### Plandex + +```bash +bash <(curl -fsSL https://openrouter.ai/lab/spawn/ovh/plandex.sh) +``` + ## Non-Interactive Mode ```bash diff --git a/ovh/opencode.sh b/ovh/opencode.sh new file mode 100644 index 00000000..f7639cd5 --- /dev/null +++ b/ovh/opencode.sh @@ -0,0 +1,61 @@ +#!/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=ovh/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/ovh/lib/common.sh)" +fi + +log_info "OpenCode on OVHcloud" +echo "" + +# 1. Resolve OVH credentials +ensure_ovh_authenticated + +# 2. Generate + register SSH key +ensure_ssh_key + +# 3. Get server name and create instance +SERVER_NAME=$(get_server_name) +create_ovh_instance "${SERVER_NAME}" + +# 4. Wait for instance to be active and get IP +wait_for_ovh_instance "${OVH_INSTANCE_ID}" + +# 5. Wait for SSH connectivity +verify_server_connectivity "${OVH_SERVER_IP}" + +# 6. Install base dependencies +install_base_deps "${OVH_SERVER_IP}" + +# 7. Install OpenCode +log_warn "Installing OpenCode..." +run_ovh "${OVH_SERVER_IP}" "$(opencode_install_cmd)" +log_info "OpenCode installed" + +# 8. 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_ovh "${OVH_SERVER_IP}" \ + "OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" + +echo "" +log_info "OVHcloud instance setup completed successfully!" +log_info "Instance: ${SERVER_NAME} (ID: ${OVH_INSTANCE_ID}, IP: ${OVH_SERVER_IP})" +echo "" + +# 9. Start OpenCode interactively +log_warn "Starting OpenCode..." +sleep 1 +clear +interactive_session "${OVH_SERVER_IP}" "source ~/.zshrc && opencode" diff --git a/ovh/plandex.sh b/ovh/plandex.sh new file mode 100644 index 00000000..cd294463 --- /dev/null +++ b/ovh/plandex.sh @@ -0,0 +1,68 @@ +#!/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=ovh/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/ovh/lib/common.sh)" +fi + +log_info "Plandex on OVHcloud" +echo "" + +# 1. Resolve OVH credentials +ensure_ovh_authenticated + +# 2. Generate + register SSH key +ensure_ssh_key + +# 3. Get server name and create instance +SERVER_NAME=$(get_server_name) +create_ovh_instance "${SERVER_NAME}" + +# 4. Wait for instance to be active and get IP +wait_for_ovh_instance "${OVH_INSTANCE_ID}" + +# 5. Wait for SSH connectivity +verify_server_connectivity "${OVH_SERVER_IP}" + +# 6. Install base dependencies +install_base_deps "${OVH_SERVER_IP}" + +# 7. Install Plandex +log_warn "Installing Plandex..." +run_ovh "${OVH_SERVER_IP}" "curl -sL https://plandex.ai/install.sh | bash" + +# Verify installation succeeded +if ! run_ovh "${OVH_SERVER_IP}" "command -v plandex &> /dev/null && plandex version &> /dev/null"; then + log_error "Plandex installation verification failed" + log_error "The 'plandex' command is not available or not working properly on server ${OVH_SERVER_IP}" + exit 1 +fi +log_info "Plandex installation verified successfully" + +# 8. 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_ovh "${OVH_SERVER_IP}" \ + "OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" + +echo "" +log_info "OVHcloud instance setup completed successfully!" +log_info "Instance: ${SERVER_NAME} (ID: ${OVH_INSTANCE_ID}, IP: ${OVH_SERVER_IP})" +echo "" + +# 9. Start Plandex interactively +log_warn "Starting Plandex..." +sleep 1 +clear +interactive_session "${OVH_SERVER_IP}" "source ~/.zshrc && plandex"