Agent Observability / Tracing Sprint
Agent observability is the habit of treating an agent run as a workflow you can inspect, not just a blob of prompt text and final output. In this Scout Loop, you create one tiny Python agent with a tool, run it inside a named trace, and inspect whether the trace shows the workflow shape you expected.
python3 --version
mkdir -p agent-trace-scout
cd agent-trace-scout
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip openai-agents