Conversation
unional
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
September 21, 2026 19:40
9789ef4 to
f22749c
Compare
unional
force-pushed
the
changeset-release/main
branch
from
September 21, 2026 19:42
f22749c to
4996a10
Compare
This branch has not been deployed
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
universal-plugin@0.10.0
Minor Changes
e0b672d: A new
build-pluginskill is the entry point forplugin build. It runs the project's own build script when one exists, and otherwise the CLI shipped beside it throughscripts/build.mjs, so nothing is downloaded. It reads the vendor and catalog rows back, reports each warning about something a vendor cannot represent, hands abuilt 0result todoctor-universal-plugin, and uses--checkto gate CI on committed governance copies.738df81:
marketplace addlists a plugin the repository does not hold, so a repository can curate a marketplace instead of only publishing its own plugins. One positional says where the plugin lives and is read by shape: a./path, anowner/reposlug, a git URL, an npm package (npm:pkgor@scope/pkg), or<plugin>@<marketplace>— with--path,--npm,--github,--url, and--from-marketplaceto force the reading whereowner/repoand a relative path collide. Nothing is fetched: metadata comes from a path's ownplugin.json, an installednode_modulescopy, the entry being copied, or the--description/--version/--homepage/--repository/--license/--keywordsflags. A<plugin>@<marketplace>entry is resolved from a marketplace the runtime has already added, or from--from <dir>. A source that is relative to that marketplace is rewritten rather than copied, against the origin the runtime recorded for it or its clone's own git remote:./plugins/acedincyberuni/cyberplacebecomes{ "source": "git-subdir", "url": "https://github.com/cyberuni/cyberplace.git", "path": "plugins/aced" }, and an entry at the marketplace root becomesgithuborurl. An entry only reaches a catalog whose runtime resolves that source — npm goes to Claude Code and Codex, and Copilot CLI and Cursor are reportedskippedwith the reason rather than written a source they refuse.A regeneration no longer discards the entries it did not derive.
marketplace init,plugin build, andplugin initkeep an entry whose source is not a local path, and keep a non-local source on a plugin they do discover while refreshing its derived metadata — so a plugin distributed through npm is not rewritten to a repository path holding gitignored build output, andaddandinitcompose on one repository. A local-path entry discovery no longer finds is still dropped.The
marketplaceskill is now a gateway over three routes (init,add,validate), each with its own reference, and ships ascripts/add.mjswrapper.