debug-sentry-monitor

debug-sentry-monitor is a skill for Claude Code from kensaurus/cursor-kenji. It costs 75 tokens per session (4,219 once invoked), scanned A, original, MIT.

A workflow for operating Sentry, a service that collects and groups errors from running applications. It covers triage, instrumentation checks, fixes, and monitoring after deployment.

In plain words
What is it for?
Use it to review production errors, investigate unresolved Sentry issues, improve error tracking, and monitor a fix.
Why use it?
It helps distinguish application bugs from noise, prioritize regressions affecting users, and avoid marking an issue fixed before verifying the change.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cursor-kenji plugin — 123 skills, 56 commands, 6 agents, 3 MCP servers shipped together

Good fit Use it to review production errors, investigate unresolved Sentry issues, improve error tracking, and monitor a fix.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kensaurus/cursor-kenji/debug-sentry-monitor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kensaurus/cursor-kenji --skill debug-sentry-monitor
Clone the repo
git clone --depth 1 https://github.com/kensaurus/cursor-kenji

Made for: Claude Code.

Or install cursor-kenji, the plugin that ships this one along with the rest of its 123 skills, 56 commands, 6 agents, 3 MCP servers.

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 debug-sentry-monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/debug-sentry-monitor/github.svg)](https://agentmods.dev/skills/kensaurus/cursor-kenji/debug-sentry-monitor)
Your own site
<a href="https://agentmods.dev/skills/kensaurus/cursor-kenji/debug-sentry-monitor"><img src="https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/debug-sentry-monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for debug-sentry-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/kensaurus/cursor-kenji/debug-sentry-monitor"><img src="https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/debug-sentry-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,219 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 509
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00075 $0.04219
Opus 5 $0.00037 $0.02109
Sonnet 5 $0.00015 $0.00844
Haiku 4.5 $0.00007 $0.00422

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

Security

Grade A, and why

debug-sentry-monitor scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/debug-sentry-monitor/SKILL.md · 510 lines

How it starts

The opening of the file, as written. The whole thing — 510 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sentry Monitor

Degree of freedom: MIXED. Triage bucket and root cause [HIGH freedom]; resolve-only-after-verify [LOW freedom — run exactly].

Triage, fix, and audit Sentry on any project via the sentry MCP. Auto-detects config.

How to reason

  1. Observe — issue type, frames, users, first-seen, release
  2. Interpret — app frame vs extension noise; new vs regression
  3. Classify — Noise / Code Bug / Data Bug / Performance / Regression / Config Gap
  4. Severity — regressions and multi-user crashes first; never resolve Performance

Worked example

Observe: 80 events of TypeError: undefined.email on /account, started at release 1.14.0. Interpret: app frames in the profile card; correlates with the onboarding PR. Classify: Data Bug + Regression — API null for incomplete profiles. Fix: handle null at the contract; do not resolve until the fix is committed and the loop is green.

Self-critique before reporting

  • No resolve without proof — issue stays unresolved if the fix is unverified
  • No band-aid?. / swallowed catch is not the sole fix
  • Bucket is one — Noise is not used to mute an app-frame crash
  • Right owner — one named bug through PR → workflow-fix-and-ship

Critical Rules

NEVER resolve an issue without a verified fix. Resolving means "this will not happen again." If you cannot prove that, leave it unresolved.

NEVER apply a band-aid fix. Wrapping code in try/catch, adding ?. chains, or guarding with Array.isArray() are symptom suppressors. Only use defensive coding after fixing the root cause, to harden against truly unpredictable external input.

Understand the WHY before touching any code.

Research before fixing non-trivial bugs. Use firecrawl_search + firecrawl_scrape to find best practices for the specific error pattern before implementing a fix.


Step 0: Auto-Detect Project Configuration

Before making any Sentry MCP calls, discover the project's Sentry setup.

Read the full file on GitHub · 510 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 · 510 lines · 75 tokens per session scan A 7d598d12f10f

Subscribe to this mod's changes

debug-sentry-monitor is a skill published in the GitHub repository kensaurus/cursor-kenji (9 stars, last pushed yesterday), licensed MIT. It adds 75 tokens to every session and 4,219 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.