From 096a53e2826175c52865b4c2cfb7f1c7a3d9018b Mon Sep 17 00:00:00 2001 From: Cuong Date: Thu, 25 Jun 2026 23:28:57 +0700 Subject: [PATCH] fix: pin OpenClaw ByteRover plugin for v3 --- scripts/openclaw-setup.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/openclaw-setup.sh b/scripts/openclaw-setup.sh index 2a54efcbf..c0e3f8641 100755 --- a/scripts/openclaw-setup.sh +++ b/scripts/openclaw-setup.sh @@ -12,6 +12,7 @@ set -eu # ─── Constants ──────────────────────────────────────────────────────────────── CONFIG_PATH="$HOME/.openclaw/openclaw.json" +BYTEROVER_OPENCLAW_PLUGIN_VERSION="1.1.8" # ─── Colors (respects NO_COLOR and non-terminal) ───────────────────────────── @@ -378,9 +379,9 @@ configure_context_plugin() { # Clean slate: remove old local files + previous CLI install to avoid conflicts remove_existing_byterover_plugin - info "Installing @byterover/byterover plugin..." - if ! retry_with_backoff openclaw plugins install @byterover/byterover@latest; then - error "Failed to install @byterover/byterover plugin after multiple attempts." + info "Installing @byterover/byterover plugin v${BYTEROVER_OPENCLAW_PLUGIN_VERSION}..." + if ! retry_with_backoff openclaw plugins install "@byterover/byterover@${BYTEROVER_OPENCLAW_PLUGIN_VERSION}"; then + error "Failed to install @byterover/byterover plugin v${BYTEROVER_OPENCLAW_PLUGIN_VERSION} after multiple attempts." fi success "Plugin installed."