sentry

Installation
SKILL.md

Sentry Integration

Guidelines for using Sentry for error monitoring and performance tracing.

Exception Catching

Use Sentry.captureException(error) in try/catch blocks:

try {
  await riskyOperation();
} catch (error) {
  Sentry.captureException(error);
  throw error;
}

Performance Tracing

Installs
168
GitHub Stars
354
First Seen
Jan 29, 2026
sentry — brianlovin/claude-config