Version Packages - #21
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
June 15, 2026 16:23
6a7c7f3 to
3f87177
Compare
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
@ai-plugin-marketplace/cli@0.3.0
Minor Changes
#22
5795854Thanks @mike-north! - Guard against duplicate marketplace names that collide on install, and giveaipm inita distinctmarketplace name by default.
Two marketplaces registered under the same
namecollide on install: the later one shadows andstrands the earlier one's plugins. The template historically shipped
marketplace.name = "ai-plugin-marketplace"(the upstream's own name), so forks that never renamed it collided withupstream. These two changes make that failure mode hard to fall into.
aipm validatewarns on a default/placeholder marketplace name. A new soft (warning-only)default-marketplace-namefinding fires when the repo's effective marketplacenameis a knownplaceholder (
ai-plugin-marketplace,my-ai-plugins) or itsowner.nameis a placeholder(
AI Plugin Marketplace Template,Your Name). The effective identity is read fromaipm.workspace.tswhen present, otherwise from a committed repo-root registry's top-levelname/owner.name; when no marketplace metadata is declared, nothing is emitted. The finding isalways soft — it never fails
aipm validate— and includes a hint to rename to a unique value(convention
"<your-handle>-ai-plugins").aipm init --name <name>and a distinct default marketplace name.aipm initnow writes anamed marketplace into both repo-root registries
(
{ "name", "owner": { "name" }, "plugins": [] }) instead of a nameless{ "plugins": [] }. Themarketplace name defaults to
${USER}-ai-plugins(falling back to themy-ai-pluginsplaceholderwhen
$USERis unset, whichaipm validatethen flags as a nudge to set a real name) and can beoverridden with
aipm init --name <name>. A newInitOptions.marketplaceNamecarries theresolved name; the default is resolved at the I/O boundary so the file-templating layer stays a
pure function of its inputs.
Patch Changes
bbaeaed,5795854]:@ai-plugin-marketplace/core@0.4.0
Minor Changes
#20
bbaeaedThanks @mike-north! -aipm initnow seeds a comprehensive.gitignoreand stops refresh-managing it.aipm initpreviously wrote only a 4-line.gitignore, so a brand-newscaffold could easily commit secrets. The seeded
.gitignorenow ignores.env*,*.log,coverage, common caches, andscratch/(while retainingnode_modules/,*.tsbuildinfo,*.local.*, and.DS_Store). Build output (dist/) is deliberately still tracked..gitignoreis now seed-only — written byinitandowned by the user thereafter. It has been removed from the
aipm init --refreshmanaged set(
.aipm/scaffold.jsonnow tracks only.github/workflows/ci.yml), so user additions to.gitignoreare never clobbered or perpetually flagged as conflicts.#22
5795854Thanks @mike-north! - Guard against duplicate marketplace names that collide on install, and giveaipm inita distinctmarketplace name by default.
Two marketplaces registered under the same
namecollide on install: the later one shadows andstrands the earlier one's plugins. The template historically shipped
marketplace.name = "ai-plugin-marketplace"(the upstream's own name), so forks that never renamed it collided withupstream. These two changes make that failure mode hard to fall into.
aipm validatewarns on a default/placeholder marketplace name. A new soft (warning-only)default-marketplace-namefinding fires when the repo's effective marketplacenameis a knownplaceholder (
ai-plugin-marketplace,my-ai-plugins) or itsowner.nameis a placeholder(
AI Plugin Marketplace Template,Your Name). The effective identity is read fromaipm.workspace.tswhen present, otherwise from a committed repo-root registry's top-levelname/owner.name; when no marketplace metadata is declared, nothing is emitted. The finding isalways soft — it never fails
aipm validate— and includes a hint to rename to a unique value(convention
"<your-handle>-ai-plugins").aipm init --name <name>and a distinct default marketplace name.aipm initnow writes anamed marketplace into both repo-root registries
(
{ "name", "owner": { "name" }, "plugins": [] }) instead of a nameless{ "plugins": [] }. Themarketplace name defaults to
${USER}-ai-plugins(falling back to themy-ai-pluginsplaceholderwhen
$USERis unset, whichaipm validatethen flags as a nudge to set a real name) and can beoverridden with
aipm init --name <name>. A newInitOptions.marketplaceNamecarries theresolved name; the default is resolved at the I/O boundary so the file-templating layer stays a
pure function of its inputs.