AgentSkillsCN

sentry

Sentry 错误追踪与监控。适用于配置 Sentry、筛选错误、分析崩溃报告,或调试生产环境中的问题。涵盖各平台专属的设置流程(桌面端/移动端/网页端/扩展程序),以及多种错误筛选策略。

SKILL.md
--- frontmatter
name: sentry
description: Sentry error tracking and monitoring. Use when configuring Sentry, filtering errors, analyzing crash reports, or debugging production issues. Covers platform-specific setup (desktop/mobile/web/extension) and error filtering strategies.

Sentry Integration

Sentry is used for error tracking across all platforms.

Architecture Overview (Example)

code
apps/
├── desktop/app/sentry.ts          # Desktop main process
├── ext/                           # Extension (uses shared)
├── mobile/                        # Mobile (uses shared)
└── web/                           # Web (uses shared)

packages/shared/src/modules3rdParty/sentry/
├── index.ts                       # Web/Extension entry
├── index.native.ts                # React Native entry
├── index.desktop.ts               # Desktop renderer entry
├── basicOptions.ts                # Shared config & error filtering
└── instance.ts                    # Sentry client instance

Platform Detection

typescript
import { platformEnv } from '@{scope}/shared/src/platformEnv';

platformEnv.isDesktop    // Electron desktop app
platformEnv.isNative     // React Native (iOS/Android)
platformEnv.isWeb        // Web browser
platformEnv.isExtension  // Browser extension

Common Tasks

Filter/Ignore Errors

See: references/rules/ignoring-errors.md

Key file: packages/shared/src/modules3rdParty/sentry/basicOptions.ts

Analyze Crash Reports

  1. Get crash details from Sentry dashboard
  2. Identify error type, message, and stack trace
  3. Check platform-specific context
  4. Use related skills for fixes:
    • Native crashes → /1k-patching-native-modules
    • JS errors → Fix in codebase

Add Custom Context

typescript
import * as Sentry from '@sentry/react-native'; // or @sentry/browser

// Add breadcrumb
Sentry.addBreadcrumb({
  category: 'action',
  message: 'User clicked button',
  level: 'info',
});

// Set user context
Sentry.setUser({ id: 'user-id' });

// Set tags
Sentry.setTag('feature', 'swap');

// Capture exception with context
Sentry.captureException(error, {
  extra: { additionalData: 'value' },
});

Key Files

PurposeFile
Error filteringpackages/shared/src/modules3rdParty/sentry/basicOptions.ts
Desktop mainapps/desktop/app/sentry.ts
Desktop rendererpackages/shared/src/modules3rdParty/sentry/index.desktop.ts
Web/Extensionpackages/shared/src/modules3rdParty/sentry/index.ts
Nativepackages/shared/src/modules3rdParty/sentry/index.native.ts

Error Filtering Quick Reference

typescript
// Filter by error type
const FILTERED_ERROR_TYPES = new Set(['AxiosError', 'HTTPClientError']);

// Filter by exact message
const FILTER_ERROR_VALUES = ['AbortError: AbortError'];

// Filter by pattern (in isFilterErrorAndSkipSentry function)
if (error.value?.includes('PATTERN')) return true;

Related Skills

  • /patching-native-modules - Fix native crashes found in Sentry
  • /coding-patterns - Error handling best practices