{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sentry-issues",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-issues",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/sentry_issues.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/sentry-issues",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Sentry Issue Tracker",
        "body": "Fetch and analyze issues from Sentry using the Sentry API."
      },
      {
        "title": "Prerequisites",
        "body": "Sentry API token with project:read and event:read scopes\nOrganization slug and project slug"
      },
      {
        "title": "Authentication",
        "body": "Set the SENTRY_AUTH_TOKEN environment variable, or pass --token to the script.\n\nexport SENTRY_AUTH_TOKEN=\"your-token-here\"\n\nTo create a token: Sentry → Settings → Auth Tokens → Create New Token"
      },
      {
        "title": "Quick Start",
        "body": "List recent unresolved issues:\n\npython3 scripts/sentry_issues.py --org <org-slug> --project <project-slug>\n\nGet issue details with stack trace:\n\npython3 scripts/sentry_issues.py --org <org-slug> --project <project-slug> --issue <issue-id> --details"
      },
      {
        "title": "scripts/sentry_issues.py",
        "body": "Fetches issues from Sentry API.\n\nArguments:\n\n--org (required): Sentry organization slug\n--project (required): Project slug\n--token: Auth token (defaults to SENTRY_AUTH_TOKEN env var)\n--issue: Specific issue ID to fetch details\n--details: Include stack trace and event details\n--query: Filter query (e.g., is:unresolved, level:error)\n--limit: Max issues to return (default: 25)\n--sort: Sort by date, new, priority, freq, or user (default: date)\n\nExamples:\n\n# List 10 most recent unresolved errors\npython3 scripts/sentry_issues.py --org myorg --project myproject --query \"is:unresolved level:error\" --limit 10\n\n# Get details for specific issue\npython3 scripts/sentry_issues.py --org myorg --project myproject --issue 12345 --details\n\n# Sort by most users affected\npython3 scripts/sentry_issues.py --org myorg --project myproject --sort user --limit 5"
      },
      {
        "title": "Common Queries",
        "body": "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\n\nCombine queries: is:unresolved level:error firstSeen:>-24h"
      },
      {
        "title": "Output Format",
        "body": "Issues are returned as JSON with key fields:\n\nid: Issue ID for fetching details\ntitle: Error message/title\nculprit: Source location\ncount: Number of events\nuserCount: Affected users\nfirstSeen / lastSeen: Timestamps\nlevel: error/warning/info\nstatus: unresolved/resolved/ignored\n\nWhen --details is used, includes:\n\nFull stack trace\nLatest event context\nTags and metadata\nBrowser/OS info (if available)"
      }
    ],
    "body": "Sentry Issue Tracker\n\nFetch and analyze issues from Sentry using the Sentry API.\n\nPrerequisites\nSentry API token with project:read and event:read scopes\nOrganization slug and project slug\nAuthentication\n\nSet the SENTRY_AUTH_TOKEN environment variable, or pass --token to the script.\n\nexport SENTRY_AUTH_TOKEN=\"your-token-here\"\n\n\nTo create a token: Sentry → Settings → Auth Tokens → Create New Token\n\nQuick Start\n\nList recent unresolved issues:\n\npython3 scripts/sentry_issues.py --org <org-slug> --project <project-slug>\n\n\nGet issue details with stack trace:\n\npython3 scripts/sentry_issues.py --org <org-slug> --project <project-slug> --issue <issue-id> --details\n\nScript Reference\nscripts/sentry_issues.py\n\nFetches issues from Sentry API.\n\nArguments:\n\n--org (required): Sentry organization slug\n--project (required): Project slug\n--token: Auth token (defaults to SENTRY_AUTH_TOKEN env var)\n--issue: Specific issue ID to fetch details\n--details: Include stack trace and event details\n--query: Filter query (e.g., is:unresolved, level:error)\n--limit: Max issues to return (default: 25)\n--sort: Sort by date, new, priority, freq, or user (default: date)\n\nExamples:\n\n# List 10 most recent unresolved errors\npython3 scripts/sentry_issues.py --org myorg --project myproject --query \"is:unresolved level:error\" --limit 10\n\n# Get details for specific issue\npython3 scripts/sentry_issues.py --org myorg --project myproject --issue 12345 --details\n\n# Sort by most users affected\npython3 scripts/sentry_issues.py --org myorg --project myproject --sort user --limit 5\n\nCommon Queries\nQuery\tDescription\nis:unresolved\tOpen issues only\nis:resolved\tResolved issues\nis:ignored\tIgnored issues\nlevel:error\tError-level issues\nlevel:warning\tWarning-level issues\nfirstSeen:>-24h\tNew in last 24 hours\nlastSeen:>-1h\tActive in last hour\nassigned:me\tAssigned to current user\nhas:release\tIssues with release info\n\nCombine queries: is:unresolved level:error firstSeen:>-24h\n\nOutput Format\n\nIssues are returned as JSON with key fields:\n\nid: Issue ID for fetching details\ntitle: Error message/title\nculprit: Source location\ncount: Number of events\nuserCount: Affected users\nfirstSeen / lastSeen: Timestamps\nlevel: error/warning/info\nstatus: unresolved/resolved/ignored\n\nWhen --details is used, includes:\n\nFull stack trace\nLatest event context\nTags and metadata\nBrowser/OS info (if available)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dave-b-b/sentry-issues",
    "publisherUrl": "https://clawhub.ai/dave-b-b/sentry-issues",
    "owner": "dave-b-b",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}