{"id":36442362,"url":"https://github.com/LondheShubham153/strands-agents-workshop","last_synced_at":"2026-01-18T15:00:29.625Z","repository":{"id":310320394,"uuid":"1039447567","full_name":"LondheShubham153/strands-agents-workshop","owner":"LondheShubham153","description":"This is a One Shot Course on Strands Agents with Notebooks, Scripts, resources and Projects to take you from Zero To Hero in Strands Agents SDK usage in your Agentic AI Journey","archived":false,"fork":false,"pushed_at":"2025-10-30T09:49:59.000Z","size":141,"stargazers_count":18,"open_issues_count":0,"forks_count":19,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-30T11:43:37.868Z","etag":null,"topics":["agentic-ai","aws","bedrock","strands-agents"],"latest_commit_sha":null,"homepage":"https://strandsagents.com/","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LondheShubham153.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-17T08:49:38.000Z","updated_at":"2025-10-30T09:50:03.000Z","dependencies_parsed_at":"2025-08-19T02:30:23.628Z","dependency_job_id":null,"html_url":"https://github.com/LondheShubham153/strands-agents-workshop","commit_stats":null,"previous_names":["londheshubham153/strands-agents-course"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LondheShubham153/strands-agents-workshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LondheShubham153%2Fstrands-agents-workshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LondheShubham153%2Fstrands-agents-workshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LondheShubham153%2Fstrands-agents-workshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LondheShubham153%2Fstrands-agents-workshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LondheShubham153","download_url":"https://codeload.github.com/LondheShubham153/strands-agents-workshop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LondheShubham153%2Fstrands-agents-workshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28538865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agentic-ai","aws","bedrock","strands-agents"],"created_at":"2026-01-11T22:00:18.247Z","updated_at":"2026-01-18T15:00:29.620Z","avatar_url":"https://github.com/LondheShubham153.png","language":"Jupyter Notebook","funding_links":[],"categories":["Community Projects"],"sub_categories":["For PyPI Packages"],"readme":"# Strands Agents Workshop\n\nA comprehensive workshop for building AI agents with the Strands framework on AWS Cloud. This workshop provides both Jupyter notebook and Python script formats for flexible delivery.\n\n## 🎯 Workshop Overview\n\nThis 2-3 hour workshop takes participants from basic agent creation to advanced multi-agent systems, covering:\n\n- Basic agent creation and configuration\n- Tool integration and custom capabilities\n- Multi-model support (AWS Bedrock + Ollama)\n- Memory-enabled agents with persistence\n- Advanced real-world applications\n- Multi-agent system orchestration\n- MCP (Model Context Protocol) integration\n\n## 📁 Repository Structure\n\n```\nstrands-agents-workshop/\n├── README.md                 # This file\n├── requirements.txt          # Python dependencies\n├── SETUP.md                 # Detailed setup instructions\n├── CONTRIBUTING.md          # Contribution guidelines\n├── notebooks/               # Jupyter notebook format\n│   ├── 01-basic-agent-creation.ipynb\n│   ├── 02-working-with-tools.ipynb\n│   ├── 03-custom-models.ipynb\n│   ├── 04-memory-enabled-agents.ipynb\n│   ├── 05-advanced-examples.ipynb\n│   ├── 06-multi-agent-systems.ipynb\n│   ├── 07-mcp-integration.ipynb\n│   └── README.md\n├── scripts/                 # Python script format\n│   ├── 01_basic_agents.py\n│   ├── 02_agent_tools.py\n│   ├── 03_custom_models.py\n│   ├── 04_memory_agents.py\n│   ├── 05_advanced_examples.py\n│   ├── 06_multi_agent_systems.py\n│   ├── 07_mcp_integration.py\n│   ├── mcp.json\n│   └── README.md\n├── .env.example            # Environment variables template\n└── venv/                   # Virtual environment\n```\n\n## 🚀 Quick Start\n\n### Prerequisites\n- Python 3.8+\n- AWS Account with Bedrock access\n- (Optional) Ollama for local models\n\n### Setup\n```bash\n# Clone and navigate\ncd strands-agents-workshop\n\n# Create virtual environment (if not exists)\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n\n# Install dependencies\npip install -r requirements.txt\n\n# Configure environment variables\ncp .env.example .env\n# Edit .env with your AWS credentials and API keys\n\n# Alternative: Configure AWS (choose one method)\naws configure  # Interactive setup\n# OR\nexport AWS_PROFILE=your-profile\nexport AWS_REGION=us-west-2\n```\n\n### Choose Your Format\n\n#### Option 1: Jupyter Notebooks (Recommended for Interactive Learning)\n```bash\njupyter notebook notebooks/\n```\n\n#### Option 2: Python Scripts (IDE Development)\n```bash\ncd scripts\npython 01_basic_agents.py\n```\n\n## 🎓 Learning Path\n\n### Module 1: Foundation (30 minutes)\n- **01-basic-agent-creation**: Create your first agents\n- **02-working-with-tools**: Add capabilities with tools\n\n### Module 2: Models \u0026 Memory (45 minutes)\n- **03-custom-models**: AWS Bedrock and Ollama integration\n- **04-memory-enabled-agents**: Persistent conversations\n\n### Module 3: Advanced Applications (60 minutes)\n- **05-advanced-examples**: Real-world use cases\n- **06-multi-agent-systems**: Agent orchestration\n\n### Module 4: Integration (30 minutes)\n- **07-mcp-integration**: Model Context Protocol\n\n### Configuration\n\nCopy the example environment file and configure your settings:\n```bash\ncp .env.example .env\n# Edit .env with your AWS credentials and preferences\n```\n\n### AWS Bedrock Setup\n```bash\n# Ensure your AWS credentials have Bedrock access\naws bedrock list-foundation-models --region us-west-2\n```\n\n### Ollama Setup (Optional)\n```bash\n# Install Ollama\ncurl -fsSL https://ollama.ai/install.sh | sh\n\n# Pull recommended models\nollama pull llama3.2:1b\nollama pull llama3.2:3b\n```\n\n### Memory Configuration (Optional)\n```bash\n# For Mem0 integration\nexport MEM0_API_KEY=your-api-key\n```\n\n## 📚 Documentation\n\n- [Official Strands Agents Docs](https://strandsagents.com/latest/documentation/docs/) - Official documentation\n- [Setup Instructions](SETUP.md) - Detailed environment setup\n- [Troubleshooting](docs/TROUBLESHOOTING.md) - Common issues and solutions\n- [API Reference](docs/API_REFERENCE.md) - Strands Agents API guide\n- [Contributing](CONTRIBUTING.md) - How to contribute\n\n## 🆘 Support\n\nFor issues and questions:\n1. Check [TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md)\n2. Review notebook comments and documentation\n3. Verify your environment setup\n\n## 📄 License\n\nThis workshop content is provided for educational purposes.\n\n---\n\n**Ready to build intelligent agents? Start with `notebooks/01-basic-agent-creation.ipynb` or `scripts/01_basic_agents.py`!**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLondheShubham153%2Fstrands-agents-workshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLondheShubham153%2Fstrands-agents-workshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLondheShubham153%2Fstrands-agents-workshop/lists"}