{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sentry-cli",
    "name": "Sentry Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/iAhmadZain/sentry-cli",
    "canonicalUrl": "https://clawhub.ai/iAhmadZain/sentry-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sentry-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "slug": "sentry-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T16:31:09.937Z",
      "expiresAt": "2026-05-15T16:31:09.937Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sentry-cli",
        "contentDisposition": "attachment; filename=\"sentry-cli-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sentry-cli"
      },
      "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-cli"
    },
    "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-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/sentry-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sentry-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sentry-cli/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 CLI",
        "body": "Interact with Sentry.io for error monitoring, release management, and debug artifact uploads."
      },
      {
        "title": "Installation",
        "body": "# macOS\nbrew install sentry-cli\n\n# npm (cross-platform)\nnpm install -g @sentry/cli\n\n# Direct download\ncurl -sL https://sentry.io/get-cli/ | bash"
      },
      {
        "title": "Authentication",
        "body": "# Interactive login (opens browser)\nsentry-cli login\n\n# Or set token directly\nexport SENTRY_AUTH_TOKEN=\"sntrys_...\"\n\n# Verify\nsentry-cli info\n\nStore tokens in .sentryclirc or environment:\n\n[auth]\ntoken=sntrys_...\n\n[defaults]\norg=my-org\nproject=my-project"
      },
      {
        "title": "Create & Finalize",
        "body": "# Create release (usually git SHA or version)\nsentry-cli releases new \"$VERSION\"\n\n# Associate commits (links errors to commits)\nsentry-cli releases set-commits \"$VERSION\" --auto\n\n# Finalize when deployed\nsentry-cli releases finalize \"$VERSION\"\n\n# One-liner for CI\nsentry-cli releases new \"$VERSION\" --finalize"
      },
      {
        "title": "Deploys",
        "body": "# Mark release as deployed to an environment\nsentry-cli releases deploys \"$VERSION\" new -e production\nsentry-cli releases deploys \"$VERSION\" new -e staging"
      },
      {
        "title": "List Releases",
        "body": "sentry-cli releases list\nsentry-cli releases info \"$VERSION\""
      },
      {
        "title": "Source Maps",
        "body": "Upload source maps for JavaScript error deobfuscation:\n\n# Upload all .js and .map files\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\"\n\n# With URL prefix (match your deployed paths)\nsentry-cli sourcemaps upload ./dist \\\n  --release=\"$VERSION\" \\\n  --url-prefix=\"~/static/js\"\n\n# Validate before upload\nsentry-cli sourcemaps explain ./dist/main.js.map"
      },
      {
        "title": "Inject Debug IDs (Recommended)",
        "body": "# Inject debug IDs into source files (modern approach)\nsentry-cli sourcemaps inject ./dist\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\""
      },
      {
        "title": "dSYMs (iOS)",
        "body": "# Upload dSYMs from Xcode archive\nsentry-cli debug-files upload --include-sources path/to/dSYMs\n\n# From derived data\nsentry-cli debug-files upload ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*/*.app.dSYM"
      },
      {
        "title": "ProGuard (Android)",
        "body": "sentry-cli upload-proguard mapping.txt --uuid=\"$UUID\""
      },
      {
        "title": "Check Debug Files",
        "body": "sentry-cli debug-files check path/to/file\nsentry-cli debug-files list"
      },
      {
        "title": "Send Test Event",
        "body": "sentry-cli send-event -m \"Test error message\"\nsentry-cli send-event -m \"Error\" --logfile /var/log/app.log"
      },
      {
        "title": "Query Issues",
        "body": "# List unresolved issues\nsentry-cli issues list\n\n# Resolve an issue\nsentry-cli issues resolve ISSUE_ID\n\n# Mute/ignore\nsentry-cli issues mute ISSUE_ID"
      },
      {
        "title": "Monitors (Cron)",
        "body": "# Wrap a cron job\nsentry-cli monitors run my-cron-monitor -- /path/to/script.sh\n\n# Manual check-ins\nsentry-cli monitors check-in my-monitor --status ok\nsentry-cli monitors check-in my-monitor --status error"
      },
      {
        "title": "GitHub Actions",
        "body": "- name: Create Sentry Release\n  uses: getsentry/action-release@v1\n  env:\n    SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n    SENTRY_ORG: my-org\n    SENTRY_PROJECT: my-project\n  with:\n    environment: production\n    sourcemaps: ./dist"
      },
      {
        "title": "Generic CI",
        "body": "export SENTRY_AUTH_TOKEN=\"$SENTRY_TOKEN\"\nexport SENTRY_ORG=\"my-org\"\nexport SENTRY_PROJECT=\"my-project\"\nVERSION=$(sentry-cli releases propose-version)\n\nsentry-cli releases new \"$VERSION\" --finalize\nsentry-cli releases set-commits \"$VERSION\" --auto\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\"\nsentry-cli releases deploys \"$VERSION\" new -e production"
      },
      {
        "title": "Common Flags",
        "body": "FlagDescription-o, --orgOrganization slug-p, --projectProject slug--auth-tokenOverride auth token--log-leveldebug/info/warn/error--quietSuppress output"
      },
      {
        "title": "Troubleshooting",
        "body": "# Check configuration\nsentry-cli info\n\n# Debug upload issues\nsentry-cli --log-level=debug sourcemaps upload ./dist\n\n# Validate source map\nsentry-cli sourcemaps explain ./dist/main.js.map\n\n# Check connectivity\nsentry-cli send-event -m \"test\" --log-level=debug"
      }
    ],
    "body": "Sentry CLI\n\nInteract with Sentry.io for error monitoring, release management, and debug artifact uploads.\n\nInstallation\n# macOS\nbrew install sentry-cli\n\n# npm (cross-platform)\nnpm install -g @sentry/cli\n\n# Direct download\ncurl -sL https://sentry.io/get-cli/ | bash\n\nAuthentication\n# Interactive login (opens browser)\nsentry-cli login\n\n# Or set token directly\nexport SENTRY_AUTH_TOKEN=\"sntrys_...\"\n\n# Verify\nsentry-cli info\n\n\nStore tokens in .sentryclirc or environment:\n\n[auth]\ntoken=sntrys_...\n\n[defaults]\norg=my-org\nproject=my-project\n\nReleases\nCreate & Finalize\n# Create release (usually git SHA or version)\nsentry-cli releases new \"$VERSION\"\n\n# Associate commits (links errors to commits)\nsentry-cli releases set-commits \"$VERSION\" --auto\n\n# Finalize when deployed\nsentry-cli releases finalize \"$VERSION\"\n\n# One-liner for CI\nsentry-cli releases new \"$VERSION\" --finalize\n\nDeploys\n# Mark release as deployed to an environment\nsentry-cli releases deploys \"$VERSION\" new -e production\nsentry-cli releases deploys \"$VERSION\" new -e staging\n\nList Releases\nsentry-cli releases list\nsentry-cli releases info \"$VERSION\"\n\nSource Maps\n\nUpload source maps for JavaScript error deobfuscation:\n\n# Upload all .js and .map files\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\"\n\n# With URL prefix (match your deployed paths)\nsentry-cli sourcemaps upload ./dist \\\n  --release=\"$VERSION\" \\\n  --url-prefix=\"~/static/js\"\n\n# Validate before upload\nsentry-cli sourcemaps explain ./dist/main.js.map\n\nInject Debug IDs (Recommended)\n# Inject debug IDs into source files (modern approach)\nsentry-cli sourcemaps inject ./dist\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\"\n\nDebug Files (iOS/Android)\ndSYMs (iOS)\n# Upload dSYMs from Xcode archive\nsentry-cli debug-files upload --include-sources path/to/dSYMs\n\n# From derived data\nsentry-cli debug-files upload ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*/*.app.dSYM\n\nProGuard (Android)\nsentry-cli upload-proguard mapping.txt --uuid=\"$UUID\"\n\nCheck Debug Files\nsentry-cli debug-files check path/to/file\nsentry-cli debug-files list\n\nEvents & Issues\nSend Test Event\nsentry-cli send-event -m \"Test error message\"\nsentry-cli send-event -m \"Error\" --logfile /var/log/app.log\n\nQuery Issues\n# List unresolved issues\nsentry-cli issues list\n\n# Resolve an issue\nsentry-cli issues resolve ISSUE_ID\n\n# Mute/ignore\nsentry-cli issues mute ISSUE_ID\n\nMonitors (Cron)\n# Wrap a cron job\nsentry-cli monitors run my-cron-monitor -- /path/to/script.sh\n\n# Manual check-ins\nsentry-cli monitors check-in my-monitor --status ok\nsentry-cli monitors check-in my-monitor --status error\n\nCI/CD Integration\nGitHub Actions\n- name: Create Sentry Release\n  uses: getsentry/action-release@v1\n  env:\n    SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n    SENTRY_ORG: my-org\n    SENTRY_PROJECT: my-project\n  with:\n    environment: production\n    sourcemaps: ./dist\n\nGeneric CI\nexport SENTRY_AUTH_TOKEN=\"$SENTRY_TOKEN\"\nexport SENTRY_ORG=\"my-org\"\nexport SENTRY_PROJECT=\"my-project\"\nVERSION=$(sentry-cli releases propose-version)\n\nsentry-cli releases new \"$VERSION\" --finalize\nsentry-cli releases set-commits \"$VERSION\" --auto\nsentry-cli sourcemaps upload ./dist --release=\"$VERSION\"\nsentry-cli releases deploys \"$VERSION\" new -e production\n\nCommon Flags\nFlag\tDescription\n-o, --org\tOrganization slug\n-p, --project\tProject slug\n--auth-token\tOverride auth token\n--log-level\tdebug/info/warn/error\n--quiet\tSuppress output\nTroubleshooting\n# Check configuration\nsentry-cli info\n\n# Debug upload issues\nsentry-cli --log-level=debug sourcemaps upload ./dist\n\n# Validate source map\nsentry-cli sourcemaps explain ./dist/main.js.map\n\n# Check connectivity\nsentry-cli send-event -m \"test\" --log-level=debug"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/iAhmadZain/sentry-cli",
    "publisherUrl": "https://clawhub.ai/iAhmadZain/sentry-cli",
    "owner": "iAhmadZain",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sentry-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/sentry-cli",
    "agentUrl": "https://openagent3.xyz/skills/sentry-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sentry-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sentry-cli/agent.md"
  }
}