sentry-pr-code-review
作成者: sentry
プロジェクトのPRをレビューし、Seer Bug Predictionによるコードレビューで検出された問題を確認します。PR内でSentryが特定した問題のレビューや修正を求められた場合に使用します…
npx skills add https://github.com/getsentry/agent-skills --skill sentry-pr-code-reviewSentry 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
ghCLI 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:
- Read the file at the specified line
- Confirm issue still exists in current code (not already fixed in a later commit)
- Review surrounding code to assess if it's an actual issue or false positive
- Implement fix (use suggested fix as starting point, or write your own)
- 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
| Trigger | When |
|---|---|
| PR set to "Ready for Review" | Automatic error prediction |
| Commit pushed while PR is ready | Re-runs prediction |
@sentry review comment | Manual trigger for full review + suggestions |
| Draft PR | Skipped — no review until marked ready |
Troubleshooting
| Issue | Solution |
|---|---|
| No Seer comments found | Verify the Seer GitHub App is installed on the repo |
| Bot name mismatch | The login is seer-by-sentry[bot], not sentry[bot] |
| Comments not appearing on new PRs | PR must be "Ready for Review" (not draft) |
gh api returns partial results | Ensure --paginate flag is included |
Common Issue Types
| Category | Examples |
|---|---|
| Type Safety | Missing null checks, unsafe type assertions |
| Error Handling | Swallowed errors, missing boundaries |
| Validation | Permissive inputs, missing sanitization |
| Config | Missing env vars, incorrect paths |
sentryのその他のスキル
sentry-cli
sentry
Sentry CLIを使用してコマンドラインからSentryとやり取りするためのガイドです。ユーザーがCLI経由でSentryの問題、イベント、プロジェクト、組織の表示、API呼び出し、認証について質問した場合に使用します。
developmentapidevops
sentry-cocoa-sdk
sentry
Appleプラットフォーム(iOS、macOS、tvOS、watchOS、visionOS)向けの完全なSentry SDKセットアップ。「SentryをiOSに追加」「SentryをSwiftに追加」「インストール…」と尋ねられた場合に使用します。
official
sentry-create-alert
sentry
ワークフローエンジンAPIを使用してSentryアラートを作成します。アラートの作成、通知の設定、課題優先度アラートの構成、ワークフローの構築を求められた場合に使用します…
official
sentry-dotnet-sdk
sentry
.NET向けの完全なSentry SDKセットアップ。.NETにSentryを追加する、C#用のSentryをインストールする、またはエラーモニタリング、トレーシング、プロファイリング、ロギングなどを設定するよう求められた場合に使用します。
official
sentry-fix-issues
sentry
SentryのMCPを使用して問題を発見し修正します。Sentryのエラー修正、本番環境の問題デバッグ、例外の調査、または報告されたバグの解決を求められた場合に使用します。
official
sentry-go-sdk
sentry
Go向けの完全なSentry SDKセットアップ。「GoにSentryを追加」「sentry-goをインストール」「GoでSentryをセットアップ」、またはエラーモニタリング、トレーシング、ロギングの設定を依頼された場合に使用します。
official
sentry-ios-swift-setup
sentry
iOS/SwiftアプリでSentryをセットアップします。iOSにSentryを追加するよう求められた場合、sentry-cocoa SDKをインストールする場合、またはSwiftを使用したiOSアプリケーションのエラーモニタリングを設定する場合に使用します…
official
sentry-nextjs-sdk
sentry
Next.js向けの完全なSentry SDKセットアップ。Next.jsにSentryを追加する、@sentry/nextjsをインストールする、エラーモニタリング、トレーシング、セッションリプレイを設定するよう求められた場合に使用します。
official