skills/sentry-sdk-setup/SKILL.md
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.
npx skillsauth add getsentry/sentry-for-claude sentry-sdk-setupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
All Skills
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.
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.
package.json, go.mod, requirements.txt, Gemfile, *.csproj, build.gradle, etc.).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.
| Platform | Skill |
|---|---|
| Android | sentry-android-sdk |
| browser JavaScript | sentry-browser-sdk |
| Cloudflare Workers and Pages | sentry-cloudflare-sdk |
| Apple platforms (iOS, macOS, tvOS, watchOS, visionOS) | sentry-cocoa-sdk |
| .NET | sentry-dotnet-sdk |
| Elixir | sentry-elixir-sdk |
| Go | sentry-go-sdk |
| NestJS | sentry-nestjs-sdk |
| Next.js | sentry-nextjs-sdk |
| Node.js, Bun, and Deno | sentry-node-sdk |
| PHP | sentry-php-sdk |
| Python | sentry-python-sdk |
| Flutter and Dart | sentry-flutter-sdk |
| React Native and Expo | sentry-react-native-sdk |
| React | sentry-react-sdk |
| React Router Framework | sentry-react-router-framework-sdk |
| TanStack Start React | sentry-tanstack-start-sdk |
| Ruby | sentry-ruby-sdk |
| Svelte and SvelteKit | sentry-svelte-sdk |
When multiple SDKs could match, prefer the more specific one:
build.gradle with android plugin) → sentry-android-sdkwrangler.toml or wrangler.jsonc) → sentry-cloudflare-sdk over sentry-node-sdk@nestjs/core) → sentry-nestjs-sdk over sentry-node-sdksentry-nextjs-sdk over sentry-react-sdk or sentry-node-sdk@sentry/react-router or @react-router/*) → sentry-react-router-framework-sdk over sentry-react-sdk@tanstack/react-start) → sentry-tanstack-start-sdk over sentry-react-sdkpubspec.yaml with flutter: dependency or sentry_flutter) → sentry-flutter-sdksentry-react-native-sdk over sentry-react-sdksentry-php-sdkmix.exs detected) → sentry-elixir-sdksentry-node-sdksentry-browser-sdkMatch your project to a skill by keywords.
| Keywords | Skill |
|---|---|
| android, kotlin, java, jetpack compose | sentry-android-sdk |
| browser, vanilla js, javascript, jquery, cdn, wordpress, static site | sentry-browser-sdk |
| cloudflare, cloudflare workers, cloudflare pages, wrangler, durable objects, d1 | sentry-cloudflare-sdk |
| ios, macos, swift, cocoa, tvos, watchos, visionos, swiftui, uikit | sentry-cocoa-sdk |
| .net, csharp, c#, asp.net, maui, wpf, winforms, blazor, azure functions | sentry-dotnet-sdk |
| go, golang, gin, echo, fiber | sentry-go-sdk |
| elixir, phoenix, plug, oban | sentry-elixir-sdk |
| nestjs, nest | sentry-nestjs-sdk |
| nextjs, next.js, next | sentry-nextjs-sdk |
| node, nodejs, node.js, bun, deno, express, fastify, koa, hapi | sentry-node-sdk |
| php, laravel, symfony | sentry-php-sdk |
| python, django, flask, fastapi, celery, starlette | sentry-python-sdk |
| flutter, dart, pubspec | sentry-flutter-sdk |
| react native, expo | sentry-react-native-sdk |
| react, react router, tanstack, redux, vite | sentry-react-sdk |
| react-router framework, @sentry/react-router, @react-router/dev, react-router reveal | sentry-react-router-framework-sdk |
| tanstack start, tanstack react start, @tanstack/react-start, tanstackstart-react | sentry-tanstack-start-sdk |
| ruby, rails, sinatra, sidekiq, rack | sentry-ruby-sdk |
| svelte, sveltekit | sentry-svelte-sdk |
If the user doesn't have their DSN, guide them to find it:
https://sentry.io/settings/projects/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.
development
Migrate JavaScript SDK to Sentry span streaming (span-first trace lifecycle). Use when asked to "enable span streaming", "migrate to span streaming", "use traceLifecycle stream", "add spanStreamingIntegration", or switch from transaction-based to streamed span delivery in a JavaScript project.
development
Migrate Python SDK to Sentry span streaming (span-first trace lifecycle). Use when asked to "enable span streaming", "migrate to span streaming", "use trace_lifecycle stream", or switch from transaction-based to streamed span delivery in a Python project.
development
Keep Sentry SDKs up to date. Use when asked to upgrade the Sentry SDK across major versions, migrate SDK versions, or fix deprecated APIs.
testing
Full Sentry Snapshots setup for Apple/Cocoa projects. Use when asked to "setup SnapshotPreviews", "setup Apple snapshot testing", "upload Apple snapshots to Sentry", "setup Apple snapshot GitHub Actions", or "setup Apple selective snapshot testing".