sentry-pr-code-review
作者: sentry
审查项目的PR,检查Seer Bug Prediction在代码审查中发现的问题。当被要求审查或修复Sentry在PR中识别的问题时使用…
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 查看问题、事件、项目、组织、进行 API 调用或进行 Sentry 身份验证时使用。
developmentapidevops
sentry-cocoa-sdk
sentry
适用于苹果平台(iOS、macOS、tvOS、watchOS、visionOS)的完整Sentry SDK配置。当被要求“为iOS添加Sentry”、“为Swift添加Sentry”、“安装…”时使用。
official
sentry-create-alert
sentry
使用工作流引擎API创建Sentry警报。当被要求创建警报、设置通知、配置问题优先级警报或构建工作流时使用…
official
sentry-dotnet-sdk
sentry
完整的Sentry SDK配置,适用于.NET。当被要求“为.NET添加Sentry”、“为C#安装Sentry”或配置错误监控、追踪、性能分析、日志记录等时使用。
official
sentry-fix-issues
sentry
使用MCP查找并修复Sentry中的问题。当被要求修复Sentry错误、调试生产问题、调查异常或解决报告中提到的漏洞时使用…
official
sentry-go-sdk
sentry
完整的Sentry SDK配置,适用于Go语言。当被要求“为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
完整的Sentry SDK配置,适用于Next.js。当被要求“为Next.js添加Sentry”、“安装@sentry/nextjs”或配置错误监控、追踪、会话回放等时使用。
official