feat: add Codex plugin marketplace#25
Draft
ankitranjan7 wants to merge 1 commit into
Draft
Conversation
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.
Summary
.codex-plugin/plugin.jsonfor Webcmd..agents/plugins/marketplace.jsonso Codex can discover Webcmd as a marketplace plugin.Reasoning
Codex users should not need to run both
npx skills addand a Codex-specific setup. The Codex-native path is a plugin marketplace entry that bundles the Webcmd discovery skill. That matches the pattern used by Codex plugin projects: a plugin manifest at.codex-plugin/plugin.json, marketplace metadata under.agents/plugins/marketplace.json, and install throughcodex plugin marketplace add ...followed by/plugins.This PR is stacked on the single-discovery-skill PR because the Codex plugin should expose only
skills/webcmd, not the old multi-skill install surface.Industry practice followed
.codex-plugin/plugin.jsonlocation..agents/plugins/marketplace.json, using a Git-backed source entry for this repo../skills/, which is intentionally only the Webcmd discovery skill after the dependency PR.Testing
uv run --with pyyaml python /Users/ankitranjan/.codex/skills/.system/plugin-creator/scripts/validate_plugin.py /Users/ankitranjan/Work/webcmdnode -e "JSON.parse(require('fs').readFileSync('.codex-plugin/plugin.json','utf8')); JSON.parse(require('fs').readFileSync('.agents/plugins/marketplace.json','utf8')); console.log('json ok')"npm pack --dry-run