| name | sentry |
| description | Manage and query Sentry error reports using sentry-cli. Use for: listing/viewing issues, pulling latest errors for a project, resolving or muting issues. Triggers on 'Sentry errors', 'pull Sentry issues', 'what is broken', or 'resolve issue'. |
Sentry
Sentry error monitoring via sentry-cli. The tool is authenticated and ready to use.
Configuration
- Org slug:
wingtask
- Project naming: The Sentry project slug may not match the working directory name. Check CLAUDE.md for a project-specific slug, or run
sentry-cli projects list --org wingtask to find it.
Common Commands
List issues for current project
sentry-cli issues list --org wingtask --project <project>
sentry-cli issues list --org wingtask --project <project> --status unresolved
sentry-cli issues list --org wingtask --project <project> --query "is:unresolved"
sentry-cli issues list --org wingtask --project <project> --max-rows 20
Resolve / mute / unresolve issues
sentry-cli issues resolve --org wingtask --project <project> --id <issue-id>
sentry-cli issues resolve --org wingtask --project <project> --status unresolved
sentry-cli issues mute --org wingtask --project <project> --id <issue-id>
List all projects
sentry-cli projects list --org wingtask
Workflow
- Determine the project slug: check CLAUDE.md first, then fall back to
sentry-cli projects list --org wingtask
- Run the appropriate command
- Present results clearly — summarize patterns if there are many issues