Agent skill
investigate-sentry-issue
Investigate and triage a Sentry error issue
Install this agent skill to your Project
npx add-skill https://github.com/desplega-ai/agent-swarm/tree/main/plugin/pi-skills/investigate-sentry-issue
SKILL.md
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
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
- Identify the failing file and line number
- Understand the error type and message
- Review breadcrumbs for the sequence of events
- Check tags for environment-specific issues
6. Take Action (if appropriate)
sentry-cli issues resolve <issue-id> # Resolve
sentry-cli issues mute <issue-id> # Mute
sentry-cli issues unresolve <issue-id> # Unresolve
Search Query Syntax
Use these filters with sentry-cli issues list --query:
| Filter | Example | Description |
|---|---|---|
is: |
is:unresolved |
Issue status |
lastSeen: |
lastSeen:-2d |
Seen within time range |
message: |
message:undefined |
Match error message |
issue.category: |
issue.category:error |
Error category |
Tips
- Always get the recommended event first — it's curated for debugging
- Check breadcrumbs to understand user actions before the error
- If investigating from a Slack alert, the issue URL is in the alert message
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
implement-issue
Implement a GitHub issue or GitLab issue and create a PR/MR
start-leader
Start the Agent Swarm Leader
user-management
How to manage the user registry — creating users for new Slack/GitHub/GitLab identities, managing aliases, resolving users across platforms. Use when a new human interacts with the swarm or when user identity needs updating.
close-issue
Close a GitHub or GitLab issue with a summary comment
swarm-chat
Effective communication within the agent swarm using internal Slack
work-on-task
Work on a specific task assigned to you in the agent swarm
Didn't find tool you were looking for?