From 7f87387c77142841e6bee323dac4f56f1dcf0b7e Mon Sep 17 00:00:00 2001 From: PickleNik <31113245+PickleNik@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:50:43 -0400 Subject: [PATCH] add codex plugin manifest --- .agents/plugins/marketplace.json | 21 +++++++++++++++ .codex-plugin/plugin.json | 45 ++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 .agents/plugins/marketplace.json create mode 100644 .codex-plugin/plugin.json diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json new file mode 100644 index 0000000..aab39c6 --- /dev/null +++ b/.agents/plugins/marketplace.json @@ -0,0 +1,21 @@ +{ + "name": "sentry-for-ai", + "interface": { + "displayName": "Sentry for AI" + }, + "plugins": [ + { + "name": "sentry", + "source": { + "source": "url", + "url": "https://github.com/getsentry/sentry-for-ai.git", + "ref": "main" + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Engineering" + } + ] +} diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..bb0e6d1 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,45 @@ +{ + "name": "sentry", + "version": "1.0.0", + "description": "Sentry plugin for AI coding assistants with MCP, commands, and skills for setup, debugging, and monitoring workflows.", + "author": { + "name": "Sentry", + "url": "https://sentry.io/" + }, + "homepage": "https://github.com/getsentry/sentry-for-ai", + "repository": "https://github.com/getsentry/sentry-for-ai", + "license": "MIT", + "keywords": [ + "sentry", + "debugging", + "monitoring", + "error-tracking", + "observability" + ], + "skills": "./skills/", + "mcpServers": "./.mcp.json", + "interface": { + "displayName": "Sentry", + "shortDescription": "Set up Sentry, debug production issues, and query Sentry from Codex", + "longDescription": "Use Sentry skills and the Sentry MCP server to add Sentry to projects, inspect and fix production issues, review code with Sentry context, create alerts, and configure monitoring workflows.", + "developerName": "Sentry", + "category": "Engineering", + "capabilities": [ + "Interactive", + "Read", + "Write" + ], + "websiteURL": "https://sentry.io/", + "privacyPolicyURL": "https://sentry.io/privacy/", + "termsOfServiceURL": "https://sentry.io/terms/", + "defaultPrompt": [ + "Add Sentry to my project", + "Fix the recent Sentry errors", + "Create a Slack alert for high-priority issues" + ], + "brandColor": "#584674", + "composerIcon": "./assets/logo.svg", + "logo": "./assets/logo.svg", + "screenshots": [] + } +}