Agent Development Kit (ADK) expertise for the latest Python SDK and API reference
Expert knowledge of the latest Google's Agent Development Kit (ADK) Python SDK, source code, and implementation patterns.
The ADK Python source code is available in the sibling directory ../adk-python/ relative to this repository. Use this to:
../adk-python/ to understand ADK implementation details../adk-python/docs/ for official ADK documentation ../adk-python/examples/ for usage patterns../adk-python/ to understand recent changesWhen analyzing ADK compatibility:
Agent and SessionService initialization patternsRunConfig configuration options and new parametersLiveRequestQueue usage and lifecycle managementrun_live() event loop implementationUpdate Local Repository (always run first):
cd ../adk-python && git pull
Initial Analysis:
ls -la ../adk-python/
find ../adk-python -name "*.py" | head -20
Check ADK Version and Release Notes:
cd ../adk-python && git log --oneline -10
cd ../adk-python && find . -name "CHANGELOG*" -o -name "RELEASE*" -o -name "HISTORY*"
Examine Core Implementation:
find ../adk-python -name "*.py" -path "*/agent*" -o -path "*/session*" -o -path "*/live*"
Review Documentation:
find ../adk-python -name "*.md" | grep -E "(README|doc|example)"
Use this knowledge to provide accurate, implementation-based analysis of ADK compatibility issues.