investigate-sentry-issue

Solid

Investigate and triage a Sentry error issue

AI & Automation 483 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Investigate Sentry Issue Investigate a Sentry issue to understand the error, gather context, and prepare for fixing or triaging. ## Prerequisites `SENTRY_AUTH_TOKEN` and `SENTRY_ORG` must be set. Verify with `sentry-cli info`. ## Arguments - `sentry-issue-url-or-id`: A Sentry issue URL or just the issue ID (e.g., `123456`) ## Workflow ### 1. Parse the Input If given a URL (`https://sentry.io/organizations/{org}/issues/{issue_id}/`), extract the issue ID. ### 2. Get Issue Overview ```bash sentry-cli issues list --id <issue-id> ``` ### 3. Get Detailed Info via REST API Use `https://sentry.io/api/0/organizations/${SENTRY_ORG}/issues/<issue-id>/` for metadata (first/last seen, event count, user impact, status). ### 4. Get Full Stacktrace Use the recommended event endpoint: `.../issues/<issue-id>/events/recommended/` Key jq paths for the response: - `.entries[] | select(.type == "exception")` — exception with stacktrace - `.entries[] | select(.type == "exception") | .data.values[].stacktrace.frames` — stack frames - `.entries[] | select(.type == "breadcrumbs")` — actions leading to the error - `.tags` — environment, browser, OS info - `.context` — custom context data ### 5. Analyze and Report 1. Identify the failing file and line number 2. Understand the error type and message 3. Review breadcrumbs for the sequence of events 4. Check tags for environment-specific issues ### 6. Take Action (if appropriate) ```bash sentry-cli issues resolve <issue-id> # Resol...

Details

Author
desplega-ai
Repository
desplega-ai/agent-swarm
Created
5 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

sentry

Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.

1 Updated today
HGGodhand33
AI & Automation Solid

sentry

Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
API & Backend Listed

sentry-triage

Query Sentry for production errors, filter by severity/frequency, deduplicate against existing GitHub issues, and create actionable issues for the ship-loop. Invoke with /sentry-triage.

0 Updated today
mattbutlerengineering
AI & Automation Solid

fix-sentry

Auto-fix high-frequency Sentry issues: fetch issues > N occurrences, analyze stack traces, fix code, create GitHub issues, and submit PRs. Supports user feedback issues (event.type "default") with attachment analysis (logs, screenshots) when include_feedback=true. Use when: (1) User says "/fix-sentry", (2) User asks to fix Sentry issues.

27,256 Updated today
iOfficeAI
AI & Automation Featured

sentry-incident-runbook

Execute incident response procedures using Sentry error monitoring. Use when investigating production outages, triaging error spikes, classifying incident severity, or building postmortem reports from Sentry data. Trigger with phrases like "sentry incident", "sentry triage", "investigate sentry error", "sentry runbook", "production incident sentry".

2,266 Updated today
jeremylongshore