Curated
Chapter 34 of 44
Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry CLI; perform read-only queries using…
2 minutes · 350 words · 14 sections
sentry auth login or set SENTRY_AUTH_TOKEN as an env var..env files, source code, config defaults, and directory names. Only specify <org>/<project> if auto-detection fails or picks the wrong target.24h, environment production, limit 20.--json when processing output programmatically. Use --json --fields to select specific fields and reduce output size.sentry schema <resource> to discover API endpoints quickly.If the CLI is not installed, give the user these steps:
curl https://cli.sentry.dev/install -fsS | bashsentry auth loginsentry auth statusUse the sentry CLI for all queries. It handles authentication, org/project detection, pagination, and retries automatically. Use --json for machine-readable output.
sentry issue list \
--query "is:unresolved environment:production" \
--period 24h \
--limit 20 \
--json --fields shortId,title,priority,level,statusIf auto-detection doesn’t resolve org/project, pass them explicitly:
sentry issue list {your-org}/{your-project} \
--query "is:unresolved environment:production" \
--period 24h \
--limit 20 \
--jsonsentry issue view {ABC-123} --jsonUse the short ID format (e.g., ABC-123), not the numeric ID.
sentry issue view {ABC-123}sentry issue events {ABC-123} --limit 20 --jsonsentry event view {your-org}/{your-project}/{event_id} --jsonsentry issue explain {ABC-123}sentry issue plan {ABC-123}For endpoints not covered by dedicated CLI commands, use sentry api:
sentry api /api/0/organizations/{your-org}/ --method GETUse sentry schema to discover available API endpoints:
sentry schema issuesorg_slug, project_slug: auto-detected by the CLI from DSNs, env vars, and directory names. Override with positional {your-org}/{your-project} if auto-detection fails.time_range: default 24h (pass as --period 24h).environment: default prod (pass as part of --query, e.g., environment:production).limit: default 20 (pass as --limit).search_query: optional --query parameter, uses Sentry search syntax (e.g., is:unresolved, assigned:me).issue_short_id: use directly with sentry issue view.{your-org}{your-project}{ABC-123}Example prompt: “List the top 10 open issues for prod in the last 24h.” Expected: ordered list with titles, short IDs, counts, last seen.
Install this repository
npx skills add openai/skillsSkills install per repository, not per chapter — the CLI has no documented per-skill form, so we do not print one.
Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry CLI; perform read-only queries using the `sentry` command.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 14 July 2026.SKILL.md, not by matching a directory convention. 2 distinct layouts observed: skills/.curated/*/SKILL.md, skills/.system/*/SKILL.md.h1 and no skipped levels:/openai/skills.md, and each chapter at its own .md URL.4 files · 13 KB
Everything this skill ships beside its prose. 3 of them are set here as subchapters of chapter 34; the other 1 is described rather than reproduced.
Templates, schemas and fixtures the skill draws on.
Everything else published alongside the skill.