Thank you for your interest in contributing! We appreciate your willingness to share your patches and improvements with the project.
We're excited to have you contribute! To help your contribution go smoothly, please review the following sections before you begin.
Check the GitHub Issues for bug reports or feature requests. Feel free to pick up an existing issue or open a new one if you have an idea or find a bug.
Contributions to this project must be accompanied by a Contributor License Agreement (CLA). You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project.
If you or your current employer have already signed the Google CLA (even if it was for a different project), you probably don't need to do it again.
Visit https://cla.developers.google.com/ to see your current agreements or to sign a new one.
We adhere to Google's Open Source Community Guidelines. Please familiarize yourself with these guidelines to ensure a positive and collaborative environment for everyone.
We review contributions for integrations based on the following criteria:
- Completeness and testability: The integration should be functional and testable. Include working code examples that developers can run.
- Value for developers: The integration should provide clear value for developers building agents with ADK.
- Publishability: We must be able to publish the documentation in our official docs. For example, we cannot accept integrations that circumvent technical protection measures, violate terms of service, or access services without authorization.
- Test your documentation locally using
mkdocs servebefore submitting - Include complete, working code examples that users can copy and run
- Keep descriptions concise but informative
- Link to external resources for detailed platform-specific documentation
- Use consistent formatting with existing documentation pages
-
Clone the repository:
git clone git@github.com:google/adk-docs.git cd adk-docs -
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate -
Install dependencies:
pip install -r requirements.txt
-
Run the local development server:
mkdocs serve
This command starts a local docs server, typically at
http://127.0.0.1:8000/.
| Type | Description |
|---|---|
| Documentation fixes | Fix typos, broken links, or minor wording improvements |
| New documentation | Add a new guide, tutorial, or reference page |
| Major changes | Large-scale reorganization or refactoring |
| API and CLI reference | Pre-built reference docs generated from upstream ADK repositories |
| Integrations | Tools, plugins, observability libraries, user interfaces, or any extensions to ADK agents or agent development |
For typo fixes, broken links, or small wording improvements:
- Edit the file directly on GitHub or clone the repo locally
- Submit a pull request with a clear description of the fix
- No issue required for small fixes
For new guides, tutorials, or reference pages:
- Open an issue first to discuss the proposed content
- Create your Markdown file in the appropriate
docs/subdirectory - Add navigation entry to
mkdocs.ymlif needed - Test locally with
mkdocs serve
For large-scale reorganization or refactoring:
- Open an issue first to discuss the scope and approach
- Wait for maintainer feedback before starting work
- Consider breaking large changes into smaller, reviewable PRs
For changes to the API and CLI reference pages, do not edit files in
docs/api-reference/ directly. These are pre-built HTML generated from the
upstream ADK source repositories and are overwritten each time the docs are
regenerated.
To contribute to API and CLI reference documentation, make your changes in the ADK source repository for the relevant language (for example, adding or updating docstrings, exporting new public symbols, etc.).
The reference docs are regenerated periodically, and your changes will be included in the next update. See the ADK Contributing Guide for links to each language-specific repository.
Integrations include third-party tools, plugins, and observability platforms for
ADK agents. All integrations live under docs/integrations/. Examples include
GitHub,
Daytona, and
AgentOps.
To contribute an integration:
-
Create the documentation file:
Create a new Markdown file at
docs/integrations/<name>.md. -
Follow the standard structure:
Your documentation should include frontmatter and the sections below that are relevant to your integration.
See existing integration pages for reference.
--- catalog_title: Integration Name catalog_description: A short description of what your integration does catalog_icon: /adk-docs/integrations/assets/<name>.png --- # Integration Name Brief description of the integration and what it provides for ADK agents. ## Use cases - **Use Case 1**: Description of what users can accomplish - **Use Case 2**: Another common use case - **Use Case 3**: Additional use case ## Prerequisites - Required software versions - Required accounts or API keys - Any setup steps needed ## Installation ```bash pip install your-package-name ``` ## Use with agent ```python from google.adk.agents import Agent # Show a complete, working example ``` ## Available tools Tool | Description ---- | ----------- `tool_name_1` | What this tool does `tool_name_2` | What this tool does ## Resources - [Platform Documentation](https://example.com/docs) - [GitHub Repository](https://github.com/example/repo) - [Community/Support Links](https://example.com/community)
-
Add an image asset:
Add a logo image to
docs/integrations/assets/named<name>.png. Images should be square and appropriately sized for display as a card. -
Include screenshots:
Screenshots or visuals that illustrate your integration in action are strongly encouraged. Add them to
docs/integrations/assets/.
All contributions, including those from project members, undergo a review process.
-
Create a Pull Request: We use GitHub Pull Requests (PRs) for code review. Please refer to GitHub Help if you're unfamiliar with PRs.
-
Review Process: Project maintainers will review your PR, providing feedback or requesting changes if necessary.
-
Merging: Once the PR is approved and passes any required checks, it will be merged into the main branch.
We look forward to your contributions!