sentry

Fetch Sentry issues, events, transactions, and logs for incident analysis.

Updated Apr 3, 2015
One-click install
npx skills add https://github.com/rinti/dotfiles --skill sentry-rinti
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/rinti/dotfiles/tree/main/claude/skills/sentry
Command: npx skills add https://github.com/rinti/dotfiles --skill sentry-rinti

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill fetches and analyzes Sentry issues, events, transactions, and logs to help debugging, root-cause analysis, and understand what happened at specific times.

Core Features & Use Cases

  • Retrieve issue details, events, and logs from Sentry to diagnose errors
  • Query by time window, project, and organization to surface relevant data
  • Use formatted output or raw JSON to integrate with other tools or reports

Quick Start

Use this Skill to quickly fetch an issue or event. For example:

  • Get details for a specific issue: fetch-issue.js 5765604106 --org myorg --project backend
  • Fetch a specific event with full context: fetch-event.js abc123 --org myorg --project backend --latest
  • List unresolved issues in a project: list-issues.js --org myorg --project backend --status unresolved

Frequently Asked Questions about sentry

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

FAQPage Schema
How do I fetch Sentry issues and events for debugging?

Retrieve Sentry issues, events, transactions, and logs for incident analysis by querying your configured Sentry instance. The skill uses an auth token from ~/.sentryclirc and the SENTRY_API_BASE endpoint to fetch and format data for debugging.

What is needed to query Sentry data for root-cause analysis?

Querying Sentry data for root-cause analysis requires an auth token in ~/.sentryclirc and a configured SENTRY_API_BASE endpoint. You must also specify your target organization and project to retrieve relevant issues, events, and logs.

Can I list unresolved Sentry issues in a specific project?

Yes, list unresolved Sentry issues in a specific project using the list-issues.js script with the --status unresolved flag. Provide your target --org and --project arguments to surface the relevant data for your investigation.

Does this Sentry investigation skill support raw JSON output for automation?

Yes, this Sentry investigation skill supports raw JSON output for automation. It formats output for readability by default but can return raw JSON to integrate with other tools or reports during incident postmortems and debugging sessions.

How do I fetch a specific Sentry event with full context?

Fetch a specific Sentry event with full context by running fetch-event.js with the event ID, organization, and project parameters. Use the --latest flag to retrieve the most recent event details for your debugging session.