| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-12-15 | 2.0 kB | |
| v2.3.13 source code.tar.gz | 2025-12-15 | 18.3 MB | |
| v2.3.13 source code.zip | 2025-12-15 | 20.3 MB | |
| Totals: 3 Items | 38.7 MB | 0 | |
Changelog
New Features:
- AgentOS Role-Based Access Control (RBAC) → Introducing RBAC for AgentOS (see the docs). This allows you to either automatically or manually configure JWT-based authorization checks in AgentOS with the following benefits:
- All traffic to your AgentOS would require a signed JWT token, with the correct user permission scopes.
- Per-endpoint authorization → Based on the scopes inside the JWT token, access is granted or denied to each endpoint as you choose. The required scopes are configurable as well.
- Per-agent resource control → By setting specific scopes like
agents:my-agent:readyou can control which agents can be run (i.e. when callingPOST /agents/my-agent/runs) or which agents are returned on read (i.e. when callingGET /agentsorGET /agents/{id}). This allows for full control over which users can use and see which agents, and this extends to AgentOS. The same also applies toTeamandWorkflow. - AgentOS UI compatibility to be released in the coming days.
- Note: On the
JWTMiddlewareclass:secret_keyhas been deprecated (although still supported) and it is recommended to supplyverification_keys=[...]going forward.algorithmdefault value changed fromHS256toRS256to make asymmetric keys the default (better suited for production cases).
What's Changed
- [fix] Reranker assignment for redis by @mishramonalisha76 in https://github.com/agno-agi/agno/pull/5687
- Refactor knowledge content addition to synchronous method by @uzaxirr in https://github.com/agno-agi/agno/pull/5715
- feat: AgentOS RBAC by @dirkbrnd in https://github.com/agno-agi/agno/pull/5391
- fix: search queries on citations by @dirkbrnd in https://github.com/agno-agi/agno/pull/5721
- chore: Release 2.3.13 by @dirkbrnd in https://github.com/agno-agi/agno/pull/5722
Full Changelog: https://github.com/agno-agi/agno/compare/v2.3.12...v2.3.13