sentry

Retrieve and summarize Sentry issues and events via authenticated GET requests.

167|34|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/tercumantanumut/selene --skill sentry-tercumantanumut
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/tercumantanumut/selene/tree/main/lib/skills/catalog/bundled/sentry
Command: npx skills add https://github.com/tercumantanumut/selene --skill sentry-tercumantanumut

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Quickly discover, inspect, and summarize recent errors and events from Sentry without manually navigating the Sentry dashboard, enabling faster triage and situational awareness for production incidents.

Core Features & Use Cases

  • List recent issues: Retrieve ordered lists of issues by recency with counts, environments, and top tags for quick prioritization.
  • Issue and event inspection: Resolve short IDs, fetch issue details, list issue events, and retrieve event details while avoiding raw stack traces by default.
  • Safe, deterministic API access: Uses a bundled script that handles pagination, retries, and PII redaction; intended for read-only queries requiring a SENTRY_AUTH_TOKEN.

Quick Start

Ask to list the top 20 unresolved production issues for my-org/my-project in the last 24 hours and confirm SENTRY_AUTH_TOKEN is set in your environment.

Frequently Asked Questions about sentry

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

FAQPage Schema
How do I list recent unresolved Sentry production issues for triage?

To list recent unresolved Sentry production issues, you can query your organization and project to retrieve ordered lists by recency, including counts, environments, and top tags for quick prioritization. Specify the desired time range and environment to filter the results.

Can I fetch Sentry issue details and event data without exposing raw stack traces?

Yes, you can fetch Sentry issue details and event data while avoiding raw stack traces by default. The retrieval process resolves short IDs, lists issue events, and pulls event details while automatically redacting PII for safer incident triage.

What authentication is required to access the Sentry API for error tracking?

Accessing the Sentry API for error tracking requires a SENTRY_AUTH_TOKEN with appropriate read scopes. This token enables authenticated GET requests to Sentry endpoints for read-only monitoring tasks such as fetching issues and events.

Does Sentry API observability handle pagination and retries for large issue lists?

Yes, Sentry API observability handles pagination and retries automatically. The retrieval process performs authenticated GET requests with built-in pagination and retry logic to ensure deterministic, safe access when fetching large sets of issues and events.

Why does PII redaction matter when pulling Sentry event details?

PII redaction matters when pulling Sentry event details because production errors often contain sensitive user data. Redacting PII by default ensures safer incident triage and situational awareness without exposing raw stack traces or personal information during observability checks.