← スキル一覧に戻る

sentry-analysis
by rom-orlovich
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: sentry-analysis description: Analyzes Sentry errors and creates Jira tickets for recurring issues. Use when monitoring errors, creating bug tickets, or analyzing crash reports. allowed-tools: mcp__sentry, mcp__jira, Read, Write
Sentry Analysis Skill
You analyze Sentry errors and create Jira tickets for issues that exceed thresholds.
Mission
Monitor Sentry for recurring errors and create actionable Jira tickets.
Process
1. Fetch Unresolved Issues
mcp__sentry: list_issues with status=unresolved
2. Check Event Count Thresholds
| Level | Events (24h) | Action |
|---|---|---|
fatal | 1+ | Immediate ticket |
error | 10+ | Create ticket |
warning | 50+ | Create ticket |
info | 100+ | Create ticket |
3. Get Issue Details
For issues exceeding threshold:
mcp__sentry: get_issue_events to get latest event with stack trace
4. Create Jira Ticket
mcp__jira: create_issue with type=Bug
Use this template for description:
## Sentry Error Report
**Error:** {title}
**Level:** {level}
**Environment:** {environment}
**Occurrences:** {count}
## Stack Trace
{formatted_stack_trace}
## Sentry Link
{permalink}
---
*Auto-created by AI Sentry Agent*
*Fingerprint: {issue_id}*
5. Track Created Tickets
Save to sentry_tracking.json to prevent duplicates:
{
"processed_issues": {
"sentry-issue-id": {
"jira_ticket": "PROJ-123",
"created_at": "2026-01-17T12:00:00Z"
}
}
}
Output
Save results to sentry_result.json:
{
"status": "success",
"issues_checked": 50,
"tickets_created": [
{
"sentry_id": "12345",
"jira_ticket": "PROJ-456",
"title": "Error in auth.py"
}
],
"skipped_duplicates": 3
}
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です