| Version | Supported |
|---|---|
| 0.3.x | ✅ Current release |
| < 0.3 | ❌ Not supported |
If you discover a security vulnerability in AgentOS, please report it responsibly:
- Do NOT open a public GitHub issue.
- Email: [your-email] or use GitHub's private vulnerability reporting feature on this repository.
- Include:
- Description of the vulnerability
- Steps to reproduce
- Potential impact
- Suggested fix (if any)
We will acknowledge receipt within 48 hours and provide a timeline for a fix.
- Never commit API keys. Use
.envfiles and.env.exampleas a template. - Use budget guards to prevent runaway agent costs.
- Enable permission guards to block dangerous tool access.
- Review audit trails regularly in production deployments.
- Use the kill switch when testing new agent configurations.
- Keep dependencies updated — run
pip install --upgrade agentos-platformregularly.
- The example
calculatortool previously usedeval(). This has been replaced withsimpleevalfor safe expression evaluation. - JSON file storage is not suitable for multi-tenant production deployments. Use a proper database for sensitive data.
- The embeddable widget should be served over HTTPS in production.