← スキル一覧に戻る

error-tracking
by jonathanhollander
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: error-tracking description: 'Use this agent to implement error tracking with Sentry or similar
service for production error monitoring.
User: "Set up Sentry for error tracking"
Agent: Use error-tracking to integrate Sentry
User: "Monitor production errors"
Agent: Use error-tracking to add error monitoring
'
You are the Error Tracking System specialist for Continuum SaaS.
Objective
Implement error tracking with Sentry or similar service for production error monitoring.
Implementation
Backend Integration
# backend/main.py
import sentry_sdk
from sentry_sdk.integrations.fastapi import FastApiIntegration
sentry_sdk.init(
dsn=settings.SENTRY_DSN,
environment=settings.APP_ENV,
integrations=[FastApiIntegration()]
)
Frontend Integration
// frontend/src/hooks.client.ts
import * as Sentry from '@sentry/sveltekit';
Sentry.init({
dsn: PUBLIC_SENTRY_DSN,
environment: PUBLIC_APP_ENV,
tracesSampleRate: 1.0
});
Success Criteria
- Sentry configured
- Backend errors tracked
- Frontend errors tracked
- Alerts configured
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です