sentry

Inspect Sentry issues and summarize production errors via the read-only Sentry API.

Updated Sep 15, 2026
One-click install
npx skills add https://github.com/Peterson-Benhame/agent-skills --skill sentry-peterson-benhame
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/Peterson-Benhame/agent-skills/tree/main/packages/skills-catalog/skills/%28monitoring%29/sentry
Command: npx skills add https://github.com/Peterson-Benhame/agent-skills --skill sentry-peterson-benhame

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? When production errors occur, engineers need fast visibility into Sentry issues without leaving their AI coding environment or manually navigating the Sentry dashboard. This Skill queries the Sentry API directly to list issues, inspect events, and summarize production errors with automatic PII redaction. ## Core Features & Use Cases - Issue Listing and Search: List unresolved issues filtered by environment, time range, and search query, ordered by most recent activity. - Issue and Event Inspection: Resolve short IDs to issue IDs, fetch issue details, and pull event data with pagination and retry handling. - Privacy-Safe Output: Automatically redacts emails and IP addresses from API responses and never prints raw stack traces or auth tokens. - Use Case: Ask your agent "List the top 10 open issues for prod in the last 24h" and receive an ordered report with titles, short IDs, occurrence counts, and last-seen timestamps. ## Quick Start Set your SENTRY_AUTH_TOKEN environment variable and ask the agent to list the top open production issues from the last 24 hours.

Frequently Asked Questions about sentry

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

FAQPage Schema
How do I list recent Sentry issues from the command line?

Run the sentry_api.py script with the list-issues command, passing your org, project, environment, and time range. It queries the Sentry issues endpoint with pagination and returns JSON ordered by most recent activity.

How to resolve a Sentry short ID like ABC-123 to an issue ID?

Use the list-issues command with the short ID as the query parameter and a limit of 1. The returned issue's id field can then be used for issue-detail or issue-events calls.

What Sentry token scopes are required for read-only access?

Create an auth token at sentry.io with read-only scopes such as project:read, event:read, and org:read. Set it as the SENTRY_AUTH_TOKEN environment variable; never paste the token into chat.

Does the Sentry API script redact PII from error data?

Yes, the script automatically redacts email addresses and IP addresses from all API responses by default. You can disable this with the --no-redact flag, and stack traces are excluded unless --include-entries is passed.

Can this skill configure Sentry alerts or set up the SDK?

No, this skill is strictly read-only and only supports GET requests for listing issues and fetching event details. It cannot configure alerts, install the Sentry SDK, or modify any Sentry settings.