sentry

Query Sentry issues, events, and health data via the Sentry API.

59|14|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/guilhermemarketing/esc-skills --skill sentry-guilhermemarketing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/guilhermemarketing/esc-skills/tree/main/skills/sentry
Command: npx skills add https://github.com/guilhermemarketing/esc-skills --skill sentry-guilhermemarketing

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Quickly inspect Sentry issues, events, and health data using the official API with a read-only approach, enabling faster debugging and incident triage.

Core Features & Use Cases

  • List issues for a project or environment, including status, first/last seen, and counts
  • Retrieve issue details and related events to understand root causes
  • Retrieve basic health information for projects/environments to monitor risk

Quick Start

Set SENTRY_AUTH_TOKEN as an environment variable with read-only scopes and run the bundled script to query Sentry data.

Frequently Asked Questions about sentry

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retrieve Sentry issues for a specific project environment?

To retrieve Sentry issues for a specific project environment, you query the Sentry API using a read-only approach. This allows you to list issues including their status, first and last seen timestamps, and event counts.

What do I need to query Sentry production errors via the API?

You need to set the SENTRY_AUTH_TOKEN environment variable with read-only scopes. This token authenticates the bundled script to perform GET requests against the Sentry API for debugging production errors.

Can I get detailed Sentry event data to understand root causes?

Yes, you can retrieve Sentry issue details and related events to understand root causes. The read-only API queries fetch the necessary event data, facilitating faster debugging and incident triage.

How does the read-only Sentry API approach handle large volumes of issues?

The read-only Sentry API approach handles large volumes of issues using GET requests with pagination. This ensures you can systematically retrieve and monitor extensive issue and event data without missing records.

Is it possible to monitor Sentry project health and risk levels?

Yes, you can retrieve basic health information for Sentry projects and environments to monitor risk. This read-only API query provides the necessary observability data to assess project health.

Does querying Sentry events with this method modify production data?

Querying Sentry events with this method does not modify production data because it uses a strictly read-only API approach. It only performs GET requests to inspect issues, events, and health data safely.