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" )