feat(plugin-creator): default to personal marketplace handoff#237
Merged
efrazer-oai merged 2 commits intoMay 12, 2026
Merged
Conversation
xl-openai
approved these changes
May 12, 2026
xl-openai
pushed a commit
that referenced
this pull request
May 13, 2026
## Summary Plugin Creator now documents the shorter local-plugin handoff URL that the app can interpret directly. [#237](#237) teaches the skill to end marketplace-backed creation flows with named View and Share links; this follow-up updates those examples so the skill only emits the normalized plugin name, the absolute marketplace path, and optional share mode. The documented shape is: ```txt codex://plugins/<normalized-plugin-name>?marketplacePath=<absolute-marketplace-json-path> codex://plugins/<normalized-plugin-name>?marketplacePath=<absolute-marketplace-json-path>&mode=share ``` The skill text now states exactly where the normalized plugin name belongs, exactly where the absolute marketplace path belongs, and that it should not add `pluginName` or `hostId` query parameters. ## Testing Tests: plugin-creator skill validation.
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
Plugin creation now defaults to the personal marketplace path that Codex can render and share directly.
Before this change, the curated
plugin-creatorskill centered repo-local plugin scaffolds and repo-root marketplace updates. That made the common personal-plugin path less explicit, and the public skill copy did not include the final deeplink handoff back into Codex after marketplace-backed creation.This PR makes personal plugins the default flow. Marketplace-backed scaffolds now default to
~/plugins/<plugin-name>plus~/.agents/plugins/marketplace.json. If the current Git repo already has.agents/plugins/marketplace.jsonand the user has not said whether the plugin is personal or team-shared, the skill asks which marketplace to update. The skill also ends marketplace-backed creation with namedView <plugin-name>andShare <plugin-name>deeplinks.What changed
policy.installationandpolicy.authenticationshapeDesign decisions
codex://...URLs.Testing
Tests: skill validation, Python compile checks, personal-default scaffold smoke, repo-override scaffold smoke, and whitespace checks.