sentry-pr-code-review

от sentry

Проверять PR проекта на наличие проблем, выявленных при ревью кода с помощью Seer Bug Prediction. Использовать, когда требуется проверить или исправить проблемы, обнаруженные Sentry в PR…

npx skills add https://github.com/getsentry/agent-skills --skill sentry-pr-code-review

Sentry Code Review

Review and fix issues identified by Seer (by Sentry) in GitHub PR comments.

Invoke This Skill When

  • User asks to "review Sentry comments" or "fix Sentry issues" on a PR
  • User shares a PR URL/number and mentions Sentry or Seer feedback
  • User asks to "address Sentry review" or "resolve Sentry findings"
  • User wants to find PRs with unresolved Sentry comments

Prerequisites

  • gh CLI installed and authenticated
  • Repository has the Seer by Sentry GitHub App installed

Important: The comment format parsed below is based on Seer's current output. This is not an API contract and may change. Always verify the actual comment structure.

Phase 1: Fetch Seer Comments

gh api repos/{owner}/{repo}/pulls/{PR_NUMBER}/comments --paginate \
  --jq '.[] | select(.user.login == "seer-by-sentry[bot]") | {file: .path, line: .line, body: .body}'

The bot login is seer-by-sentry[bot] — not sentry[bot] or sentry-io[bot].

If no PR number is given, find recent PRs with Seer comments:

gh pr list --state open --json number,title --limit 20 | \
  jq -r '.[].number' | while read pr; do
    count=$(gh api "repos/{owner}/{repo}/pulls/$pr/comments" --paginate \
      --jq '[.[] | select(.user.login == "seer-by-sentry[bot]")] | length')
    [ "$count" -gt 0 ] && echo "PR #$pr: $count Seer comments"
  done

Phase 2: Parse Each Comment

Extract from the markdown body:

  • Bug description: Line starting with **Bug:**
  • Severity/Confidence: In <sub>Severity: X | Confidence: X.XX</sub>
  • Analysis: Inside <summary>🔍 <b>Detailed Analysis</b></summary> block
  • Suggested Fix: Inside <summary>💡 <b>Suggested Fix</b></summary> block
  • AI Prompt: Inside <summary>🤖 <b>Prompt for AI Agent</b></summary> block

Phase 3: Verify & Fix

For each issue:

  1. Read the file at the specified line
  2. Confirm issue still exists in current code (not already fixed in a later commit)
  3. Review surrounding code to assess if it's an actual issue or false positive
  4. Implement fix (use suggested fix as starting point, or write your own)
  5. Consider edge cases and regression risk

Phase 4: Summarize and Report Results

## Seer Review: PR #[number]

### Resolved
| File:Line | Issue | Severity | Fix Applied |
|-----------|-------|----------|-------------|
| path:123  | desc  | HIGH     | what done   |

### Skipped (false positive or already fixed)
| File:Line | Issue | Reason |
|-----------|-------|--------|

**Summary:** X resolved, Y skipped

Seer Review Triggers

TriggerWhen
PR set to "Ready for Review"Automatic error prediction
Commit pushed while PR is readyRe-runs prediction
@sentry review commentManual trigger for full review + suggestions
Draft PRSkipped — no review until marked ready

Troubleshooting

IssueSolution
No Seer comments foundVerify the Seer GitHub App is installed on the repo
Bot name mismatchThe login is seer-by-sentry[bot], not sentry[bot]
Comments not appearing on new PRsPR must be "Ready for Review" (not draft)
gh api returns partial resultsEnsure --paginate flag is included

Common Issue Types

CategoryExamples
Type SafetyMissing null checks, unsafe type assertions
Error HandlingSwallowed errors, missing boundaries
ValidationPermissive inputs, missing sanitization
ConfigMissing env vars, incorrect paths

Больше skills от sentry

sentry-cli
sentry
Руководство по использованию Sentry CLI для взаимодействия с Sentry из командной строки. Используйте, когда пользователь спрашивает о просмотре issues, событий, проектов, организаций, выполнении API-запросов или аутентификации с Sentry через CLI.
developmentapidevops
sentry-cocoa-sdk
sentry
Полная настройка Sentry SDK для платформ Apple (iOS, macOS, tvOS, watchOS, visionOS). Используйте, когда вас просят «добавить Sentry в iOS», «добавить Sentry в Swift», «установить…
official
sentry-create-alert
sentry
Создание оповещений Sentry с помощью API механизма рабочих процессов. Используйте, когда требуется создать оповещения, настроить уведомления, настроить оповещения о приоритете задач или построить рабочий процесс…
official
sentry-dotnet-sdk
sentry
Полная настройка Sentry SDK для .NET. Используйте, когда требуется «добавить Sentry в .NET», «установить Sentry для C#» или настроить мониторинг ошибок, трассировку, профилирование, логирование или…
official
sentry-fix-issues
sentry
Находить и исправлять проблемы из Sentry с помощью MCP. Используйте, когда требуется исправить ошибки Sentry, отладить проблемы в продакшене, исследовать исключения или устранить баги, о которых сообщалось в…
official
sentry-go-sdk
sentry
Полная настройка Sentry SDK для Go. Используйте, когда вас просят «добавить Sentry в Go», «установить sentry-go», «настроить Sentry в Go» или настроить мониторинг ошибок, трассировку, логирование,…
official
sentry-ios-swift-setup
sentry
Настройка Sentry в iOS/Swift приложениях. Используйте, когда требуется добавить Sentry в iOS, установить sentry-cocoa SDK или настроить мониторинг ошибок для iOS-приложений на Swift…
official
sentry-nextjs-sdk
sentry
Полная настройка Sentry SDK для Next.js. Используйте, когда вас просят «добавить Sentry в Next.js», «установить @sentry/nextjs» или настроить мониторинг ошибок, трассировку, повтор сессий,…
official