ODIN's hub architecture integrates with your existing stack while preserving audit governance and approval workflows. Connect source control, CI/CD, and more.
Our most popular integrations with deep functionality and governed task execution
GitHub
GitLab
Slack
Jira
Linear
Notion
Docker
Azure
Google Cloud
AWS
Sentry
Vercel
CircleCI
PagerDuty
n8n
Microsoft Teams
GitHub
GitLab
Slack
Jira
Linear
Notion
Docker
Azure
Google Cloud
AWS
Sentry
Vercel
CircleCI
PagerDuty
n8n
Microsoft Teams
Full integration with GitHub repositories, PRs, issues, and Actions
Connect with GitLab for code management and CI/CD pipelines
Automate workflows with GitHub Actions integration
Get notifications and interact with ODIN directly in Slack
EU-based cloud infrastructure for full data sovereignty. All ODIN services run on Hetzner servers in European data centers.
DNS management, CDN, DDoS protection, and WAF. Cloudflare secures and accelerates all ODIN traffic.
Primary LLM provider powering ODIN's reasoning, code generation, and natural language understanding.
Local LLM inference engine for on-premise deployments. Run models like Llama locally with zero external API calls.
Browse our full catalog of integrations by category
EU-based cloud infrastructure for full data sovereignty. All ODIN services run on Hetzner servers in European data centers.
Learn moreDNS management, CDN, DDoS protection, and WAF. Cloudflare secures and accelerates all ODIN traffic.
Learn moreProduction-grade relational database powering all ODIN services. Per-tenant isolation with full ACID compliance.
Learn moreIn-memory data store for caching, session management, and job queues across the ODIN platform.
Learn moreEvery ODIN service runs in isolated containers. Multi-stage builds, health checks, and zero-downtime deploys.
Learn moreAutomatic reverse proxy and load balancer with Let's Encrypt TLS. Service discovery via Docker labels.
Learn moreFull observability stack: metrics collection, alerting, and real-time dashboards for all ODIN services.
Learn moreAutomatic TLS certificate generation and renewal. Every ODIN endpoint is encrypted by default.
Learn moreS3-compatible object storage for video artifacts, documents, and file uploads. Self-hosted, no cloud dependency.
Learn morePrimary LLM provider powering ODIN's reasoning, code generation, and natural language understanding.
Learn moreLocal LLM inference engine for on-premise deployments. Run models like Llama locally with zero external API calls.
Learn moreAlternative LLM provider for GPT models. ODIN supports swapping providers without code changes.
Learn moreLocal speech-to-text engine for voice capture. LUNA transcribes voice input entirely on your infrastructure.
Learn moreProgrammatic video rendering engine for generating sales presentations and demo videos from code.
Learn moreWe're extending hub architecture into new tools based on customer needs, always with governance trails. Let us know what you'd like to connect.
Most requested integrations are built within 2-4 weeks, tested against governance-first standards
The most requested integrations get prioritized
Requesters get early access to beta integrations
Use our comprehensive REST API to build custom integrations with full audit trail support. Documentation, SDKs, and examples available.
import { OdinClient } from '@odin-labs/sdk';
// Initialize the client
const client = new OdinClient({
apiKey: process.env.ODIN_API_KEY,
});
// Request a code review
const review = await client.reviewPullRequest({
repo: 'my-org/my-repo',
prNumber: 123,
depth: 'comprehensive',
});
console.log(review.suggestions);