From 65f10535a43a61e115b4816ffbd7aedad9d25088 Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Wed, 22 Oct 2025 11:04:36 -0400 Subject: [PATCH] revert changes to app.openhands.dev --- docs.json | 2 +- openapi/openapi.json | 4 ++-- openhands/usage/cloud/bitbucket-installation.mdx | 2 +- openhands/usage/cloud/cloud-api.mdx | 14 +++++++------- openhands/usage/cloud/github-installation.mdx | 2 +- openhands/usage/cloud/gitlab-installation.mdx | 2 +- openhands/usage/cloud/openhands-cloud.mdx | 2 +- .../project-management/jira-dc-integration.mdx | 4 ++-- .../cloud/project-management/jira-integration.mdx | 4 ++-- .../project-management/linear-integration.mdx | 4 ++-- openhands/usage/cloud/slack-installation.mdx | 2 +- openhands/usage/quick-start.mdx | 2 +- openhands/usage/run-openhands/local-setup.mdx | 2 +- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs.json b/docs.json index d78eaec4..3c37c3de 100644 --- a/docs.json +++ b/docs.json @@ -274,7 +274,7 @@ }, { "anchor": "OpenHands Cloud", - "href": "https://app.openhands.dev", + "href": "https://app.all-hands.dev", "icon": "cloud" } ] diff --git a/openapi/openapi.json b/openapi/openapi.json index 7c808d37..ab522e2f 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -3931,7 +3931,7 @@ }, "servers": [ { - "url": "https://app.openhands.dev", + "url": "https://app.all-hands.dev", "description": "Production server" }, { @@ -3939,4 +3939,4 @@ "description": "Local development server" } ] -} \ No newline at end of file +} diff --git a/openhands/usage/cloud/bitbucket-installation.mdx b/openhands/usage/cloud/bitbucket-installation.mdx index 092b3d96..eeca4753 100644 --- a/openhands/usage/cloud/bitbucket-installation.mdx +++ b/openhands/usage/cloud/bitbucket-installation.mdx @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl ## Prerequisites -- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a Bitbucket account](/openhands/usage/cloud/openhands-cloud). +- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a Bitbucket account](/openhands/usage/cloud/openhands-cloud). ## Adding Bitbucket Repository Access diff --git a/openhands/usage/cloud/cloud-api.mdx b/openhands/usage/cloud/cloud-api.mdx index e34ec15d..a081c8ae 100644 --- a/openhands/usage/cloud/cloud-api.mdx +++ b/openhands/usage/cloud/cloud-api.mdx @@ -11,8 +11,8 @@ For the available API endpoints, refer to the To use the OpenHands Cloud API, you'll need to generate an API key: -1. Log in to your [OpenHands Cloud](https://app.openhands.dev) account. -2. Navigate to the [Settings > API Keys](https://app.openhands.dev/settings/api-keys) page. +1. Log in to your [OpenHands Cloud](https://app.all-hands.dev) account. +2. Navigate to the [Settings > API Keys](https://app.all-hands.dev/settings/api-keys) page. 3. Click `Create API Key`. 4. Give your key a descriptive name (Example: "Development" or "Production") and select `Create`. 5. Copy the generated API key and store it securely. It will only be shown once. @@ -27,7 +27,7 @@ To start a new conversation with OpenHands to perform a task, ```bash - curl -X POST "https://app.openhands.dev/api/conversations" \ + curl -X POST "https://app.all-hands.dev/api/conversations" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -41,7 +41,7 @@ To start a new conversation with OpenHands to perform a task, import requests api_key = "YOUR_API_KEY" - url = "https://app.openhands.dev/api/conversations" + url = "https://app.all-hands.dev/api/conversations" headers = { "Authorization": f"Bearer {api_key}", @@ -56,14 +56,14 @@ To start a new conversation with OpenHands to perform a task, response = requests.post(url, headers=headers, json=data) conversation = response.json() - print(f"Conversation Link: https://app.openhands.dev/conversations/{conversation['conversation_id']}") + print(f"Conversation Link: https://app.all-hands.dev/conversations/{conversation['conversation_id']}") print(f"Status: {conversation['status']}") ``` ```typescript const apiKey = "YOUR_API_KEY"; - const url = "https://app.openhands.dev/api/conversations"; + const url = "https://app.all-hands.dev/api/conversations"; const headers = { "Authorization": `Bearer ${apiKey}`, @@ -85,7 +85,7 @@ To start a new conversation with OpenHands to perform a task, const conversation = await response.json(); - console.log(`Conversation Link: https://app.openhands.dev/conversations/${conversation.id}`); + console.log(`Conversation Link: https://app.all-hands.dev/conversations/${conversation.id}`); console.log(`Status: ${conversation.status}`); return conversation; diff --git a/openhands/usage/cloud/github-installation.mdx b/openhands/usage/cloud/github-installation.mdx index 1a7dc489..ce4a5de9 100644 --- a/openhands/usage/cloud/github-installation.mdx +++ b/openhands/usage/cloud/github-installation.mdx @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl ## Prerequisites -- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a GitHub account](/openhands/usage/cloud/openhands-cloud). +- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a GitHub account](/openhands/usage/cloud/openhands-cloud). ## Adding GitHub Repository Access diff --git a/openhands/usage/cloud/gitlab-installation.mdx b/openhands/usage/cloud/gitlab-installation.mdx index 11f55079..94364992 100644 --- a/openhands/usage/cloud/gitlab-installation.mdx +++ b/openhands/usage/cloud/gitlab-installation.mdx @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl ## Prerequisites -- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a GitLab account](/openhands/usage/cloud/openhands-cloud). +- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a GitLab account](/openhands/usage/cloud/openhands-cloud). ## Adding GitLab Repository Access diff --git a/openhands/usage/cloud/openhands-cloud.mdx b/openhands/usage/cloud/openhands-cloud.mdx index 7276b037..022ecbd4 100644 --- a/openhands/usage/cloud/openhands-cloud.mdx +++ b/openhands/usage/cloud/openhands-cloud.mdx @@ -6,7 +6,7 @@ description: Getting started with OpenHands Cloud. ## Accessing OpenHands Cloud OpenHands Cloud is the hosted cloud version of OpenHands. To get started with OpenHands Cloud, -visit [app.all-hands.dev](https://app.openhands.dev). +visit [app.all-hands.dev](https://app.all-hands.dev). You'll be prompted to connect with your GitHub, GitLab or Bitbucket account: diff --git a/openhands/usage/cloud/project-management/jira-dc-integration.mdx b/openhands/usage/cloud/project-management/jira-dc-integration.mdx index d290805a..c7ce4c06 100644 --- a/openhands/usage/cloud/project-management/jira-dc-integration.mdx +++ b/openhands/usage/cloud/project-management/jira-dc-integration.mdx @@ -43,7 +43,7 @@ description: Complete guide for setting up Jira Data Center integration with Ope - Go to **Administration** > **System** > **WebHooks** - Click **Create a WebHook** - **Name**: `OpenHands Cloud Integration` - - **URL**: `https://app.openhands.dev/integration/jira-dc/events` + - **URL**: `https://app.all-hands.dev/integration/jira-dc/events` - Set a suitable webhook secret - **Issue related events**: Select the following: - Issue updated @@ -59,7 +59,7 @@ description: Complete guide for setting up Jira Data Center integration with Ope ### Step 1: Log in to OpenHands Cloud 1. **Navigate and Authenticate** - - Go to [OpenHands Cloud](https://app.openhands.dev/) + - Go to [OpenHands Cloud](https://app.all-hands.dev/) - Sign in with your Git provider (GitHub, GitLab, or BitBucket) - **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on. diff --git a/openhands/usage/cloud/project-management/jira-integration.mdx b/openhands/usage/cloud/project-management/jira-integration.mdx index 498104d2..6cdd567d 100644 --- a/openhands/usage/cloud/project-management/jira-integration.mdx +++ b/openhands/usage/cloud/project-management/jira-integration.mdx @@ -47,7 +47,7 @@ description: Complete guide for setting up Jira Cloud integration with OpenHands 2. **Configure Webhook** - **Name**: `OpenHands Cloud Integration` - **Status**: Enabled - - **URL**: `https://app.openhands.dev/integration/jira/events` + - **URL**: `https://app.all-hands.dev/integration/jira/events` - **Issue related events**: Select the following: - Issue updated - Comment created @@ -62,7 +62,7 @@ description: Complete guide for setting up Jira Cloud integration with OpenHands ### Step 1: Log in to OpenHands Cloud 1. **Navigate and Authenticate** - - Go to [OpenHands Cloud](https://app.openhands.dev/) + - Go to [OpenHands Cloud](https://app.all-hands.dev/) - Sign in with your Git provider (GitHub, GitLab, or BitBucket) - **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on. diff --git a/openhands/usage/cloud/project-management/linear-integration.mdx b/openhands/usage/cloud/project-management/linear-integration.mdx index 386dde8b..4887df50 100644 --- a/openhands/usage/cloud/project-management/linear-integration.mdx +++ b/openhands/usage/cloud/project-management/linear-integration.mdx @@ -48,7 +48,7 @@ description: Complete guide for setting up Linear integration with OpenHands Clo 2. **Configure Webhook** - **Label**: `OpenHands Cloud Integration` - - **URL**: `https://app.openhands.dev/integration/linear/events` + - **URL**: `https://app.all-hands.dev/integration/linear/events` - **Resource types**: Select: - `Comment` - For comment events - `Issue` - For issue updates (label changes) @@ -63,7 +63,7 @@ description: Complete guide for setting up Linear integration with OpenHands Clo ### Step 1: Log in to OpenHands Cloud 1. **Navigate and Authenticate** - - Go to [OpenHands Cloud](https://app.openhands.dev/) + - Go to [OpenHands Cloud](https://app.all-hands.dev/) - Sign in with your Git provider (GitHub, GitLab, or BitBucket) - **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on. diff --git a/openhands/usage/cloud/slack-installation.mdx b/openhands/usage/cloud/slack-installation.mdx index 29e8ca93..8ed86325 100644 --- a/openhands/usage/cloud/slack-installation.mdx +++ b/openhands/usage/cloud/slack-installation.mdx @@ -41,7 +41,7 @@ validate critical information independently. **Make sure your Slack workspace admin/owner has installed OpenHands Slack App first.** Every user in the Slack workspace (including admins/owners) must link their OpenHands Cloud account to the OpenHands Slack App. To do this: - 1. Visit the [Settings > Integrations](https://app.openhands.dev/settings/integrations) page in OpenHands Cloud. + 1. Visit the [Settings > Integrations](https://app.all-hands.dev/settings/integrations) page in OpenHands Cloud. 2. Click `Install OpenHands Slack App`. 3. In the top right corner, select the workspace to install the OpenHands Slack app. 4. Review permissions and click allow. diff --git a/openhands/usage/quick-start.mdx b/openhands/usage/quick-start.mdx index 1209f5ac..196ae5a3 100644 --- a/openhands/usage/quick-start.mdx +++ b/openhands/usage/quick-start.mdx @@ -8,7 +8,7 @@ icon: rocket The easiest way to get started with OpenHands is on OpenHands Cloud, which comes with $20 in free credits for new users. - To get started with OpenHands Cloud, visit [app.all-hands.dev](https://app.openhands.dev). + To get started with OpenHands Cloud, visit [app.all-hands.dev](https://app.all-hands.dev). For more information see [getting started with OpenHands Cloud.](/openhands/usage/cloud/openhands-cloud) diff --git a/openhands/usage/run-openhands/local-setup.mdx b/openhands/usage/run-openhands/local-setup.mdx index 73c2a4a4..b665184b 100644 --- a/openhands/usage/run-openhands/local-setup.mdx +++ b/openhands/usage/run-openhands/local-setup.mdx @@ -153,7 +153,7 @@ OpenHands requires an API key to access most language models. Here's how to get -1. [Log in to OpenHands Cloud](https://app.openhands.dev). +1. [Log in to OpenHands Cloud](https://app.all-hands.dev). 2. Go to the Settings page and navigate to the `API Keys` tab. 3. Copy your `LLM API Key`.