/ test_ceo_expansion_strategy.sh
test_ceo_expansion_strategy.sh
 1  #!/bin/bash
 2  set -euo pipefail
 3  
 4  # Test CEO agent's session_consult for Asian market expansion strategy
 5  
 6  echo "========================================================"
 7  echo " CEO Agent - Asian Market Expansion Strategy Test"
 8  echo "========================================================"
 9  echo ""
10  
11  # Test: Multi-turn conversation about market expansion
12  echo "Turn 1: Initial strategic analysis on Asian market expansion..."
13  echo ""
14  
15  cat <<'EOF' | ./apps/ceo/ceo 2>&1 | grep -A 100 '"result":' | tail -50
16  {"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test-client", "version": "1.0.0"}}}
17  {"jsonrpc": "2.0", "id": 2, "method": "tools/call", "params": {"name": "session_consult", "arguments": {"question": "As CEO of ECHO, I'm considering expanding into Asian markets (specifically Japan and Singapore) in 2025. Our B2B SaaS currently serves North American clients. What are the key factors I should evaluate before making this strategic decision? Consider market readiness, localization needs, regulatory challenges, and competitive landscape."}}}
18  EOF
19  
20  echo ""
21  echo "========================================================"
22  echo " Test Complete - Check response quality above"
23  echo "========================================================"