From 9c42b362fe95c7b260967a037b6f8104ed84947c Mon Sep 17 00:00:00 2001 From: Pieter de Bruin Date: Tue, 12 May 2026 08:59:28 +0200 Subject: [PATCH] Add Claude Code plugin and marketplace config Enables Claude Code users to install with: /plugin marketplace add microsoft/Build-CLI /plugin install microsoft-events@microsoft-events-marketplace Follows the MicrosoftDocs/mcp pattern for Claude plugin packaging. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .claude-plugin/marketplace.json | 13 +++++++++++++ .claude-plugin/plugin.json | 14 ++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .claude-plugin/marketplace.json create mode 100644 .claude-plugin/plugin.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 0000000..d47237a --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,13 @@ +{ + "name": "microsoft-events-marketplace", + "owner": { + "name": "Microsoft" + }, + "plugins": [ + { + "name": "microsoft-events", + "source": "./", + "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." + } + ] +} diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..11887b1 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,14 @@ +{ + "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", + "keywords": ["microsoft", "build", "ignite", "events", "sessions", "learn"], + "license": "Apache-2.0", + "skills": "./skills/", + "mcpServers": "./.mcp.json" +}