sentry

List, fetch, and update Sentry issues via the Sentry API.

4|3|Updated Feb 23, 2026
One-click install
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill sentry-qhkm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/qhkm/zeptoclaw-skills/tree/main/sentry
Command: npx skills add https://github.com/qhkm/zeptoclaw-skills --skill sentry-qhkm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Sentry is a live error monitoring and performance tracking platform. This skill provides a programmatic way to monitor, query, and resolve errors and project health using the Sentry API, reducing mean time to recovery.

Core Features & Use Cases

  • List unresolved issues and filter by status to triage errors.
  • Get detailed information for a specific issue (title, status, counts, firstSeen, lastSeen).
  • Resolve or update issue status to track remediation.
  • Fetch project health metrics such as error rate over time.

Quick Start

Configure SENTRY_AUTH_TOKEN, SENTRY_ORG, and SENTRY_PROJECT, then run the provided curl commands to list unresolved issues.

Frequently Asked Questions about sentry

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

FAQPage Schema
How do I list unresolved Sentry issues across multiple projects?

You can list unresolved Sentry issues by configuring your SENTRY_AUTH_TOKEN and SENTRY_ORG, then running curl commands to query the Sentry API. It formats results using jq, allowing you to filter and triage errors across multiple projects.

Can I update Sentry issue statuses automatically to track remediation?

Yes, you can update Sentry issue statuses automatically. The skill uses curl and jq to call the Sentry API, enabling you to resolve issues or change their status programmatically to track remediation progress.

What Sentry API credentials do I need to monitor application errors?

To monitor application errors via the Sentry API, you need SENTRY_AUTH_TOKEN and SENTRY_ORG configured. SENTRY_PROJECT is optional, allowing you to scope queries to specific projects or fetch health metrics like error rate.

How do I fetch detailed information for a specific Sentry issue?

You fetch detailed Sentry issue information by executing curl commands against the Sentry API. This retrieves specific issue data including title, status, counts, firstSeen, and lastSeen timestamps to help analyze application health.

Does this approach work for tracking project health metrics like error rate over time?

Yes, this approach works for tracking project health metrics. By calling the Sentry API with your configured authentication token and organization, you can fetch error rate data over time to monitor performance and maintain application health.

What's the best way to reduce mean time to recovery for Sentry errors?

The best way to reduce mean time to recovery for Sentry errors is programmatically monitoring and resolving them via the Sentry API. This skill automates listing unresolved issues, fetching details, and updating statuses to accelerate remediation.