Add Codex plugin marketplace metadata#23
Merged
Conversation
…on to reflect the addition of the webflow-designer-tools plugin, increasing the total plugin count to four. Update documentation to match the new repository structure.
viratatwebflow
approved these changes
May 9, 2026
…m the repository, streamlining the project structure by eliminating unused files.
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.json,.agents/plugins/marketplace.json, and Codex MCP configuration.skills/directory so Codex can load them from one plugin.plugins/*/skills/*packs by using root-level symlinks instead of copying the skill files.scripts/codex-sync-from-packs.shto regenerate the symlinked Codexskills/view from the canonical plugin pack directories.Why Codex packaging is different from Claude packaging
Claude uses
.claude-plugin/marketplace.jsonto publish multiple plugin packs from this repo, with each marketplace entry pointing at a separate folder underplugins/. Each pack owns its own.claude-plugin/plugin.jsonand local./skills/directory.For this PR, we want Codex to install one Webflow plugin. Codex expects a plugin root with
.codex-plugin/plugin.json, and the manifest points to bundled components with plugin-relative paths such as"skills": "./skills/"and"mcpServers": "./.codex-mcp.json". Because the existing skills live across multiple plugin pack directories, the rootskills/directory acts as the single Codex-facing skill index while symlinking back to the canonical skill folders.This keeps the Codex plugin install shape simple without introducing a second copied source of truth for the 24 Webflow skills.
Validation
jqparses.agents/plugins/marketplace.json,.codex-plugin/plugin.json,.codex-mcp.json, and.mcp.json.scripts/codex-sync-from-packs.shrebuilds 24 Codex-facing skill symlinks.find -L skills -maxdepth 2 -name SKILL.mdresolves all 24 skills through the rootskills/directory.