| name | sentry |
| description | 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. Requires SENTRY_AUTH_TOKEN. Use when investigating production errors, checking Sentry issues, or reviewing error trends. |
| license | MIT |
| metadata | {"author":"greedychipmunk","version":"1.0"} |
Sentry Skill
Inspect Sentry issues and events, summarize production errors, and pull health data via the Sentry API. Read-only access using the bundled Python script.
When to Use
- Investigating production errors or exceptions
- Summarizing recent error trends
- Checking issue details, stack traces, and event counts
- Reviewing release health and adoption
- Pulling project or organization-level Sentry data
Prerequisites
export SENTRY_AUTH_TOKEN="your-auth-token"
export SENTRY_API="scripts/sentry_api.py"
Usage
python3 $SENTRY_API issues list --org my-org --project my-project
python3 $SENTRY_API issues get --org my-org --issue-id 12345
python3 $SENTRY_API events list --org my-org --issue-id 12345
python3 $SENTRY_API issues search --org my-org --query "TypeError" --project my-project
python3 $SENTRY_API releases list --org my-org --project my-project
Common Patterns
Error Investigation
python3 $SENTRY_API issues list --org my-org --project my-project --query "is:unresolved"
python3 $SENTRY_API issues get --org my-org --issue-id 12345
python3 $SENTRY_API events list --org my-org --issue-id 12345
Trend Analysis
python3 $SENTRY_API issues search --org my-org --query "TypeError" --project my-project
python3 $SENTRY_API releases list --org my-org --project my-project
Notes
- All operations are read-only — no write or modify operations
- Auth token needs appropriate scopes (org:read, project:read)
- Script path depends on your installation directory
- Use
--help on any subcommand for available options