用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/desplega-ai/agent-swarm --skill investigate-sentry-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | investigate-sentry-issue |
| description | Investigate and triage a Sentry error issue |
Investigate a Sentry issue to understand the error, gather context, and prepare for fixing or triaging.
SENTRY_AUTH_TOKEN and SENTRY_ORG must be set. Verify with sentry-cli info.
sentry-issue-url-or-id: A Sentry issue URL or just the issue ID (e.g., 123456)If given a URL (https://sentry.io/organizations/{org}/issues/{issue_id}/), extract the issue ID.
sentry-cli issues list --id <issue-id>
Use https://sentry.io/api/0/organizations/${SENTRY_ORG}/issues/<issue-id>/ for metadata (first/last seen, event count, user impact, status).
Use the recommended event endpoint: .../issues/<issue-id>/events/recommended/
Key jq paths for the response:
.entries[] | select(.type == "exception") — exception with stacktrace.entries[] | select(.type == "exception") | .data.values[].stacktrace.frames — stack frames.entries[] | select(.type == "breadcrumbs") — actions leading to the error.tags — environment, browser, OS info.context — custom context datasentry-cli issues resolve <issue-id> # Resolve
sentry-cli issues mute <issue-id> # Mute
sentry-cli issues unresolve <issue-id> # Unresolve
Use these filters with sentry-cli issues list --query:
| Filter | Example | Description |
|---|---|---|
is: | is:unresolved | Issue status |
lastSeen: | lastSeen:-2d | Seen within time range |
message: | message:undefined | Match error message |
issue.category: | issue.category:error | Error category |