Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "microsoft-events-marketplace",
"interface": {
"displayName": "Microsoft Events"
},
"plugins": [
{
"name": "microsoft-events",
"source": {
"source": "local",
"path": "./"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In Learn MCP repo, we used to use ./ to point the plugin folder to repo root, so we can re-use the mcp.json and skills folder that we already have at repo root.

I tested with latest codex CLI, this trick no longer works. Codex CLI requires us to put related files under a sub folder.

},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Productivity"
}
]
}
31 changes: 31 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
Loading