From 3ef9cd6adb6584b908f0f170efad1258b11f8d05 Mon Sep 17 00:00:00 2001 From: openhands Date: Thu, 12 Mar 2026 12:55:11 +0000 Subject: [PATCH 1/2] Add Enterprise documentation tab with initial overview - Create enterprise/index.mdx with overview of OpenHands Enterprise - Add Enterprise tab to docs.json navigation (placed first for visibility) - Add Enterprise link to footer The initial content explains: - What OpenHands Enterprise is (self-hosted AI coding agents) - Key benefits: data control, custom configuration, security, cost control - Enterprise features: self-host/private cloud, BYOK LLM, integrations, support - Comparison table of deployment options This provides a foundation for adding more detailed enterprise documentation (architecture, installation, operations) in future PRs. --- docs.json | 10 +++++ enterprise/index.mdx | 100 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 110 insertions(+) create mode 100644 enterprise/index.mdx diff --git a/docs.json b/docs.json index bc959ef0..cdeda5fd 100644 --- a/docs.json +++ b/docs.json @@ -19,6 +19,12 @@ "favicon": "openhands/logo-square.png", "navigation": { "tabs": [ + { + "tab": "Enterprise", + "pages": [ + "enterprise/index" + ] + }, { "tab": "Documentation", "pages": [ @@ -430,6 +436,10 @@ { "label": "OpenHands Cloud", "href": "https://app.all-hands.dev" + }, + { + "label": "Enterprise", + "href": "https://openhands.dev/enterprise" } ] } diff --git a/enterprise/index.mdx b/enterprise/index.mdx new file mode 100644 index 00000000..83a36d88 --- /dev/null +++ b/enterprise/index.mdx @@ -0,0 +1,100 @@ +--- +title: OpenHands Enterprise +description: Run AI coding agents on your own infrastructure with complete control +icon: building +--- + +OpenHands Enterprise allows you to run AI coding agents directly on your own +servers or in your private cloud. Unlike the SaaS version, the enterprise +deployment gives you complete control over your AI development environment. + +## What is OpenHands Enterprise? + +OpenHands Enterprise brings the power of autonomous coding agents to your +organization with the governance, security, and compliance your enterprise +demands. + + + + All code and conversations stay on your infrastructure. Nothing leaves your + environment. + + + Configure LLM providers, security settings, and runtime environments to + match your requirements. + + + Deploy behind your firewall with your security policies. Fine-grained access + control and auditability. + + + Use your own compute resources and LLM API keys. No per-seat licensing. + + + +## Why Choose Enterprise? + +### Self-Hosted or Private Cloud Deployment + +Deploy OpenHands on your own infrastructure—whether on-premises, in your private +cloud, or in your VPC. You maintain full control over where your code and data +reside. + +### Bring Your Own LLM + +Connect to your preferred LLM provider—Anthropic, OpenAI, AWS Bedrock, Azure +OpenAI, Google Vertex AI, or any other provider. Use your existing enterprise +agreements and API keys. + +### Enterprise Integrations + +OpenHands Enterprise integrates with your existing enterprise ecosystem: + +- **Identity & Access**: Enterprise SAML/SSO for centralized authentication +- **Source Control**: GitHub Enterprise, GitLab, Bitbucket +- **Project Management**: Jira, and other ticketing systems +- **Communication**: Slack integration for notifications and workflows + +### Containerized Sandbox Runtime + +Every agent runs in an isolated, containerized sandbox environment. This +provides safe autonomy—agents can execute code and make changes without risking +your production systems. + +### Dedicated Support + +Enterprise customers receive: + +- Priority support with guaranteed response times +- Named Customer Engineer for your account +- Shared Slack channel for direct communication +- Assistance with deployment, configuration, and optimization + +## OpenHands Deployment Options + +| Feature | Open Source | Cloud (SaaS) | Enterprise | +|---------|-------------|--------------|------------| +| **Deployment** | Local | Hosted SaaS | Self-hosted / Private Cloud | +| **Users** | 1 | 1 | Unlimited | +| **Data Location** | Your machine | OpenHands Cloud | Your infrastructure | +| **LLM Options** | BYOK | BYOK or OpenHands provider | BYOK | +| **SSO/SAML** | — | — | ✓ | +| **Multi-user RBAC** | — | — | ✓ | +| **Priority Support** | — | — | ✓ | + +## Getting Started + + + Ready to bring OpenHands to your organization? Contact our team to discuss + your requirements and get started with a deployment plan. + + +## Additional Resources + +- [OpenHands Documentation](/overview/introduction) — Learn how to use OpenHands +- [SDK Documentation](/sdk/index) — Build custom agents with the OpenHands SDK +- [Pricing](https://openhands.dev/pricing) — Compare all OpenHands plans From a8ce3569b27b116329fa4989c7fee78bde232615 Mon Sep 17 00:00:00 2001 From: openhands Date: Thu, 12 Mar 2026 12:59:59 +0000 Subject: [PATCH 2/2] Move Enterprise tab to last position in navigation Co-authored-by: openhands --- docs.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs.json b/docs.json index cdeda5fd..ac98e277 100644 --- a/docs.json +++ b/docs.json @@ -19,12 +19,6 @@ "favicon": "openhands/logo-square.png", "navigation": { "tabs": [ - { - "tab": "Enterprise", - "pages": [ - "enterprise/index" - ] - }, { "tab": "Documentation", "pages": [ @@ -402,6 +396,12 @@ ] } ] + }, + { + "tab": "Enterprise", + "pages": [ + "enterprise/index" + ] } ] },