Get Featured in the Docs
Built something useful for Strands Agents? Getting featured in our docs helps other developers discover your work and gives your package visibility across the community.
What We’re Looking For
Section titled “What We’re Looking For”We feature reusable packages that extend Strands Agents capabilities:
- Model Providers — integrations with LLM services (OpenAI-compatible endpoints, custom APIs, etc.)
- Tools — packaged tools that solve common problems (API integrations, utilities, etc.)
- Session Managers — custom session/memory implementations
- Integrations — protocol implementations, framework bridges, etc.
We’re not looking for example agents or one-off projects — the focus is on packages published to PyPI that others can pip install or npm install and use in their own agents. See Community Packages for guidance on creating and publishing your package.
Quick Steps
Section titled “Quick Steps”- Create a PR to strands-agents/docs
- Add your doc file in the appropriate
community/subdirectory - Update
mkdocs.ymlto include your new page in the nav
Directory Structure
Section titled “Directory Structure”Place your documentation in the right spot:
| Type | Directory | Example |
|---|---|---|
| Model Providers | community/model-providers/ | cohere.md |
| Tools | community/tools/ | strands-deepgram.md |
| Session Managers | community/session-managers/ | agentcore-memory.md |
| Integrations | community/integrations/ | ag-ui.md |
Document Layout
Section titled “Document Layout”Your Strands docs page should be a concise overview — not a copy of your GitHub README. Keep it focused on getting users started quickly. Save the deep dives, advanced configurations, and detailed API docs for your project’s own documentation.
Follow this structure (see existing docs for reference):
# Package Name
Brief intro explaining what your package does and why it's useful.
## Installation
pip install your-package
## Usage
Working code example showing basic usage with Strands Agent.
## Configuration
Environment variables, client options, or model parameters.
## Troubleshooting (optional)
Common issues and how to fix them.
## References
Links to your repo, PyPI, official docs, etc.For Tools
Section titled “For Tools”Add frontmatter with project metadata:
---project: pypi: https://pypi.org/project/your-package/ github: https://github.com/your-org/your-repo maintainer: your-github-usernameservice: name: service-name link: https://service-website.com/---Update mkdocs.yml
Section titled “Update mkdocs.yml”Add your page to the nav section under Community:
nav: - Community: - Model Providers: - Your Provider: community/model-providers/your-provider.md - Tools: - your-tool: community/tools/your-tool.mdExamples to Follow
Section titled “Examples to Follow”- Model Provider: fireworksai.md
- Tool: strands-deepgram.md
Questions?
Section titled “Questions?”Open an issue at strands-agents/docs — we’re happy to help!