# Send Native Sentry 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "native-sentry",
    "name": "Native Sentry",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codeninja23/native-sentry",
    "canonicalUrl": "https://clawhub.ai/codeninja23/native-sentry",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/native-sentry",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-sentry",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/sentry_api.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "native-sentry",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T00:08:09.766Z",
      "expiresAt": "2026-05-13T00:08:09.766Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-sentry",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-sentry",
        "contentDisposition": "attachment; filename=\"native-sentry-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "native-sentry"
      },
      "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/native-sentry"
    },
    "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/native-sentry",
    "downloadUrl": "https://openagent3.xyz/downloads/native-sentry",
    "agentUrl": "https://openagent3.xyz/skills/native-sentry/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-sentry/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-sentry/agent.md"
  }
}
```
## Documentation

### Sentry (Read-only)

Read production errors and issues from Sentry.

### Setup

# Check token is set (does not print the value)
[ -n "$SENTRY_AUTH_TOKEN" ] && echo "SENTRY_AUTH_TOKEN: set" || echo "SENTRY_AUTH_TOKEN: MISSING"
echo "ORG=${SENTRY_ORG:-not set}"
echo "PROJECT=${SENTRY_PROJECT:-not set}"

If SENTRY_AUTH_TOKEN is missing:

Go to https://sentry.io/settings/account/api/auth-tokens/
Create a token with scopes: project:read, event:read, org:read
Set SENTRY_AUTH_TOKEN in your environment

Set optional defaults to avoid passing flags every time:

export SENTRY_ORG=your-org-slug
export SENTRY_PROJECT=your-project-slug

### Script path

SKILL_DIR="$(python3 -c "import os; print(os.path.dirname(os.path.realpath('$0')))" 2>/dev/null || echo "$HOME/.claude/skills/sentry")"
SENTRY_API="$SKILL_DIR/scripts/sentry_api.py"

### List recent issues

python3 "$SENTRY_API" list-issues \\
  --org "$SENTRY_ORG" \\
  --project "$SENTRY_PROJECT" \\
  --time-range 24h \\
  --environment prod \\
  --limit 20 \\
  --query "is:unresolved"

### Get issue detail

python3 "$SENTRY_API" issue-detail ISSUE_ID

### Get events for an issue

python3 "$SENTRY_API" issue-events ISSUE_ID --limit 10

### Get event detail (no stack traces by default)

python3 "$SENTRY_API" event-detail \\
  --org "$SENTRY_ORG" \\
  --project "$SENTRY_PROJECT" \\
  EVENT_ID

Add --include-entries to include stack traces.

### Resolve a short ID (e.g. ABC-123) to issue ID

python3 "$SENTRY_API" list-issues \\
  --org "$SENTRY_ORG" \\
  --project "$SENTRY_PROJECT" \\
  --query "ABC-123" \\
  --limit 1

### Parameters

FlagDefaultDescription--org$SENTRY_ORGOrg slug--project$SENTRY_PROJECTProject slug--time-range24hStats period (e.g. 7d, 30d)--environmentprodEnvironment filter--limit20Max results (max 50)--querySentry search query--base-urlhttps://sentry.ioFor self-hosted Sentry--no-redactDisable PII redaction — avoid in shared/logged environments

### Notes

PII (emails, IPs) is redacted by default
Stack traces are excluded from event detail by default — add --include-entries only when you need them and trust the environment
--no-redact disables PII redaction — avoid in shared or logged environments
For self-hosted Sentry, set SENTRY_BASE_URL or use --base-url
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: codeninja23
- Version: 1.0.1
## 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-05-06T00:08:09.766Z
- Expires at: 2026-05-13T00:08:09.766Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/native-sentry)
- [Send to Agent page](https://openagent3.xyz/skills/native-sentry/agent)
- [JSON manifest](https://openagent3.xyz/skills/native-sentry/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/native-sentry/agent.md)
- [Download page](https://openagent3.xyz/downloads/native-sentry)