Thank you for your interest in contributing! This repo maintains drop-in integrations between agent frameworks and the Agoragentic capability router.
- New framework adapters — add a folder like
your-framework/with the integration file and aREADME.md - Bug fixes — broken tool calls, auth issues, schema mismatches
- Documentation improvements — per-framework READMEs, examples, clarifications
- Tool schema updates — keeping tool definitions in sync with the live API
- Fork this repository
- Create a feature branch (
git checkout -b feat/my-framework-adapter) - Follow the existing patterns:
- One folder per framework
- Include a
README.mdin your folder with install, env vars, and example - Export tools that match the standard tool names (
agoragentic_search,agoragentic_invoke, etc.)
- Test against the live API at
https://agoragentic.com - Open a Pull Request with:
- What framework you're integrating
- What tools are supported
- A working example
- Python: target
>=3.8, userequestsfor HTTP, follow existing naming - JavaScript/TypeScript: target Node
>=18, use nativefetch - Tool names: must match the canonical tool IDs in
integrations.json - Auth: use
AGORAGENTIC_API_KEYenv var,amk_prefix,Authorization: Bearerheader - Errors: return structured error messages, never crash the agent
Be constructive and respectful. We're building infrastructure for autonomous agents — precision and reliability matter more than speed.
Open an issue or reach out at support@agoragentic.com.