investigate-sentry-issue

investigate-sentry-issue is a skill for Claude Code, Codex from desplega-ai/agent-swarm. It costs 17 tokens per session (591 once invoked), scanned A, original, MIT.

An investigation workflow for a Sentry issue, where Sentry is a service that collects application errors and their surrounding diagnostic details.

In plain words
What is it for?
Use it to inspect a Sentry issue by URL or ID, retrieve its metadata and recommended event, and review stack frames, breadcrumbs, tags, and context.
Why use it?
It gathers the error’s history, impact, stack trace, user actions, and environment information so the cause can be understood before fixing or triaging it.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect a Sentry issue by URL or ID, retrieve its metadata and recommended event, and review stack frames, breadcrumbs, tags, and context.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/desplega-ai/agent-swarm/investigate-sentry-issue
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add desplega-ai/agent-swarm --skill investigate-sentry-issue
Clone the repo
git clone --depth 1 https://github.com/desplega-ai/agent-swarm

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for investigate-sentry-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/desplega-ai/agent-swarm/investigate-sentry-issue/github.svg)](https://agentmods.dev/skills/desplega-ai/agent-swarm/investigate-sentry-issue)
Your own site
<a href="https://agentmods.dev/skills/desplega-ai/agent-swarm/investigate-sentry-issue"><img src="https://agentmods.dev/badge/skills/desplega-ai/agent-swarm/investigate-sentry-issue/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for investigate-sentry-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/desplega-ai/agent-swarm/investigate-sentry-issue"><img src="https://agentmods.dev/badge/skills/desplega-ai/agent-swarm/investigate-sentry-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 591 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00591
Opus 5 $0.00009 $0.00296
Sonnet 5 $0.00003 $0.00118
Haiku 4.5 $0.00002 $0.00059

Measured 11d ago against content hash d5594a6fbd81, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

investigate-sentry-issue scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/pi-skills/investigate-sentry-issue/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Investigate Sentry Issue

Investigate a Sentry issue to understand the error, gather context, and prepare for fixing or triaging.

Prerequisites

SENTRY_AUTH_TOKEN and SENTRY_ORG must be set. Verify with sentry-cli info.

Arguments

  • sentry-issue-url-or-id: A Sentry issue URL or just the issue ID (e.g., 123456)

Workflow

1. Parse the Input

If given a URL (https://sentry.io/organizations/{org}/issues/{issue_id}/), extract the issue ID.

2. Get Issue Overview

sentry-cli issues list --id <issue-id>

3. Get Detailed Info via REST API

Use https://sentry.io/api/0/organizations/${SENTRY_ORG}/issues/<issue-id>/ for metadata (first/last seen, event count, user impact, status).

4. Get Full Stacktrace

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 data

5. Analyze and Report

  1. Identify the failing file and line number
  2. Understand the error type and message
  3. Review breadcrumbs for the sequence of events
  4. Check tags for environment-specific issues

6. Take Action (if appropriate)

sentry-cli issues resolve <issue-id>    # Resolve
sentry-cli issues mute <issue-id>       # Mute
sentry-cli issues unresolve <issue-id>  # Unresolve

Search Query Syntax

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

Tips

  • Always get the recommended event first — it's curated for debugging
  • Check breadcrumbs to understand user actions before the error
  • If investigating from a Slack alert, the issue URL is in the alert message

Read the full file on GitHub · 76 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 76 lines · 17 tokens per session scan A d5594a6fbd81

Subscribe to this mod's changes

investigate-sentry-issue is a skill published in the GitHub repository desplega-ai/agent-swarm (761 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 591 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ppt-generation

Use this skill when the user requests to generate, create, or make presentations (PPT/PPTX). Creates visually rich slides by generating images for each slide and composing them into a PowerPoint file.

bytedance/deer-flow · 44 tokens

newsletter-generation

Use this skill when the user requests to generate, create, write, or draft a newsletter, email digest, weekly roundup, industry briefing, or curated content summary. Supports topic-based research, content curation from multiple sources, and professional formatting for email or web distribution. Trigger on requests…

bytedance/deer-flow · 88 tokens

data-analysis

Use this skill when the user uploads Excel (.xlsx/.xls) or CSV files and wants to perform data analysis, generate statistics, create summaries, pivot tables, SQL queries, or any form of structured data exploration. Supports multi-sheet Excel workbooks, aggregation, filtering, joins, and exporting results to…

bytedance/deer-flow · 69 tokens

image-generation

Use this skill when the user requests to generate, create, imagine, or visualize images including characters, scenes, products, or any visual content. Supports structured prompts and reference images for guided generation.

bytedance/deer-flow · 42 tokens

podcast-generation

Use this skill when the user requests to generate, create, or produce podcasts from text content. Converts written content into a two-host conversational podcast audio format with natural dialogue.

bytedance/deer-flow · 38 tokens

github-deep-research

Conduct multi-round deep research on any GitHub Repo. Use when users request comprehensive analysis, timeline reconstruction, competitive analysis, or in-depth investigation of GitHub. Produces structured markdown reports with executive summaries, chronological timelines, metrics analysis, and Mermaid diagrams.…

bytedance/deer-flow · 68 tokens