fix: declare ON_USE rather than ON_INSTALL for the Codex plugin policy - #38
Merged
Conversation
This plugin ships skills only: no MCP server, no API, nothing to sign in to. ON_INSTALL is what service connectors declare, and it risks Codex asking users for credentials we never take. Both values are in production use, so this is not a spec question but a semantic one, and the closest analogues settle it: OpenAI's own skills-only local plugins -- documents, pdf, spreadsheets, presentations, template-creator -- all declare ON_USE, while ON_INSTALL is what github, slack, stripe, notion and figma use. 21 shipped plugins declare ON_USE.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
One line in
.agents/plugins/marketplace.json:Why
This plugin ships skills only. No MCP server, no API, nothing to sign in to.
ON_INSTALLis what a service connector declares, and it risks Codex asking users for credentials we never take.Both values are in production use, so this is not a spec question but a semantic one, and the closest analogues settle it. OpenAI's own skills-only local plugins all declare
ON_USE:documents,pdf,spreadsheets,presentations,template-creator.ON_INSTALLis whatgithub,slack,stripe,notionandfigmadeclare. Across the plugins visible in a local Codex install, 21 declareON_USEand none of them connect to an external service the way ours does not.The published spec names only
ON_INSTALLand does not cover the no-auth case, which is why this was left alone in #37 pending evidence rather than guessed at.Scope
One line. Nothing else in the manifest changes.