gitextract_6mxkg8fn/ ├── .devcontainer/ │ ├── README.md │ ├── devcontainer.json │ └── setup.sh ├── .editorconfig ├── .gemini/ │ └── config.yaml ├── .git-blame-ignore-revs ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ └── feature-request.yml │ ├── PULL_REQUEST_TEMPLATE/ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── become_a_repo_maintainer.md │ ├── actions/ │ │ └── spelling/ │ │ ├── advice.md │ │ ├── allow.txt │ │ ├── excludes.txt │ │ └── line_forbidden.patterns │ ├── conventional-commit-lint.yaml │ ├── dependabot.yml │ ├── linters/ │ │ ├── .eslintrc.js │ │ ├── .jscpd.json │ │ ├── .markdownlint.json │ │ ├── .protolint.yaml │ │ └── .stylelintrc.json │ ├── super-linter.env │ └── workflows/ │ ├── check-linked-issues.yml │ ├── conventional-commits.yml │ ├── dispatch-a2a-update.yml │ ├── docs.yml │ ├── issue-metrics.yml │ ├── links.yaml │ ├── linter.yaml │ ├── release-please.yml │ ├── sort-spelling-allowlist.yml │ ├── spelling.yaml │ └── stale.yaml ├── .gitignore ├── .gitvote.yml ├── .mkdocs/ │ ├── macros.py │ └── overrides/ │ └── main.html ├── .prettierrc ├── .ruff.toml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── adrs/ │ ├── adr-001-protojson-serialization.md │ └── adr-template.md ├── docs/ │ ├── 404.html │ ├── README.md │ ├── announcing-1.0.md │ ├── community.md │ ├── definitions.md │ ├── index.md │ ├── llms.txt │ ├── partners.md │ ├── roadmap.md │ ├── robots.txt │ ├── sdk/ │ │ ├── index.md │ │ └── python.md │ ├── specification.md │ ├── stylesheets/ │ │ └── custom.css │ ├── topics/ │ │ ├── a2a-and-mcp.md │ │ ├── agent-discovery.md │ │ ├── enterprise-ready.md │ │ ├── extensions.md │ │ ├── key-concepts.md │ │ ├── life-of-a-task.md │ │ ├── streaming-and-async.md │ │ └── what-is-a2a.md │ ├── tutorials/ │ │ ├── index.md │ │ └── python/ │ │ ├── 1-introduction.md │ │ ├── 2-setup.md │ │ ├── 3-agent-skills-and-card.md │ │ ├── 4-agent-executor.md │ │ ├── 5-start-server.md │ │ ├── 6-interact-with-server.md │ │ ├── 7-streaming-and-multiturn.md │ │ └── 8-next-steps.md │ └── whats-new-v1.md ├── lychee.toml ├── mkdocs.yml ├── requirements-docs.txt ├── scripts/ │ ├── build_docs.sh │ ├── build_llms_full.sh │ ├── build_sdk_docs.sh │ ├── deploy_root_files.sh │ ├── format.sh │ ├── lint.sh │ ├── proto_to_json_schema.sh │ └── sort_spelling.sh └── specification/ ├── .api-linter.yaml ├── a2a.proto ├── buf.gen.yaml ├── buf.yaml └── json/ └── README.md