From deb33cc10cf0039c30ac4c3a24eacb6c5da527bf Mon Sep 17 00:00:00 2001 From: Jenn Mueng <30991498+jennmueng@users.noreply.github.com> Date: Thu, 13 Nov 2025 03:37:04 +0700 Subject: [PATCH] ref(cursor): Rename Cursor Background Agent to Cursor Cloud Agent Update integration description and feature text to reflect rebranding from 'Cursor Background Agent' to 'Cursor Cloud Agent'. --- src/sentry/integrations/cursor/integration.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sentry/integrations/cursor/integration.py b/src/sentry/integrations/cursor/integration.py index d5c402cf48b798..02ed1111b40559 100644 --- a/src/sentry/integrations/cursor/integration.py +++ b/src/sentry/integrations/cursor/integration.py @@ -26,11 +26,11 @@ from sentry.models.apitoken import generate_token from sentry.shared_integrations.exceptions import IntegrationError -DESCRIPTION = "Connect your Sentry organization with Cursor Background Agents." +DESCRIPTION = "Connect your Sentry organization with Cursor Cloud Agents." FEATURES = [ FeatureDescription( - "Launch Cursor Background Agents via Seer to fix issues.", + "Launch Cursor Cloud Agents via Seer to fix issues.", IntegrationFeatures.CODING_AGENT, ), ] @@ -128,7 +128,7 @@ def get_organization_config(self) -> list[dict[str, Any]]: "name": "api_key", "type": "secret", "label": _("Cursor API Key"), - "help": _("Update the API key used by Cursor Background Agents."), + "help": _("Update the API key used by Cursor Cloud Agents."), "required": True, "placeholder": "***********************", }