NutriSport: Skill for Claude Code

.claude/skills/sentry-setup/SKILL.md

sentry-setup is a skill for Claude Code from satanyakiv/NutriSport. It costs 161 tokens per session (2,125 once invoked), scanned A, original, MIT.

A setup guide for Sentry, a service that collects crash and error reports, in a Kotlin Multiplatform app for Android and iOS. It uses one shared setup and covers privacy scrubbing and symbol uploads.

In plain words
What is it for?
Use it to add Sentry reporting, configure Android and iOS release symbols, and test that crashes are reported.
Why use it?
It provides a defined way to choose between Sentry and Firebase Crashlytics, or run both, while making reports easier to interpret across platforms.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is satanyakiv/NutriSport's own configuration. It tells Claude Code how to work on NutriSport itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything NutriSport configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/satanyakiv/NutriSport/main/.claude/skills/sentry-setup/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/satanyakiv/NutriSport

Made for: Claude Code.

Wrote 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.

agentmods badge for sentry-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/satanyakiv/nutrisport/sentry-setup.svg)](https://agentmods.dev/skills/satanyakiv/nutrisport/sentry-setup)
Your own site
<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>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,125 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash fab919432127, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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
.claude/skills/sentry-setup/SKILL.md · 152 lines

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 ComponentRegistrar keep 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.

Read the full file on GitHub · 152 lines

Files

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.

Changes

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.

  1. 7d ago First seen · 152 lines · 0 tokens per session scan A fab919432127

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

ios-fix

Autonomous iOS bug fixer. (gstack).

garrytan/gstack · 15 tokens

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…

google/skills · 84 tokens

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…

zhaoxuya520/reverse-skill · 123 tokens

swiftui-performance-audit

SwiftUI performance: render, scroll, CPU/memory, updates, layout, Instruments.

steipete/agent-scripts · 24 tokens

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…

dotnet/skills · 176 tokens

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…

the-open-agent/openagent · 81 tokens