From 34bc8f170588d587d91d73a70fb265c5f3c9d6f1 Mon Sep 17 00:00:00 2001
From: Nicolas Hrubec
Date: Wed, 23 Sep 2026 11:40:11 +0200
Subject: [PATCH 1/3] docs: Point framework SDK READMEs to documentation
Co-Authored-By: GPT-6
---
packages/nextjs/README.md | 50 ++++----------------------
packages/nuxt/README.md | 27 ++++----------
packages/sveltekit/README.md | 33 ++++-------------
packages/tanstackstart-react/README.md | 43 +++++-----------------
4 files changed, 29 insertions(+), 124 deletions(-)
diff --git a/packages/nextjs/README.md b/packages/nextjs/README.md
index ded7bdafb966..6b636cfc0e91 100644
--- a/packages/nextjs/README.md
+++ b/packages/nextjs/README.md
@@ -10,50 +10,14 @@
[](https://www.npmjs.com/package/@sentry/nextjs)
[](https://www.npmjs.com/package/@sentry/nextjs)
-> See the [Official Sentry Next.js SDK Docs](https://docs.sentry.io/platforms/javascript/guides/nextjs/) to get started.
+The official Sentry SDK for monitoring Next.js applications.
-## Compatibility
+## Documentation
-Currently, the minimum supported version of Next.js is `14.0.0`.
+- [Getting started](https://docs.sentry.io/platforms/javascript/guides/nextjs/)
+- [Configuration](https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/)
-## Installation
+## Support
-To get started installing the SDK, use the Sentry Next.js Wizard by running the following command in your terminal or
-read the [Getting Started Docs](https://docs.sentry.io/platforms/javascript/guides/nextjs/):
-
-```sh
-npx @sentry/wizard@latest -i nextjs
-```
-
-The wizard will prompt you to log in to Sentry. After the wizard setup is completed, the SDK will automatically capture
-unhandled errors, and monitor performance.
-
-## Custom Usage
-
-To set context information or to send manual events, you can use `@sentry/nextjs` as follows:
-
-```ts
-import * as Sentry from '@sentry/nextjs';
-
-// Set user information, as well as tags and further extras
-Sentry.setTag('user_mode', 'admin');
-Sentry.setUser({ id: '4711' });
-Sentry.setContext('application_area', { location: 'checkout' });
-
-// Add a breadcrumb for future events
-Sentry.addBreadcrumb({
- message: '"Add to cart" clicked',
- // ...
-});
-
-// Capture exceptions or messages
-Sentry.captureException(new Error('Oh no.'));
-Sentry.captureMessage('Hello, world!');
-```
-
-## Links
-
-- [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/nextjs/)
-- [Sentry.io](https://sentry.io/?utm_source=github&utm_medium=npm_nextjs)
-- [Sentry Discord Server](https://discord.gg/Ww9hbqr)
-- [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry)
+- [Report a bug](https://github.com/getsentry/sentry-javascript/issues/new/choose)
+- [Contributing](https://github.com/getsentry/sentry-javascript/blob/develop/CONTRIBUTING.md)
diff --git a/packages/nuxt/README.md b/packages/nuxt/README.md
index 2c90dcc21d93..21ee6ade1d1c 100644
--- a/packages/nuxt/README.md
+++ b/packages/nuxt/README.md
@@ -10,27 +10,14 @@
[](https://www.npmjs.com/package/@sentry/nuxt)
[](https://www.npmjs.com/package/@sentry/nuxt)
-This SDK is for [Nuxt](https://nuxt.com/). If you're using [Vue](https://vuejs.org/) see our
-[Vue SDK here](https://github.com/getsentry/sentry-javascript/tree/develop/packages/vue).
+The official Sentry SDK for monitoring Nuxt applications.
-## Setup Instructions and Documentation
+## Documentation
-Check out the [Official Nuxt SDK Docs](https://docs.sentry.io/platforms/javascript/guides/nuxt/) for further information on configuration and usage.
+- [Getting started](https://docs.sentry.io/platforms/javascript/guides/nuxt/)
+- [Configuration](https://docs.sentry.io/platforms/javascript/guides/nuxt/configuration/)
-## Compatibility
+## Support
-The minimum supported version of Nuxt is `3.7.0` (`3.14.0+` recommended).
-
-## General
-
-This package is a wrapper around `@sentry/node` for the server and `@sentry/vue` for the client side, with added
-functionality related to Nuxt.
-
-## Troubleshoot
-
-If your server-side auto-instrumentation stops recording spans after bundling (e.g. certain Nitro
-presets), make sure `@sentry/server-runtime-injection` is kept **external** in the Nitro/server build rather than
-inlined, as its runtime module hook must resolve from `node_modules`. `@sentry/node` logs a warning
-the first time an instrumented dependency loads uninstrumented.
-
-If you encounter any issues with error tracking or integrations, refer to the official [Sentry Nuxt SDK documentation](https://docs.sentry.io/platforms/javascript/guides/nuxt/). If the documentation does not provide the necessary information, consider opening an issue on GitHub.
+- [Report a bug](https://github.com/getsentry/sentry-javascript/issues/new/choose)
+- [Contributing](https://github.com/getsentry/sentry-javascript/blob/develop/CONTRIBUTING.md)
diff --git a/packages/sveltekit/README.md b/packages/sveltekit/README.md
index a7a51e695255..5a8fa50ff780 100644
--- a/packages/sveltekit/README.md
+++ b/packages/sveltekit/README.md
@@ -10,33 +10,14 @@
[](https://www.npmjs.com/package/@sentry/sveltekit)
[](https://www.npmjs.com/package/@sentry/sveltekit)
-## Compatibility
+The official Sentry SDK for monitoring SvelteKit applications.
-The minimum supported version of SvelteKit is `2.0.0`. The SDK works best with Vite 4.2 and newer. Older Vite versions
-might not generate source maps correctly.
+## Documentation
-Check our docs for [SvelteKit adapter](https://docs.sentry.io/platforms/javascript/guides/sveltekit/#prerequisites) compatibility.
+- [Getting started](https://docs.sentry.io/platforms/javascript/guides/sveltekit/)
+- [Configuration](https://docs.sentry.io/platforms/javascript/guides/sveltekit/configuration/)
-## General
+## Support
-This package is a wrapper around `@sentry/node` for the server and `@sentry/svelte` for the client side, with added
-functionality related to SvelteKit.
-
-## Installation
-
-To get started installing the SDK, use the Sentry Next.js Wizard by running the following command in your terminal or
-read the [Getting Started Docs](https://docs.sentry.io/platforms/javascript/guides/sveltekit/):
-
-```sh
-npx @sentry/wizard@latest -i sveltekit
-```
-
-The wizard will guide you throuhg logging in to Sentry and setting up the SDK. After the wizard setup is completed, the SDK will automatically capture
-unhandled errors, and optionally, traces and replays.
-
-## Links
-
-- [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/sveltekit/)
-- [Sentry.io](https://sentry.io/?utm_source=github&utm_medium=npm_sveltekit)
-- [Sentry Discord Server](https://discord.gg/Ww9hbqr)
-- [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry)
+- [Report a bug](https://github.com/getsentry/sentry-javascript/issues/new/choose)
+- [Contributing](https://github.com/getsentry/sentry-javascript/blob/develop/CONTRIBUTING.md)
diff --git a/packages/tanstackstart-react/README.md b/packages/tanstackstart-react/README.md
index d2eebec0b5b8..bc2135b6033a 100644
--- a/packages/tanstackstart-react/README.md
+++ b/packages/tanstackstart-react/README.md
@@ -4,47 +4,20 @@
-# Official Sentry SDK for TanStack Start React (Beta)
+# Official Sentry SDK for TanStack Start React
[](https://www.npmjs.com/package/@sentry/tanstackstart-react)
[](https://www.npmjs.com/package/@sentry/tanstackstart-react)
[](https://www.npmjs.com/package/@sentry/tanstackstart-react)
-> This SDK is currently in **BETA**. Beta features are still in progress and may have bugs. Please reach out on
-> [GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns.
+The official Sentry SDK for monitoring TanStack Start React applications.
-> See the [Official Sentry TanStack Start SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/) to get started.
+## Documentation
-## Compatibility
+- [Getting started](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/)
+- [Configuration](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/configuration/)
-The minimum supported version of TanStack Start is `1.111.12`.
+## Support
-## Custom Usage
-
-To set context information or to send manual events, you can use `@sentry/tanstackstart-react` as follows:
-
-```ts
-import * as Sentry from '@sentry/tanstackstart-react';
-
-// Set user information, as well as tags and further extras
-Sentry.setTag('user_mode', 'admin');
-Sentry.setUser({ id: '4711' });
-Sentry.setContext('application_area', { location: 'checkout' });
-
-// Add a breadcrumb for future events
-Sentry.addBreadcrumb({
- message: '"Add to cart" clicked',
- // ...
-});
-
-// Capture exceptions or messages
-Sentry.captureException(new Error('Oh no.'));
-Sentry.captureMessage('Hello, world!');
-```
-
-## Links
-
-- [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/)
-- [Sentry.io](https://sentry.io/?utm_source=github&utm_medium=npm_tanstackstartreact)
-- [Sentry Discord Server](https://discord.gg/Ww9hbqr)
-- [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry)
+- [Report a bug](https://github.com/getsentry/sentry-javascript/issues/new/choose)
+- [Contributing](https://github.com/getsentry/sentry-javascript/blob/develop/CONTRIBUTING.md)
From a8482bfaebbf760b19666da6192a2763d53197d7 Mon Sep 17 00:00:00 2001
From: Nicolas Hrubec
Date: Wed, 23 Sep 2026 11:47:39 +0200
Subject: [PATCH 2/3] docs: Add missing framework feature documentation links
Co-Authored-By: GPT-6
---
packages/nuxt/README.md | 1 +
packages/tanstackstart-react/README.md | 1 +
2 files changed, 2 insertions(+)
diff --git a/packages/nuxt/README.md b/packages/nuxt/README.md
index 21ee6ade1d1c..3c4991675895 100644
--- a/packages/nuxt/README.md
+++ b/packages/nuxt/README.md
@@ -16,6 +16,7 @@ The official Sentry SDK for monitoring Nuxt applications.
- [Getting started](https://docs.sentry.io/platforms/javascript/guides/nuxt/)
- [Configuration](https://docs.sentry.io/platforms/javascript/guides/nuxt/configuration/)
+- [Nuxt-specific features](https://docs.sentry.io/platforms/javascript/guides/nuxt/features/)
## Support
diff --git a/packages/tanstackstart-react/README.md b/packages/tanstackstart-react/README.md
index bc2135b6033a..d3be60575dde 100644
--- a/packages/tanstackstart-react/README.md
+++ b/packages/tanstackstart-react/README.md
@@ -16,6 +16,7 @@ The official Sentry SDK for monitoring TanStack Start React applications.
- [Getting started](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/)
- [Configuration](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/configuration/)
+- [TanStack Start React-specific features](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/features/)
## Support
From b7de87e9ed4855b94d3e3735936f81ebe1adc909 Mon Sep 17 00:00:00 2001
From: Nicolas Hrubec
Date: Wed, 23 Sep 2026 12:32:52 +0200
Subject: [PATCH 3/3] docs: Preserve SDK alpha and beta notices
Co-Authored-By: GPT-6
---
packages/tanstackstart-react/README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/packages/tanstackstart-react/README.md b/packages/tanstackstart-react/README.md
index d3be60575dde..c16a1d85d7fa 100644
--- a/packages/tanstackstart-react/README.md
+++ b/packages/tanstackstart-react/README.md
@@ -4,7 +4,7 @@
-# Official Sentry SDK for TanStack Start React
+# Official Sentry SDK for TanStack Start React (Beta)
[](https://www.npmjs.com/package/@sentry/tanstackstart-react)
[](https://www.npmjs.com/package/@sentry/tanstackstart-react)
@@ -12,6 +12,9 @@
The official Sentry SDK for monitoring TanStack Start React applications.
+> This SDK is currently in **BETA**. Beta features are still in progress and may have bugs. Please reach out on
+> [GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns.
+
## Documentation
- [Getting started](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/)