All Skills
Sentry SDK Setup
Set up Sentry error monitoring, tracing, and session replay in any language or framework. This page helps you find the right SDK skill for your project.
How to Fetch Skills
Use curl to download skills — they are 10–20 KB files that fetch tools often summarize, losing critical details.
curl -sL https://skills.sentry.dev/sentry-nextjs-sdk/SKILL.md
Append the path from the Path column in the table below to https://skills.sentry.dev/. Do not guess or shorten URLs.
Start Here — Read This Before Doing Anything
Do not skip this section. Do not assume which SDK the user needs based on their project files. Do not start installing packages or creating config files until you have confirmed the user's intent.
- Detect the platform from project files (
package.json, go.mod, requirements.txt, Gemfile, *.csproj, build.gradle, etc.).
- Tell the user what you found and which SDK you recommend.
- Wait for confirmation before fetching the skill and proceeding.
Each SDK skill contains its own detection logic, prerequisites, and step-by-step configuration. Trust the skill — read it carefully and follow it. Do not improvise or take shortcuts.
SDK Skills
Platform Detection Priority
When multiple SDKs could match, prefer the more specific one:
- Android (
build.gradle with android plugin) → sentry-android-sdk
- NestJS (
@nestjs/core) → sentry-nestjs-sdk over sentry-node-sdk
- Next.js →
sentry-nextjs-sdk over sentry-react-sdk or sentry-node-sdk
- Flutter (
pubspec.yaml with flutter: dependency or sentry_flutter) → sentry-flutter-sdk
- React Native →
sentry-react-native-sdk over sentry-react-sdk
- PHP with Laravel or Symfony →
sentry-php-sdk
- Elixir (
mix.exs detected) → sentry-elixir-sdk
- Node.js / Bun / Deno without a specific framework →
sentry-node-sdk
- Browser JS (vanilla, jQuery, static sites) →
sentry-browser-sdk
- No match → direct user to Sentry Docs
Quick Lookup
Match your project to a skill by keywords. Append the path to https://skills.sentry.dev/ to fetch.
| Keywords |
Path |
| android, kotlin, java, jetpack compose |
sentry-android-sdk/SKILL.md |
| browser, vanilla js, javascript, jquery, cdn, wordpress, static site |
sentry-browser-sdk/SKILL.md |
| ios, macos, swift, cocoa, tvos, watchos, visionos, swiftui, uikit |
sentry-cocoa-sdk/SKILL.md |
| .net, csharp, c#, asp.net, maui, wpf, winforms, blazor, azure functions |
sentry-dotnet-sdk/SKILL.md |
| go, golang, gin, echo, fiber |
sentry-go-sdk/SKILL.md |
| elixir, phoenix, plug, oban |
sentry-elixir-sdk/SKILL.md |
| nestjs, nest |
sentry-nestjs-sdk/SKILL.md |
| nextjs, next.js, next |
sentry-nextjs-sdk/SKILL.md |
| node, nodejs, node.js, bun, deno, express, fastify, koa, hapi |
sentry-node-sdk/SKILL.md |
| php, laravel, symfony |
sentry-php-sdk/SKILL.md |
| python, django, flask, fastapi, celery, starlette |
sentry-python-sdk/SKILL.md |
| flutter, dart, pubspec |
sentry-flutter-sdk/SKILL.md |
| react native, expo |
sentry-react-native-sdk/SKILL.md |
| react, react router, tanstack, redux, vite |
sentry-react-sdk/SKILL.md |
| ruby, rails, sinatra, sidekiq, rack |
sentry-ruby-sdk/SKILL.md |
| svelte, sveltekit |
sentry-svelte-sdk/SKILL.md |
Finding the DSN
If the user doesn't have their DSN, guide them to find it:
- Open the Sentry project settings page:
https://sentry.io/settings/projects/
- Select the project
- Click "Client Keys (DSN)" in the left sidebar
- Copy the DSN
You can help the user open the page directly:
open https://sentry.io/settings/projects/ # macOS
xdg-open https://sentry.io/settings/projects/ # Linux
start https://sentry.io/settings/projects/ # Windows
Note: The DSN is public and safe to include in source code. It is not a secret — it only identifies where to send events.
Looking for workflows or feature configuration instead? See the full Skill Tree.
1---2name: sentry-sdk-setup3description: Set up Sentry in any language or framework. Detects the user's platform and loads the right SDK skill. Use when asked to add Sentry, install an SDK, or set up error monitoring in a project.4license: Apache-2.05---67> [All Skills](../../SKILL_TREE.md)89# Sentry SDK Setup1011Set up Sentry error monitoring, tracing, and session replay in any language or framework. This page helps you find the right SDK skill for your project.1213## How to Fetch Skills1415Use `curl` to download skills — they are 10–20 KB files that fetch tools often summarize, losing critical details.1617 curl -sL https://skills.sentry.dev/sentry-nextjs-sdk/SKILL.md1819Append the path from the `Path` column in the table below to `https://skills.sentry.dev/`. Do not guess or shorten URLs.2021## Start Here — Read This Before Doing Anything2223**Do not skip this section.** Do not assume which SDK the user needs based on their project files. Do not start installing packages or creating config files until you have confirmed the user's intent.24251. **Detect the platform** from project files (`package.json`, `go.mod`, `requirements.txt`, `Gemfile`, `*.csproj`, `build.gradle`, etc.).262. **Tell the user what you found** and which SDK you recommend.273. **Wait for confirmation** before fetching the skill and proceeding.2829Each SDK skill contains its own detection logic, prerequisites, and step-by-step configuration. Trust the skill — read it carefully and follow it. Do not improvise or take shortcuts.3031---3233## SDK Skills3435| Platform | Skill | Path |36|---|---|---|37| Android | [`sentry-android-sdk`](../sentry-android-sdk/SKILL.md) | `sentry-android-sdk/SKILL.md` |38| browser JavaScript | [`sentry-browser-sdk`](../sentry-browser-sdk/SKILL.md) | `sentry-browser-sdk/SKILL.md` |39| Apple platforms (iOS, macOS, tvOS, watchOS, visionOS) | [`sentry-cocoa-sdk`](../sentry-cocoa-sdk/SKILL.md) | `sentry-cocoa-sdk/SKILL.md` |40| .NET | [`sentry-dotnet-sdk`](../sentry-dotnet-sdk/SKILL.md) | `sentry-dotnet-sdk/SKILL.md` |41| Elixir | [`sentry-elixir-sdk`](../sentry-elixir-sdk/SKILL.md) | `sentry-elixir-sdk/SKILL.md` |42| Go | [`sentry-go-sdk`](../sentry-go-sdk/SKILL.md) | `sentry-go-sdk/SKILL.md` |43| NestJS | [`sentry-nestjs-sdk`](../sentry-nestjs-sdk/SKILL.md) | `sentry-nestjs-sdk/SKILL.md` |44| Next.js | [`sentry-nextjs-sdk`](../sentry-nextjs-sdk/SKILL.md) | `sentry-nextjs-sdk/SKILL.md` |45| Node.js, Bun, and Deno | [`sentry-node-sdk`](../sentry-node-sdk/SKILL.md) | `sentry-node-sdk/SKILL.md` |46| PHP | [`sentry-php-sdk`](../sentry-php-sdk/SKILL.md) | `sentry-php-sdk/SKILL.md` |47| Python | [`sentry-python-sdk`](../sentry-python-sdk/SKILL.md) | `sentry-python-sdk/SKILL.md` |48| Flutter and Dart | [`sentry-flutter-sdk`](../sentry-flutter-sdk/SKILL.md) | `sentry-flutter-sdk/SKILL.md` |49| React Native and Expo | [`sentry-react-native-sdk`](../sentry-react-native-sdk/SKILL.md) | `sentry-react-native-sdk/SKILL.md` |50| React | [`sentry-react-sdk`](../sentry-react-sdk/SKILL.md) | `sentry-react-sdk/SKILL.md` |51| Ruby | [`sentry-ruby-sdk`](../sentry-ruby-sdk/SKILL.md) | `sentry-ruby-sdk/SKILL.md` |52| Svelte and SvelteKit | [`sentry-svelte-sdk`](../sentry-svelte-sdk/SKILL.md) | `sentry-svelte-sdk/SKILL.md` |5354### Platform Detection Priority5556When multiple SDKs could match, prefer the more specific one:5758- **Android** (`build.gradle` with android plugin) → `sentry-android-sdk`59- **NestJS** (`@nestjs/core`) → `sentry-nestjs-sdk` over `sentry-node-sdk`60- **Next.js** → `sentry-nextjs-sdk` over `sentry-react-sdk` or `sentry-node-sdk`61- **Flutter** (`pubspec.yaml` with `flutter:` dependency or `sentry_flutter`) → `sentry-flutter-sdk`62- **React Native** → `sentry-react-native-sdk` over `sentry-react-sdk`63- **PHP** with Laravel or Symfony → `sentry-php-sdk`64- **Elixir** (`mix.exs` detected) → `sentry-elixir-sdk`65- **Node.js / Bun / Deno** without a specific framework → `sentry-node-sdk`66- **Browser JS** (vanilla, jQuery, static sites) → `sentry-browser-sdk`67- **No match** → direct user to [Sentry Docs](https://docs.sentry.io/platforms/)6869## Quick Lookup7071Match your project to a skill by keywords. Append the path to `https://skills.sentry.dev/` to fetch.7273| Keywords | Path |74|---|---|75| android, kotlin, java, jetpack compose | `sentry-android-sdk/SKILL.md` |76| browser, vanilla js, javascript, jquery, cdn, wordpress, static site | `sentry-browser-sdk/SKILL.md` |77| ios, macos, swift, cocoa, tvos, watchos, visionos, swiftui, uikit | `sentry-cocoa-sdk/SKILL.md` |78| .net, csharp, c#, asp.net, maui, wpf, winforms, blazor, azure functions | `sentry-dotnet-sdk/SKILL.md` |79| go, golang, gin, echo, fiber | `sentry-go-sdk/SKILL.md` |80| elixir, phoenix, plug, oban | `sentry-elixir-sdk/SKILL.md` |81| nestjs, nest | `sentry-nestjs-sdk/SKILL.md` |82| nextjs, next.js, next | `sentry-nextjs-sdk/SKILL.md` |83| node, nodejs, node.js, bun, deno, express, fastify, koa, hapi | `sentry-node-sdk/SKILL.md` |84| php, laravel, symfony | `sentry-php-sdk/SKILL.md` |85| python, django, flask, fastapi, celery, starlette | `sentry-python-sdk/SKILL.md` |86| flutter, dart, pubspec | `sentry-flutter-sdk/SKILL.md` |87| react native, expo | `sentry-react-native-sdk/SKILL.md` |88| react, react router, tanstack, redux, vite | `sentry-react-sdk/SKILL.md` |89| ruby, rails, sinatra, sidekiq, rack | `sentry-ruby-sdk/SKILL.md` |90| svelte, sveltekit | `sentry-svelte-sdk/SKILL.md` |9192---9394## Finding the DSN9596If the user doesn't have their DSN, guide them to find it:97981. Open the Sentry project settings page: `https://sentry.io/settings/projects/`992. Select the project1003. Click **"Client Keys (DSN)"** in the left sidebar1014. Copy the DSN102103You can help the user open the page directly:104```bash105open https://sentry.io/settings/projects/ # macOS106xdg-open https://sentry.io/settings/projects/ # Linux107start https://sentry.io/settings/projects/ # Windows108```109110> **Note:** The DSN is public and safe to include in source code. It is not a secret — it only identifies where to send events.111112---113114Looking for workflows or feature configuration instead? See the [full Skill Tree](../../SKILL_TREE.md).