sentry-feature-setup

Route Sentry feature configuration requests to the correct setup skill.

Updated Apr 22, 2026
One-click install
npx skills add https://github.com/imrishuroy/algopatterns --skill sentry-feature-setup-imrishuroy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry-feature-setup
Source: https://github.com/imrishuroy/algopatterns/tree/main/.agents/skills/sentry-feature-setup
Command: npx skills add https://github.com/imrishuroy/algopatterns --skill sentry-feature-setup-imrishuroy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you need to configure a specific Sentry capability beyond basic SDK setup—such as AI monitoring, OpenTelemetry pipelines, alerts, or span streaming—it is hard to know which configuration guide applies. This Skill acts as a router that maps your request to the correct Sentry feature skill. ## Core Features & Use Cases - Feature Routing: Matches requests about AI/LLM monitoring, OpenTelemetry, alerts, span streaming, or instrumentation decisions to the right dedicated skill. - Skill Fetching via curl: Downloads the target skill file from skills.sentry.dev so full instructions are preserved without summarization loss. - Clarification First: Prompts the user to confirm which feature they need instead of guessing when the request is ambiguous. - Use Case: You ask to instrument OpenAI calls in your app; the router directs you to the sentry-setup-ai-monitoring skill and fetches its full instructions. ## Quick Start Ask the assistant to set up Sentry monitoring for your LLM calls and let it route you to the correct feature skill.

Frequently Asked Questions about sentry-feature-setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up Sentry monitoring for AI or LLM calls?

AI and LLM monitoring requests are routed to the sentry-setup-ai-monitoring skill, which covers instrumenting OpenAI, Anthropic, LangChain, Vercel AI, Google GenAI, and Pydantic AI. The router fetches that skill's full instructions via curl before proceeding.

How do I configure Sentry alerts for Slack or PagerDuty?

Alert and notification requests are routed to the sentry-create-alert skill, which uses the workflow engine API. It supports email, Slack, PagerDuty, and Discord integrations.

Does this skill set up the Sentry SDK itself?

No, this skill only handles feature configuration beyond basic SDK setup. For SDK installation or debugging workflows, it points you to the full Skill Tree at SKILL_TREE.md.

What is span streaming in Sentry and which languages are supported?

Span streaming migrates from transaction-based delivery to streamed spans via traceLifecycle or spanStreamingIntegration. Dedicated skills exist for JavaScript, Python, and Dart/Flutter.

Why does the skill use curl instead of a fetch tool to download skills?

Skill files are 10-20 KB, and fetch tools often summarize content and lose critical details. Using curl downloads the complete SKILL.md so instructions are followed exactly.