Add Codex plugin support#24
Conversation
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>
|
Tested the Codex plugin install flow on the desktop app — skill didn't auto-load via the plugin/marketplace path. I tried installing this through the Codex desktop app's "Add marketplace" dialog (Plugins → Create → Add marketplace) pointing at the repo with When I opened a new Codex chat with the repo as the working directory, Codex only picked up the What worked: Adding the skill to Suggestion: Consider adding
|
| "name": "microsoft-events", | ||
| "source": { | ||
| "source": "local", | ||
| "path": "./" |
There was a problem hiding this comment.
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.
Adds
.codex-plugin/plugin.jsonand.agents/plugins/marketplace.json, enabling OpenAI Codex users to install with:Includes full
interfacemetadata (displayName, description, default prompts, brand color, privacy/TOS links) for plugin directory display. Follows the official Codex plugin spec and the MicrosoftDocs/mcp pattern.cc @mikekinsman @TianqiZhang