gitextract_1p582z2o/ ├── .github/ │ ├── actions/ │ │ └── uv_setup/ │ │ └── action.yml │ └── workflows/ │ ├── _lint.yml │ ├── _test.yml │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── langgraph_supervisor/ │ ├── __init__.py │ ├── agent_name.py │ ├── handoff.py │ ├── py.typed │ └── supervisor.py ├── pyproject.toml └── tests/ ├── __init__.py ├── test_agent_name.py ├── test_supervisor.py └── test_supervisor_functional_api.py