← All skills
Tencent SkillHub · Data Analysis

Sentry Issues

Fetch and analyze issues from Sentry error tracking. Use when asked to check Sentry errors, pull issues, investigate exceptions, review error trends, or get...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch and analyze issues from Sentry error tracking. Use when asked to check Sentry errors, pull issues, investigate exceptions, review error trends, or get...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/sentry_issues.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Sentry Issue Tracker

Fetch and analyze issues from Sentry using the Sentry API.

Prerequisites

Sentry API token with project:read and event:read scopes Organization slug and project slug

Authentication

Set the SENTRY_AUTH_TOKEN environment variable, or pass --token to the script. export SENTRY_AUTH_TOKEN="your-token-here" To create a token: Sentry → Settings → Auth Tokens → Create New Token

Quick Start

List recent unresolved issues: python3 scripts/sentry_issues.py --org <org-slug> --project <project-slug> Get issue details with stack trace: python3 scripts/sentry_issues.py --org <org-slug> --project <project-slug> --issue <issue-id> --details

scripts/sentry_issues.py

Fetches issues from Sentry API. Arguments: --org (required): Sentry organization slug --project (required): Project slug --token: Auth token (defaults to SENTRY_AUTH_TOKEN env var) --issue: Specific issue ID to fetch details --details: Include stack trace and event details --query: Filter query (e.g., is:unresolved, level:error) --limit: Max issues to return (default: 25) --sort: Sort by date, new, priority, freq, or user (default: date) Examples: # List 10 most recent unresolved errors python3 scripts/sentry_issues.py --org myorg --project myproject --query "is:unresolved level:error" --limit 10 # Get details for specific issue python3 scripts/sentry_issues.py --org myorg --project myproject --issue 12345 --details # Sort by most users affected python3 scripts/sentry_issues.py --org myorg --project myproject --sort user --limit 5

Common Queries

QueryDescriptionis:unresolvedOpen issues onlyis:resolvedResolved issuesis:ignoredIgnored issueslevel:errorError-level issueslevel:warningWarning-level issuesfirstSeen:>-24hNew in last 24 hourslastSeen:>-1hActive in last hourassigned:meAssigned to current userhas:releaseIssues with release info Combine queries: is:unresolved level:error firstSeen:>-24h

Output Format

Issues are returned as JSON with key fields: id: Issue ID for fetching details title: Error message/title culprit: Source location count: Number of events userCount: Affected users firstSeen / lastSeen: Timestamps level: error/warning/info status: unresolved/resolved/ignored When --details is used, includes: Full stack trace Latest event context Tags and metadata Browser/OS info (if available)

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/sentry_issues.py Scripts