From ca84a913d8d4e9ee2a1e1cab3ec57ed11440e17c Mon Sep 17 00:00:00 2001 From: bastien Date: Wed, 8 Apr 2026 16:38:51 +0200 Subject: [PATCH] suppressed non plugin --- install-plugins.sh | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/install-plugins.sh b/install-plugins.sh index 302947c..d04025a 100644 --- a/install-plugins.sh +++ b/install-plugins.sh @@ -322,14 +322,16 @@ install_plugin() { fi } -# Official Anthropic (always on) -# Add the official marketplace so CC knows the source; no-op if already registered or built-in -info "Adding official Anthropic plugins marketplace..." -claude plugin marketplace add anthropic/claude-plugins-official 2>/dev/null || true -install_plugin "security-guidance" "claude-plugins-official" -install_plugin "frontend-design" "claude-plugins-official" -install_plugin "skill-creator" "claude-plugins-official" -install_plugin "pr-review-toolkit" "claude-plugins-official" +# Official Anthropic (always on)= + +# pr-review-toolkit — installer depuis le vrai repo si nécessaire +if ! claude plugin list 2>/dev/null | grep -qi "pr-review"; then + info "Installing pr-review-toolkit from GitHub..." + claude plugin install --scope user https://github.com/anthropic-community/pr-review-toolkit 2>/dev/null \ + || warn "pr-review-toolkit — not available as plugin, use as slash command or skill instead" +else + ok "pr-review-toolkit (already installed)" +fi echo ""