LaunchKit · 2026
Back to Skills

sentry-issues

Fetch and analyze issues from Sentry error tracking.

0
446 downloads
by @dave-b-b

Setup & Installation

openclaw skills install @dave-b-b/sentry-issues

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install sentry-issues

What This Skill Does

Fetches and analyzes issues from Sentry using the Sentry API. Supports listing, filtering, and inspecting errors with stack traces, affected user counts, and event metadata. Requires a Sentry auth token and organization/project slugs.

Pulls structured Sentry data directly into an agent workflow without switching to the Sentry UI or writing one-off API calls.

When to use it

  • Check unresolved errors after a deployment
  • Find which errors affected the most users this week
  • Investigate a specific exception with full stack trace
  • Filter for new errors in the last 24 hours
  • Review warning-level issues assigned to you

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: What are the top 5 errors affecting the most users in my project right now?

AGENT
  1. 1Run sentry_issues.py with --sort user --limit 5 --query 'is:unresolved'
  2. 2Parse the returned JSON array of issues
  3. 3Extract title, userCount, and lastSeen fields for each issue
  4. 4Format results ranked by userCount
OUTPUT

A ranked list of the 5 issues with the highest affected user counts, including error titles and timestamps

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

SENTRY_AUTH_TOKEN environment variable (Sentry auth token with project:read and event:read scopes)Sentry organization slugSentry project slug