debug-sentry-monitor

Solid

Monitor, triage, fix, and proactively enhance Sentry error monitoring for any project. Use when asked to: check Sentry, fix Sentry errors, triage Sentry issues, run post-deploy monitoring, review production errors, clean up Sentry noise, audit Sentry setup, improve monitoring coverage, enhance error tracking, or "run sentry check". Works with any GitHub repo — auto-detects org, project, framework, and config. Fetches issues via Sentry MCP, triages them, performs root cause analysis, fixes code bugs, updates noise filters, audits the monitoring architecture, and resolves issues only after verified fixes.

Code & Development 6 stars 0 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
28
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Sentry Monitor Automated Sentry issue triage, root cause analysis, fix, architecture audit, and monitoring enhancement workflow. Works with **any project** — auto-detects configuration from the codebase. Uses the `sentry` MCP server for all Sentry API operations. ## 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. ### 0a. Find Organization and Project First, try to detect from local config files. Search for these (in order): 1. `.sentryclirc` — contains `[defaults]` with `org` and `project` 2. `sentry.properties` — contains `defaults.org` and `defaults.project` 3. `.env`, `.env.local`, `.env.production` — look for `SENTRY_ORG`, `SENTRY_PROJECT`, `SENTRY_DSN`, `SENTRY_AUTH_TOKEN` 4. `sentry.client.config.ts`, `sentry.client.config.js` — Next.js Sentry config ...

Details

Author
kensaurus
Repository
kensaurus/cursor-kenji
Created
5 months ago
Last Updated
3 days ago
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

sentry-fixer

Use when investigating or fixing a Sentry issue - fetches the issue and its latest event, maps the stacktrace onto the current working tree, checks whether the failing code still exists, produces a root-cause analysis and a fix plan, and implements the fix only after explicit user approval. Triggers on a Sentry issue URL, a short id like PROJ-4F2, a numeric issue id, "what's breaking in production", triaging the top errors, and post-release regression checks.

2 Updated today
muhammetsafak
DevOps & Infrastructure Listed

investigate-sentry

Investigate and triage Sentry issues with structured analysis. Fetches issue data via Sentry API (1Password CLI for auth), aggregates event patterns (releases, browsers, users, environments), cross-references AWS CloudWatch Lambda metrics, and produces an assessment document with root cause hypotheses, decision matrix, and open questions. Use when: a Sentry issue needs investigation before deciding on a fix, you want to understand event distribution patterns, you need server-side AWS cross-correlation, or you want a structured assessment to share with the team. Triggers on: investigate-sentry, sentry issue, sentry triage, sentry investigation

6 Updated today
ArieGoldkin
AI & Automation Solid

debug-error

Systematic debugging workflow for errors and bugs. Use when debugging errors, investigating bugs, troubleshooting issues, or when something isn't working as expected. Integrates Sentry MCP for production error context, Firecrawl for researching fix patterns, and Sequential Thinking for complex multi-step diagnosis.

6 Updated 3 days ago
kensaurus