sentry-error-capturing

Installation
SKILL.md

Sentry - Error Capturing & Context

Capture errors and enrich them with context for better debugging.

Capturing Errors

Manual Error Capture

import * as Sentry from "@sentry/browser";

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

Capture with Extra Context

Installs
21
GitHub Stars
166
First Seen
Jan 22, 2026
sentry-error-capturing — thebushidocollective/han