Borrowing it
Nothing to install: this file belongs to satanyakiv/NutriSport. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/satanyakiv/NutriSport/main/.claude/skills/sentry-setup/SKILL.mdgit clone --depth 1 https://github.com/satanyakiv/NutriSportWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/satanyakiv/nutrisport/sentry-setup)<a href="https://agentmods.dev/skills/satanyakiv/nutrisport/sentry-setup"><img src="https://agentmods.dev/badge/skills/satanyakiv/nutrisport/sentry-setup.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00161 | $0.02125 |
| Opus 5 | $0.00081 | $0.01063 |
| Sonnet 5 | $0.00032 | $0.00425 |
| Haiku 4.5 | $0.00016 | $0.00213 |
Grade A, and why
sentry-setup scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sL https://sentry.io/get-cli/ | INSTALL_DIR=/usr/local/bin bash How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sentry Setup for KMP (Android + iOS)
A field-tested recipe for wiring Sentry into a Kotlin Multiplatform + Compose Multiplatform project with one shared init path, PII scrubbing, symbol upload, and a crash smoke test. The unified sentry-kotlin-multiplatform SDK means you write Sentry.init { } once in commonMain and both platforms use it.
Step 0 — Decide the crash-reporting posture
Sentry can either replace Firebase Crashlytics or run alongside it. Pick deliberately and record it in an ADR, because the choice changes what you remove.
- Exclusive (migrate off Crashlytics). Sentry becomes the only crash/error backend. Remove the Crashlytics Gradle plugin, its init/Strategy, and any
ComponentRegistrarkeep rule. One backend, one dashboard, simplest mental model. - Coexist (dual). Keep Crashlytics and add Sentry. Justify why in the ADR so it reads as intentional, not indecisive — e.g. Sentry for unified cross-platform errors + release health + PII-scrubbed events + performance, Crashlytics for the Firebase-native crash channel and Google ecosystem integration. Both initialize independently; no dedup is required because they ship to different backends.
Everything below is identical for both postures except the "remove Crashlytics" step (exclusive only).
Step 1 — Add the SDK and Gradle plugins
Two Gradle plugins do different jobs. The KMP plugin installs the SDK into commonMain; the Android plugin only uploads the R8 mapping.
In gradle/libs.versions.toml:
[versions]
sentryKmp = "0.26.0" # check latest before pinning
sentryAndroidGradle = "6.8.1" # check latest before pinning
[plugins]
sentry-kmp = { id = "io.sentry.kotlin.multiplatform.gradle", version.ref = "sentryKmp" }
sentry-android = { id = "io.sentry.android.gradle", version.ref = "sentryAndroidGradle" }
Apply sentry-kmp in :composeApp (the module that owns the shared Sentry.init), and sentry-android in :androidApp. For iOS, add the sentry-cocoa SPM package (≥ 8.36.0) to the Xcode project — the KMP plugin links against it.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 152 lines · 0 tokens per session scan A fab919432127
sentry-setup is a skill published in the GitHub repository satanyakiv/NutriSport (11 stars, last pushed 3mo ago), licensed MIT. It adds 161 tokens to every session and 2,125 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ios-fix
Autonomous iOS bug fixer. (gstack).
google-mobile-ads-validate
Validates a project's Google Mobile Ads (GMA) SDK integration for iOS, Android, or Unity projects. Use when conducting a full pre-launch audit of an app that integrates GMA SDK or when validating any individual GMA SDK integration checks, such as when validating ad unit IDs and ad formats, SKAdNetwork IDs, mediation…
competition-ios-runtime
Internal downstream skill for ctf-sandbox-orchestrator. CTF-sandbox workflow for IPA runtime analysis, Frida hooks, Objective-C or Swift method tracing, Keychain inspection, SSL pinning bypass, URL scheme handling, and iOS request-signing recovery. Use when the user asks to hook an IPA, trace Objective-C or Swift…
swiftui-performance-audit
SwiftUI performance: render, scroll, CPU/memory, updates, layout, Instruments.
android-tombstone-symbolication
Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app…
node-connect
Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing required, unauthorized, bootstrap token invalid or expired, gateway.bind, gateway.remote.url, Tailscale…