From 63218683d41bf22de0d704e3937383f676dad92a Mon Sep 17 00:00:00 2001 From: Gemini AI Date: Sun, 18 Jan 2026 02:42:54 +0400 Subject: [PATCH] =?UTF-8?q?Update=20interactive-install-claude.sh=20with?= =?UTF-8?q?=20Superpowers=20agent\n\n-=20Updated=20agent=20counts=20to=20m?= =?UTF-8?q?atch=20current=2040=20agents\n-=20Corrected=20Studio=20Operatio?= =?UTF-8?q?ns=20count=20(8=E2=86=925)\n-=20Corrected=20Design=20count=20(5?= =?UTF-8?q?=E2=86=926)\n-=20Updated=20Bonus=20agents=20count=20(2=E2=86=92?= =?UTF-8?q?4)=20and=20added=20Superpowers=20Agent\n-=20Updated=20agent=20d?= =?UTF-8?q?escriptions=20to=20match=20actual=20agents\n-=20Added=20superpo?= =?UTF-8?q?wers-agent=20to=20Ralph=20AGENTS=20detection=20list\n-=20Update?= =?UTF-8?q?d=20welcome=20message=20(40+=20=E2=86=92=2040=20agents)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- interactive-install-claude.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/interactive-install-claude.sh b/interactive-install-claude.sh index ccdbb96..2e99b82 100755 --- a/interactive-install-claude.sh +++ b/interactive-install-claude.sh @@ -129,7 +129,7 @@ show_welcome() { echo "This installer will guide you through setting up a customized" echo "Claude Code environment with:" echo "" - echo " • 40+ specialized agents for development, marketing, and operations" + echo " • 40 specialized agents for development, marketing, and operations" echo " • MCP tools for vision analysis, web search, and GitHub integration" echo " • Custom skills and plugins" echo " • Optimized workflows for rapid 6-day development cycles" @@ -215,9 +215,9 @@ select_agents() { INSTALL_PRODUCT=false fi - if confirm "Install Studio Operations agents? (Studio producer, project shipper, analytics, finance, legal, support, coach)" "Y"; then + if confirm "Install Studio Operations agents? (Analytics, finance, infrastructure, legal, support)" "Y"; then INSTALL_STUDIO_OPS=true - SELECTED_AGENTS=$((SELECTED_AGENTS + 8)) + SELECTED_AGENTS=$((SELECTED_AGENTS + 5)) else INSTALL_STUDIO_OPS=false fi @@ -229,23 +229,23 @@ select_agents() { INSTALL_PROJECT_MGMT=false fi - if confirm "Install Testing agents? (Test writer/fixer, API tester, performance benchmarker, workflow optimizer)" "Y"; then + if confirm "Install Testing agents? (API tester, performance, test results, tool evaluator, workflow)" "Y"; then INSTALL_TESTING=true SELECTED_AGENTS=$((SELECTED_AGENTS + 5)) else INSTALL_TESTING=false fi - if confirm "Install Design agents? (UI/UX designer, brand guardian, visual storyteller, whimsy injector)" "Y"; then + if confirm "Install Design agents? (UI designer, UX researcher, visual storyteller, whimsy, brand, UI/UX Pro Max)" "Y"; then INSTALL_DESIGN=true - SELECTED_AGENTS=$((SELECTED_AGENTS + 5)) + SELECTED_AGENTS=$((SELECTED_AGENTS + 6)) else INSTALL_DESIGN=false fi - if confirm "Install Bonus agents? (Joker, studio coach)" "Y"; then + if confirm "Install Bonus agents? (Studio coach, agent updater, superpowers agent, joker)" "Y"; then INSTALL_BONUS=true - SELECTED_AGENTS=$((SELECTED_AGENTS + 2)) + SELECTED_AGENTS=$((SELECTED_AGENTS + 4)) else INSTALL_BONUS=false fi @@ -1255,7 +1255,7 @@ AGENTS=( "legal-compliance-checker" "support-responder" "api-tester" "performance-benchmarker" "test-results-analyzer" "tool-evaluator" "workflow-optimizer" - "joker" "agent-updater" + "joker" "agent-updater" "superpowers-agent" "explore" "plan" "general-purpose" )