strands-agents
SKILL.md
Strands Agents SDK
Build AI agents using the model-driven Strands Agents SDK. Agents consist of three components: a model, tools, and a prompt.
Installation
pip install strands-agents strands-agents-tools --break-system-packages
Basic Agent
from strands import Agent
agent = Agent(system_prompt="You are a helpful assistant.")
response = agent("Hello, how can you help me?")
print(response)