fix: sync two stranded marketplace manifests to 1.0.2#27
Merged
Conversation
.cursor-plugin/marketplace.json and .agents/plugins/marketplace.json were left at 0.1.1 - missed across the 1.0.0, 1.0.1, and 1.0.2 bumps, so 1.0.2 shipped with inconsistent plugin versions across the 7 manifests. Each agent gates update detection on the manifest version string, so a stranded manifest can freeze installed users on an old version. Bring both to 1.0.2 so all 7 manifests agree. The durable fix - a single VERSION source plus a bump-version.sh --check CI guard - is tracked separately as the re-implementation of plan 0007. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 27, 2026
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.
Problem
.cursor-plugin/marketplace.jsonand.agents/plugins/marketplace.jsonwere stuck at 0.1.1 - the version before 1.0.0 - so they were missed across the 1.0.0, 1.0.1, and 1.0.2 bumps. There are 7 version-bearing manifests; only 5 were being bumped. Because each agent gates update detection on the manifestversionstring, a stranded manifest can freeze installed users on an old version, and 1.0.2 shipped inconsistent.Fix
Bump both stranded manifests'
plugins[0].versionfrom 0.1.1 to 1.0.2 so all 7 manifests agree.Follow-up
The durable fix - a single
VERSIONsource of truth plus abump-version.sh --checkCI guard that fails when the manifests disagree - is the re-implementation of plan 0007 (superseding the stale PR #16), tracked separately.Testing
./test.shpasses; all 7 manifests verified at 1.0.2.🤖 Generated with Claude Code