ionic-sentry
Installation
SKILL.md
Sentry (Crash + Error Reporting)
@sentry/capacitor captures native iOS / Android crashes; the framework SDK (@sentry/angular / @sentry/react / @sentry/vue) captures JS errors, breadcrumbs, and performance traces. Install both — they integrate via a single init() call.
When to consult
- Setup, init, and per-framework integration: setup.md
Hard rules
- ✅ Init Sentry as the first thing in app bootstrap, before any other code can throw.
- ✅ Set the
releasevalue to your app version (e.g., frompackage.json) so source maps / releases line up in the Sentry dashboard. - ✅ Set
environment: 'production'|'staging'|'development'from the build mode so you can filter. - ✅ Upload source maps as part of the build pipeline — without them, JS stack traces are unreadable.
- ❌ Don't send PII (emails, full names, IPs) unless you've enabled the privacy controls and have legal sign-off.
- ❌ Don't init twice —
@sentry/capacitorwraps the framework SDK; calling both init's separately double-reports everything.
Library
npm install @sentry/capacitor @sentry/angular # for Angular
npm install @sentry/capacitor @sentry/react # for React
npm install @sentry/capacitor @sentry/vue # for Vue
npx cap sync