Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Step 0 - Hello Agent

The simplest Strands agent possible.

Run

pip install -r requirements.txt
python agent.py "hello, what can you do?"

What to notice

  • One import: from strands import Agent
  • One model: Claude Opus 4 (global.anthropic.claude-opus-4-8) via Bedrock
  • One tool: shell from strands_tools
  • Zero orchestration: the agent decides when to call the tool

Next → step-01-tools.