From 85552af8332e7aa7c132e6dd0336a1d750b8d857 Mon Sep 17 00:00:00 2001 From: Pieter de Bruin Date: Tue, 12 May 2026 10:35:01 +0200 Subject: [PATCH] Add Codex plugin and marketplace config Enables OpenAI Codex users to install with: codex plugin marketplace add microsoft/Build-CLI Includes full interface metadata for plugin directory display. Follows the MicrosoftDocs/mcp pattern and official Codex plugin spec. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .agents/plugins/marketplace.json | 20 ++++++++++++++++++++ .codex-plugin/plugin.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 51 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..ad6c616 --- /dev/null +++ b/.agents/plugins/marketplace.json @@ -0,0 +1,20 @@ +{ + "name": "microsoft-events-marketplace", + "interface": { + "displayName": "Microsoft Events" + }, + "plugins": [ + { + "name": "microsoft-events", + "source": { + "source": "local", + "path": "./" + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Productivity" + } + ] +} diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..f8e6868 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,31 @@ +{ + "name": "microsoft-events", + "description": "Connect your project to Microsoft Build and Ignite sessions — discover relevant talks, explore what's new for your stack, and plan next steps from your development environment.", + "version": "1.0.0", + "author": { + "name": "Microsoft" + }, + "homepage": "https://github.com/microsoft/Build-CLI", + "repository": "https://github.com/microsoft/Build-CLI", + "license": "Apache-2.0", + "keywords": ["microsoft", "build", "ignite", "events", "sessions", "learn"], + "skills": "./skills/", + "mcpServers": "./.mcp.json", + "interface": { + "displayName": "Microsoft Events", + "shortDescription": "Discover Microsoft Build and Ignite sessions relevant to your project.", + "longDescription": "Connect your project to Microsoft Build and Ignite sessions — discover relevant talks, explore what's new for your stack, and plan next steps from your development environment.", + "developerName": "Microsoft", + "category": "Productivity", + "capabilities": ["Research", "Reference"], + "websiteURL": "https://github.com/microsoft/Build-CLI", + "privacyPolicyURL": "https://privacy.microsoft.com/privacystatement", + "termsOfServiceURL": "https://www.microsoft.com/servicesagreement", + "defaultPrompt": [ + "What Build sessions are relevant to my project?", + "What's new at Build for Azure Cosmos DB?", + "Tell me about session BRK155" + ], + "brandColor": "#0078D4" + } +}