Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions scripts/openclaw-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ set -eu
# ─── Constants ────────────────────────────────────────────────────────────────

CONFIG_PATH="$HOME/.openclaw/openclaw.json"
BYTEROVER_OPENCLAW_PLUGIN_VERSION="1.1.8"
Comment thread
cuongdo-byterover marked this conversation as resolved.

# ─── Colors (respects NO_COLOR and non-terminal) ─────────────────────────────

Expand Down Expand Up @@ -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."

Expand Down
Loading