# Send Sentry Issues to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sentry-issues",
    "name": "Sentry Issues",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/dave-b-b/sentry-issues",
    "canonicalUrl": "https://clawhub.ai/dave-b-b/sentry-issues",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sentry-issues",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-issues",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/sentry_issues.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sentry-issues",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:41:32.991Z",
      "expiresAt": "2026-05-07T04:41:32.991Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-issues",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-issues",
        "contentDisposition": "attachment; filename=\"sentry-issues-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sentry-issues"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sentry-issues"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sentry-issues",
    "downloadUrl": "https://openagent3.xyz/downloads/sentry-issues",
    "agentUrl": "https://openagent3.xyz/skills/sentry-issues/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sentry-issues/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sentry-issues/agent.md"
  }
}
```
## Documentation

### 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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dave-b-b
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T04:41:32.991Z
- Expires at: 2026-05-07T04:41:32.991Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sentry-issues)
- [Send to Agent page](https://openagent3.xyz/skills/sentry-issues/agent)
- [JSON manifest](https://openagent3.xyz/skills/sentry-issues/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sentry-issues/agent.md)
- [Download page](https://openagent3.xyz/downloads/sentry-issues)