sentry

sentry is a skill for Claude Code, Codex from intentic/intentic. It costs 35 tokens per session (361 once invoked), scanned A, original, MIT.

A connection for querying Sentry, a service that collects application errors and groups them into issues.

In plain words
What is it for?
It is for listing Sentry organizations and projects, finding unresolved errors, and viewing the latest event for an issue.
Why use it?
It helps identify unresolved problems and inspect their latest recorded events without searching logs manually.

Skill for Claude CodeCodex

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

Good fit It is for listing Sentry organizations and projects, finding unresolved errors, and…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/intentic/intentic/sentry
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 intentic/intentic --skill sentry
Clone the repo
git clone --depth 1 https://github.com/intentic/intentic

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 sentry

README.md
[![agentmods](https://agentmods.dev/badge/skills/intentic/intentic/sentry.svg)](https://agentmods.dev/skills/intentic/intentic/sentry)
Your own site
<a href="https://agentmods.dev/skills/intentic/intentic/sentry"><img src="https://agentmods.dev/badge/skills/intentic/intentic/sentry.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 361 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00035 $0.00361
Opus 5 $0.00017 $0.00180
Sonnet 5 $0.00007 $0.00072
Haiku 4.5 $0.00003 $0.00036

Measured today against content hash c5f70dd78e13, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

sentry scanned grade A with 1 finding 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 today.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Token in `$SENTRY_TOKEN`, base in `$SENTRY_URL`, org slug in `$SENTRY_ORG` (may be empty). Talk to `$SENTRY_URL/api/0` with `curl`.
_extensions/connectors/skills/sentry/SKILL.md · 18 lines

What it actually says

Sentry (connected)

Token in $SENTRY_TOKEN, base in $SENTRY_URL, org slug in $SENTRY_ORG (may be empty). Talk to $SENTRY_URL/api/0 with curl. Header: -H "Authorization: Bearer $SENTRY_TOKEN".

  • If $SENTRY_ORG is empty, list orgs first and use a slug below: curl -s -H "Authorization: Bearer $SENTRY_TOKEN" "$SENTRY_URL/api/0/organizations/" | jq '.[] | {slug, name}'
  • List projects: curl -s -H "Authorization: Bearer $SENTRY_TOKEN" "$SENTRY_URL/api/0/organizations/$SENTRY_ORG/projects/" | jq '.[] | {slug, platform}'
  • Unresolved issues: curl -s -H "Authorization: Bearer $SENTRY_TOKEN" "$SENTRY_URL/api/0/organizations/$SENTRY_ORG/issues/?query=is:unresolved&limit=25" | jq '.[] | {shortId, title, count, culprit}'
  • Latest event for an issue: curl -s -H "Authorization: Bearer $SENTRY_TOKEN" "$SENTRY_URL/api/0/organizations/$SENTRY_ORG/issues/<ISSUE_ID>/events/latest/" | jq '{eventID, message}'

Notes: SaaS base is https://sentry.io (or a region host like https://us.sentry.io); self-hosted uses your instance URL.

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. today First seen · 18 lines · 35 tokens per session scan A c5f70dd78e13

Subscribe to this mod's changes

sentry is a skill published in the GitHub repository intentic/intentic (32 stars, last pushed today), licensed MIT. It adds 35 tokens to every session and 361 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.

Related

Other skills, from other repositories

cce-routing

Use Cursor Bridge's read-only cursorcontextengine for unfamiliar project understanding when the exact code location is unknown or the task requires tracing behavior, symbols, callers and callees, data flow, registrations, interface implementations, ownership boundaries, or cross-module relationships. Trigger for…

Vanyangyang/cursor-bridge · 168 tokens

gh-fix-ci

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions. Use the GitHub app from this plugin for PR metadata and patch context, and use gh for Actions check and log inspection before implementing any approved fix.

rojim666/SztuCode · 58 tokens

rel-ai-debugging

Use when repository behavior is reproducibly wrong and needs causal diagnosis or repair, including errors, broken tests, crashes, regressions, failed contracts, or incorrect runtime behavior. Do not use for general audits or final verification when no active defect is being diagnosed.

Kyne0328/rel-ai-local-coding-agent · 56 tokens

rel-ai-investigation

Use for read-only repository questions that need evidence, including architecture audits, feasibility studies, dependency or caller tracing, impact analysis, implementation-status checks, and proof of how something works. Do not use to implement fixes or for final completion or release verification of changes already…

Kyne0328/rel-ai-local-coding-agent · 59 tokens

fix-default

A default procedure for handling bug fixes, organised as a three-step scan and a CP process. The input does not explain what the three steps or CP process contain.

devcodex-labs/devcodex · 21 tokens

repair-prevention-assessment

A completion gate for fixes and self-repair work. It creates a machine-checkable assessment that separates evidence a current issue is closed from evidence that the fix will remain effective.

devcodex-labs/devcodex · 75 tokens