home / skills / andrelandgraf / fullstackrecipes / sentry-setup
This skill guides you through configuring Sentry for errors, performance, and logs, integrating with Pino for automated log forwarding.
npx playbooks add skill andrelandgraf/fullstackrecipes --skill sentry-setupReview the files below or copy the command above to add this skill to your agents.
---
name: sentry-setup
description: Configure Sentry for error tracking, performance monitoring, and log aggregation. Integrates with Pino to forward logs to Sentry automatically.
---
# Sentry Setup
To set up Sentry Setup, refer to the fullstackrecipes MCP server resource:
**Resource URI:** `recipe://fullstackrecipes.com/sentry-setup`
If the MCP server is not configured, fetch the recipe directly:
```bash
curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/sentry-setup
```
This skill configures Sentry for error tracking, performance monitoring, and log aggregation in TypeScript full-stack apps. It provides production-ready integration patterns and step-by-step recipes to get Sentry collecting errors, traces, and structured logs quickly. Built to work with Pino, it can forward logs automatically to Sentry for unified observability.
The skill installs and configures the Sentry SDK for server and client environments, applies recommended performance sampling, and wires up transaction and span creation where appropriate. It adds a Pino transport that forwards logs and error objects to Sentry with proper context and severity mapping. Configuration is delivered as a recipe you can fetch from the fullstackrecipes resource server or retrieve directly via a simple HTTP fetch when the registry is not available.
How do I fetch the setup recipe if the registry is unavailable?
You can fetch the recipe directly from the fullstackrecipes public endpoint using a standard HTTP GET request to retrieve the step-by-step instructions and configuration snippets.
Does this support Pino out of the box?
Yes. The integration includes a Pino transport and mapping guidance so logs are forwarded to Sentry automatically with proper severity and contextual fields.