sentry-workflow

Routes Sentry debugging, code review, and SDK upgrade requests to the correct workflow skill.

Updated Apr 22, 2026
One-click install
npx skills add https://github.com/imrishuroy/algopatterns --skill sentry-workflow-imrishuroy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry-workflow
Source: https://github.com/imrishuroy/algopatterns/tree/main/.agents/skills/sentry-workflow
Command: npx skills add https://github.com/imrishuroy/algopatterns --skill sentry-workflow-imrishuroy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working with Sentry, it is easy to pick the wrong workflow for a task—confusing production error triage with PR bot comments or SDK migrations. This Skill acts as a router that directs you to the correct Sentry workflow skill based on what you are trying to accomplish. ## Core Features & Use Cases - Workflow Routing: Maps your request to one of four specialized Sentry skills: fixing production issues, resolving sentry[bot] PR comments, handling Seer bug predictions, or upgrading the Sentry JavaScript SDK. - Skill Fetching Instructions: Provides exact curl commands and URLs to download the full SKILL.md files from skills.sentry.dev without losing critical details. - Clarification-First Approach: Instructs the assistant to ask whether your task involves live production issues, PR review comments, or SDK upgrades instead of guessing. - Use Case: You paste a Sentry stack trace and ask for help. The router identifies this as a production issue and directs you to fetch and follow the sentry-fix-issues workflow. ## Quick Start Ask the assistant to help fix a Sentry production error and let it route you to the correct workflow skill.

Frequently Asked Questions about sentry-workflow

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

FAQPage Schema
How do I fix Sentry production errors with an AI assistant?

Describe the production issue, stack trace, or exception to the assistant. This router directs the task to the sentry-fix-issues workflow, which is fetched via curl from skills.sentry.dev and contains step-by-step debugging instructions using Sentry event data.

How do I resolve sentry[bot] comments on a GitHub PR?

Mention that the task involves sentry[bot] comments on a pull request. The router maps this to the sentry-code-review workflow skill, which contains its own detection logic and instructions for addressing those automated review comments.

What is the difference between sentry-code-review and sentry-pr-code-review?

sentry-code-review handles comments posted by sentry[bot] on GitHub PRs, while sentry-pr-code-review addresses issues detected by Seer Bug Prediction during PR reviews. The router asks clarifying questions when the distinction is unclear.

Can this skill help upgrade the Sentry JavaScript SDK?

Yes, SDK upgrade requests are routed to the sentry-sdk-upgrade workflow, which covers migration guides, breaking changes, and deprecated APIs for the Sentry JavaScript SDK. The actual upgrade steps live in that fetched skill, not in this router.

Why does the skill use curl instead of a fetch tool to load workflows?

The SKILL.md instructs using curl because the workflow files are 10-20 KB and fetch tools often summarize content, losing critical details. Downloading the raw file preserves the complete instructions needed to follow each workflow correctly.