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
- Plugins — extend or modify agent behavior during lifecycle events
- 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 - Include the required frontmatter so your page appears in the community catalog
- Update
src/config/navigation.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.mdx |
| Tools | community/tools/ | strands-deepgram.mdx |
| Session Managers | community/session-managers/ | agentcore-memory.mdx |
| Plugins | community/plugins/ | my-plugin.mdx |
| Integrations | community/integrations/ | ag-ui.mdx |
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.Frontmatter
Section titled “Frontmatter”Every community page needs frontmatter with catalog fields so it appears in the community catalog. Without community: true, integrationType, description, and languages, your page won’t show up in the catalog tables.
Here’s the full frontmatter for a Tool (adapt integrationType for your package type — tool, model-provider, session-manager, plugin, or integration):
---title: your-package-namecommunity: trueintegrationType: tooldescription: Short description of what the tool doeslanguages: Pythonsidebar: label: "display-name"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/---| Field | Required | Notes |
|---|---|---|
community | ✅ | Must be true |
integrationType | ✅ | tool, model-provider, session-manager, plugin, or integration |
description | ✅ | Shown in the catalog table |
languages | ✅ | Python, TypeScript, or omit for both |
project | Recommended | PyPI/npm link, GitHub repo, maintainer |
service | Optional | External service metadata |
Update navigation.yml
Section titled “Update navigation.yml”Add your page to src/config/navigation.yml under the Community section:
- label: Community items: - label: Model Providers items: - label: Your Provider link: community/model-providers/your-provider - label: Tools items: - label: your-tool link: community/tools/your-toolExamples to Follow
Section titled “Examples to Follow”Look at existing community pages for reference:
- Tool: strands-deepgram.mdx
- Model Provider: nvidia-nim.mdx
- Session Manager: agentcore-memory.mdx
- Integration: ag-ui.mdx
Questions?
Section titled “Questions?”Open an issue at strands-agents/docs — we’re happy to help!