sentry
Set up and operate Sentry for error tracking, performance monitoring, and release health. Use for SDK integration, alert tuning, and incident investigation.
What this skill does
# Sentry Operations
## Current Versions (Verify Before Use)
Check the [Sentry SDK releases](https://github.com/getsentry/sentry-javascript/releases) for your platform. SDKs follow semver independently.
## Core Principles
1. **Instrument before you need it.** Sentry is most valuable when it's already running before an incident.
2. **Alert on new issues, not total volume.** A spike in errors you've already seen is less actionable than a new error type.
3. **Breadcrumbs tell the story.** Good instrumentation includes HTTP requests, state transitions, and user actions leading to the error.
4. **Performance is part of observability.** Enable distributed tracing to connect frontend errors to backend root causes.
## SDK Integration Checklist
### Error Tracking
- [ ] DSN configured via environment variable (not hardcoded)
- [ ] `release` set to git SHA or version tag
- [ ] `environment` set (production, staging, development)
- [ ] Global error handler captures unhandled exceptions
- [ ] Rejected promises are captured (frontend + backend)
- [ ] Source maps uploaded for JS/TS (enables readable stack traces)
### Performance
- [ ] Tracing enabled with appropriate sample rate
- [ ] Custom spans for critical operations (DB queries, external API calls)
- [ ] Distributed tracing headers propagated between services
- [ ] Database queries auto-instrumented or manually spanned
### Context
- [ ] User ID attached (hashed, not PII)
- [ ] Tags for team/service/component
- [ ] Breadcrumbs for state changes
## Alert Configuration
```javascript
// Example: Alert on new issues in production
// Sentry UI → Alerts → Create Alert Rule
// When: A new issue is created
// If: Environment equals "production"
// Then: Send notification to Slack #alerts
```
**Alert hierarchy:**
1. **New issue in production** → Immediate notification
2. **Issue count > 100/hour** → Page on-call (regression)
3. **Performance regression > 20%** → Slack notification
4. **Release crash rate > 1%** → Block deployment
## Performance Monitoring
### Key Metrics
- **Apdex:** User satisfaction score (0-1)
- **P50/P95/P99 Latency:** Response time distribution
- **Throughput:** Requests per minute
- **Failure Rate:** Error % of total requests
### Custom Spans
```javascript
const span = Sentry.startSpan({ name: 'process-payment' }, () => {
// critical operation
});
```
## Common Anti-Patterns
| Anti-Pattern | Why It's Wrong | Fix |
|---|---|---|
| Hardcoded DSN | Secret exposure, can't rotate per env | Environment variable |
| No source maps | Stack traces are minified gibberish | Upload maps in CI |
| 100% trace sampling | Expensive, unnecessary | 1-10% for high traffic |
| No release association | Can't correlate errors with deployments | Set `release` to git SHA |
| Ignoring caught errors | Silent failures accumulate | Log or capture explicitly |
| PII in context | Privacy violations | Hash IDs, strip emails/phones |
## Troubleshooting Flow
1. **New error spike:** Check release timing → correlate with deployment
2. **Minified stack trace:** Source maps not uploaded or mismatch
3. **Missing errors:** Check filters, sampling rate, DSN correctness
4. **Performance blind spot:** Check trace propagation between services
5. **Alert fatigue:** Review alert rules, add thresholds, use issue states
## Official Resources
- [Sentry docs](https://docs.sentry.io/)
- [JavaScript SDK](https://docs.sentry.io/platforms/javascript/)
- [Performance monitoring](https://docs.sentry.io/product/performance/)
- [Source maps](https://docs.sentry.io/platforms/javascript/sourcemaps/)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.