1편에서 Strands Agents의 개요와 철학을 다뤘어요.이번 편은 실제로 손으로 만들어봐요.이번 편에서 만드는 것:1. 설치 및 환경 설정2. 첫 번째 에이전트 (5분)3. 커스텀 툴 만들기4. Anthropic API 직접 연결 (AWS 없이)5. 멀티에이전트 구성6. MCP 서버 연결7. Lambda 배포 1단계 — 설치# Python 3.10 이상 필요python --version# 가상환경 생성python -m venv strands-envsource strands-env/bin/activate # Mac/Linux# strands-env\Scripts\activate # Windows# 기본 설치pip install strands-agents strands-agents-tools#..