Day 13: Hands-On AgentCore + Service Comparison Drilling
Learning Objectives
- - Deploy an agent with AgentCore CLI in 2 commands
- - Implement AgentCore Memory (session + episodic)
- - Try AgentCore Code Interpreter for data analysis
- - Build comprehensive service comparison tables from memory
Tasks
Tasks
0/5 completed- Blog30m
Deploy Production AI Agents in 2 Commands
AgentCore CLI: agentcore create, agentcore deploy, test endpoint.
- Blog25m
AgentCore Memory Management (Mike Chambers)
Short-term vs long-term vs episodic memory. Code walkthrough.
- Blog20m
AgentCore Code Interpreter
Secure sandbox for Python execution. Supports pandas, numpy, matplotlib.
- Hands-on120m
AgentCore Samples Repository - Deploy and Test
Install CLI, create Strands agent, deploy, test endpoint, check CloudWatch.
- Study120m
Build Your Own Service Comparison Tables
From memory, build tables for: Bedrock vs SageMaker, Agents vs AgentCore, Vector stores, Caching, Guardrails filters.
Exam Skills
Write your understanding, then reveal the reference answer.
Hands-On Lab
Build real muscle memory with these activities.
Deploy an Agent with AgentCore CLI
Use the AgentCore CLI to create and deploy a Strands agent to production in minutes.
- 1 Install the AgentCore CLI: pip install agentcore-cli
- 2 Run agentcore create my-agent --template strands to scaffold a new agent project
- 3 Review the generated agent code: agent.py, tools.py, requirements.txt
- 4 Run agentcore dev to test locally with hot-reloading
- 5 Run agentcore deploy to deploy to AgentCore Runtime and note the endpoint URL
Test AgentCore Memory (Session and Episodic)
Implement short-term session memory and long-term episodic memory in your deployed agent.
- 1 Open the AgentCore console and navigate to your deployed agent
- 2 Enable session memory and set the TTL to 1 hour
- 3 Send a series of messages: 'My name is Alice', then 'What is my name?' โ verify session context
- 4 Enable long-term memory and configure it for episodic storage
- 5 In a new session, ask 'What do you remember about me?' to verify cross-session memory recall
Practice Questions
20 questions across 3 difficulty levels.
Further Reading
Go deeper into today's topics.
Introducing Amazon Bedrock AgentCore โ Danilo Poccia
Deep walkthrough with Strands Agents code for AgentCore deployment.
AgentCore CLI: Deploy an AI Agent in Four Commands
Hands-on CLI walkthrough: agentcore create, dev, deploy with Strands SDK.
AgentCore Code Interpreter
Secure sandbox for Python execution. Supports pandas, numpy, matplotlib.
What is Amazon Bedrock AgentCore? โ Tutorials Dojo
Bedrock vs AgentCore distinction, 7 services explained clearly.
AgentCore Samples
Production agent deployment, Gateway, Memory, Identity sample code.