From 38010a997b5a67484c7ef8ad19a6957c4c955df8 Mon Sep 17 00:00:00 2001 From: Kevin Niparko Date: Mon, 9 Feb 2026 18:26:16 -0800 Subject: [PATCH 1/2] Add .cursor-plugin/plugin.json for updated plugin manifest Adds the new `.cursor-plugin/plugin.json` manifest with updated fields (homepage, repository) and restructured author metadata to align with the latest Cursor plugin spec. Co-authored-by: Cursor --- .cursor-plugin/plugin.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .cursor-plugin/plugin.json diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json new file mode 100644 index 0000000..dc1e615 --- /dev/null +++ b/.cursor-plugin/plugin.json @@ -0,0 +1,24 @@ +{ + "name": "browserstack", + "version": "1.0.0", + "description": "BrowserStack integration for Cursor. Test websites and mobile apps on real devices, run automated tests, debug failures, and manage test cases—all using natural language.", + "author": { + "name": "BrowserStack", + "email": "support@browserstack.com" + }, + "homepage": "https://www.browserstack.com", + "repository": "https://github.com/browserstack/browserstack-cursor-plugin", + "keywords": [ + "browserstack", + "testing", + "automation", + "accessibility", + "quality-assurance", + "playwright", + "selenium", + "manual-testing", + "app-testing", + "real-devices" + ], + "logo": "assets/logo.svg" +} From d3e759d4bfa67102115597aaebc37bba20016eda Mon Sep 17 00:00:00 2001 From: Kevin Niparko Date: Mon, 9 Feb 2026 18:46:02 -0800 Subject: [PATCH 2/2] Remove .cursor/plugin.json in favor of .cursor-plugin/plugin.json The plugin manifest has moved to the new `.cursor-plugin/` directory. The old `.cursor/plugin.json` is no longer needed. Co-authored-by: Cursor --- .cursor/plugin.json | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .cursor/plugin.json diff --git a/.cursor/plugin.json b/.cursor/plugin.json deleted file mode 100644 index 660f22d..0000000 --- a/.cursor/plugin.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "browserstack", - "version": "1.0.0", - "description": "BrowserStack integration for Cursor. Test websites and mobile apps on real devices, run automated tests, debug failures, and manage test cases—all using natural language.", - "author": { - "name": "BrowserStack", - "email": "support@browserstack.com", - "url": "https://www.browserstack.com" - }, - "keywords": [ - "browserstack", - "testing", - "automation", - "accessibility", - "quality-assurance", - "playwright", - "selenium", - "manual-testing", - "app-testing", - "real-devices" - ], - "logo": "https://d2ogrdw2mh0rsl.cloudfront.net/production/images/static/header/header-logo.svg", - "primaryColor": "#0070f0" -}