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
10
GitHub Stars
355
First Seen
Mar 10, 2026
sentry — brianlovin/agent-config