plugins marketplace
← All plugins

sentry

v0.1.2

Inspect recent issues and events in Sentry from Codex.

Codex1 skill

by OpenAIMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/sentry/ inside the repository.

Layout

plugins/sentry/
├── .codex-plugin/plugin.json
└── skills/sentry/SKILL.md

Skills1

sentryskills/sentry/SKILL.md

Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.

Manifests1

plugins/sentry/.codex-plugin/plugin.json
{
  "name": "sentry",
  "version": "0.1.2",
  "description": "Inspect recent issues and events in Sentry from Codex.",
  "author": {
    "name": "OpenAI",
    "email": "support@openai.com",
    "url": "https://openai.com/"
  },
  "homepage": "https://sentry.io/",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [
    "sentry",
    "observability",
    "triage"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Sentry",
    "shortDescription": "Inspect recent Sentry issues and events",
    "longDescription": "Use Sentry skills to inspect recent issues, review events, and summarize production errors with a read-only workflow.",
    "developerName": "OpenAI",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://sentry.io/",
    "privacyPolicyURL": "https://sentry.io/privacy/",
    "termsOfServiceURL": "https://sentry.io/terms/",
    "defaultPrompt": [
      "Inspect recent Sentry issues and summarize the top production errors"
    ],
    "composerIcon": "./assets/sentry-small.svg",
    "logo": "./assets/sentry.png",
    "screenshots": [],
    "brandColor": "#362D59"
  }
}