chore(deps): update dependency universal-plugin to ^0.9.0 - #12
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
|
renovate
Bot
force-pushed
the
renovate/universal-plugin-0.x
branch
from
September 18, 2026 02:33
ad1e46f to
2372996
Compare
renovate
Bot
force-pushed
the
renovate/universal-plugin-0.x
branch
from
September 25, 2026 01:32
2372996 to
3a167ba
Compare
renovate
Bot
force-pushed
the
renovate/universal-plugin-0.x
branch
from
September 25, 2026 06:26
3a167ba to
e98e36b
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 contains the following updates:
^0.7.0→^0.9.0Release Notes
cyberuni/universal-plugin (universal-plugin)
v0.9.0Compare Source
Minor Changes
8fde5f7:plugin buildcopies each governance into the skills that use it, so a skill reads its rule sets from disk instead of runningnpx <pkg> governance show <name>at run time — no registry lookup per read, and no network while the skill works. The.mdfiles already in<skill>/references/governances/declare which governances that skill uses; the build rewrites each from the package that owns it, copies the governances those reference, transitively, and rewrites everygovernance show <other>pointer inside a copy into an instruction to load the sibling copy. The build fails when a declared file names no governance, when a referenced one has no copy to point at, or whenSKILL.mddoes not list a copy under References. Commit the copies — a git-sourced install has no build step — and run the newplugin build --checkin CI, which writes nothing and exits non-zero naming each copy that differs from its source.7836787: Rename thedoctorskill todoctor-universal-plugin. Other plugins ship their owndoctorskill, and the bare name collided when more than one was installed —buddy-agent-harnessalready resolved this by namespacing its own asdoctor-buddy-agent-harness. Invoke it as/universal-plugin:doctor-universal-plugin; the CLI's own next-step hints now name that too.v0.8.0Compare Source
Minor Changes
cbda7c2:config get --key packagePathnow readspackagePathinstead of rejecting it.--format jsonprints the declared path as a JSON string, relative to the plugin root, ornullwhen no npm package is declared.plugin version,publish sync-version, andconfig getshare one reader, so they cannot disagree about a declaration.config add --key packagePathis still rejected: the key is a string, not a plugin-registered array.1eab810: Move theupxrunner into its own package,@repobuddy/upx.A generic package runner is broader than this package's build/derivation charter — a placement note
in the spec has said so since it landed. It also made the wrong trade for
upxitself: the runner'svalue is install once globally, use everywhere, and that install should be small, so requiring
npm i -g universal-pluginto get a runner word worked against it.Nothing about
upx's behavior changed, and the emitter side stays here:plugin bundle --runner upx,the
adopt-upxskill, andupgrade-plugin's runner-word handling all still live in this package.Their coupling was always to the word
upx, never to its code.Install
@repobuddy/upxdirectly —npm i -g @repobuddy/upx. Theupxbin on this package nowre-exports it so existing global installs keep working, and prints a deprecation notice on
--help(never on a normal call —
upxis a transparent exec wrapper). It will be removed in the next major.49f1036: Adduniversal-plugin plugin validate, which checks the rootplugin.jsonwithout building anything. It reports every problem in one pass, in two groups:$schemaandnameare required,namemust match the schema's pattern, fields must have the right types, and top-level keys the standard does not define are rejected.descriptionandversion.--vendor <id>limits these checks to one vendor.An unknown vendor key in
harnessesis a warning, and--strictmakes it a violation. Output is TOON by default, with--format jsonand--fullavailable. Runninguniversal-plugin pluginwith no subcommand now validates the current project and lists its declared harnesses, instead of printing help.A manifest without
$schemanow failsplugin validate.plugin builddoes not check$schemaand still accepts it.plugin initalready writes$schema.Patch Changes
a40d5b0:doctornow readspackagePathonly from.agents/universal-plugin.json, resolved from the plugin root — the same file and baseplugin versionandpublish sync-versionuse. It no longer falls back toextensions["org.cyberuni.universal-plugin"].packagePath, which the CLI never honored, so doctor could pass a plugin thatversionstill treated as not shipping to npm. ApackagePathdeclared in the manifest extension is now reported asmisplaced-package-path.f0be1fa:doctornow accepts a repeatable--marketplace-root <path>flag to also validate a separately-cloned shared marketplace repository (e.g. a local clone ofcyberuni/marketplace) — previously only the plugin's own repository root was checked, so a bad entry that reached the shared catalog another way went unnoticed. A named--marketplace-rootthat does not exist is reported asmarketplace-root-missinginstead of being silently skipped.0211cae: State the CLI's dependency bundling explicitly in the build config.dist/cli.mjsalready shipped with its runtime dependencies inlined, and that is what lets theshipped skill launchers run from an installed plugin directory at all — those directories are copies
of a source checkout, so their
node_modulesis absent or incomplete. The build now declares thatintent through an explicit
deps.alwaysBundleblock rather than relying on it incidentally, so adependency added later cannot quietly become external and break the launchers.
@repobuddy/upxis deliberately excluded. It is reachable only from the separatebin/upx.mjsshim,which is not a build entry, so the
upxbin still resolves it at runtime from an installed tree.becd7ef: Fixplugin buildending with a next-step hint foruniversal-plugin plugin validate, a command that does not exist yet. A build that refreshed a marketplace catalog now points atuniversal-plugin marketplace validate(with--rootfor that repository), and any other successful build points at/universal-plugin:doctor.2469986: Fixuniversal-plugin --version(and-V) always printing0.0.0instead of the installed package's actual version.c6304c5:migrate-pluginnow bundles the package's CLI with tsdown as part of the migration, so the CLI runs from an installed plugin directory that has nonode_modules. It splitstsdown.config.tsinto a library config that keeps dependencies external and a CLI config that inlines them throughdeps.alwaysBundle. It then proves the result by running the CLI from an extracted tarball.The skill also covers plugins that live in a sibling workspace member such as
plugins/<name>/, merges a colliding readme instead of overwriting it, and notes thatpublish sync-versionreadspackagePathfrom.agents/universal-plugin.json, not from the manifest. It also repoints lint excludes, marketplace sources, and spec paths.1f82ccd:schema/extension.schema.jsonand theinit-universal-pluginstandard reference no longer advertisepackagePathunderextensions["org.cyberuni.universal-plugin"]. The CLI never read it there, so a plugin that declared it where the schema said silently fell back to the author-picks release model.packagePathlives in.agents/universal-plugin.jsonbesideplugin.json, as a path relative to the plugin root; a namespacepackagePathnow fails schema validation.4161472: Thedoctorandpublish-pluginskills now ask the CLI forpackagePath(config get --key packagePath) instead of reading.agents/universal-plugin.jsonthemselves, so they cannot drift fromplugin version. When the CLI is too old to answer, doctor reportspackage-path-unknownand skipsversion-driftandunreleased-contentrather than guessing.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.