fix: claude plugin update 升级命令失效——同步 marketplace.json 版本号并防止复发#39
Open
Patrick5D wants to merge 2 commits into
Open
fix: claude plugin update 升级命令失效——同步 marketplace.json 版本号并防止复发#39Patrick5D wants to merge 2 commits into
Patrick5D wants to merge 2 commits into
Conversation
…revent regression All plugins[].version were hardcoded as "1.0.0" and never updated on release, causing `claude plugin update` to always report "already at latest version". - Bump all 24 plugin versions to 2.15.1 (current VERSION) - Add .github/workflows/sync-plugin-versions.yml to auto-sync on future releases Closes dontbesilent2025#38
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.
关联 Issue
Closes #38
问题
.claude-plugin/marketplace.json里所有plugins[].version从发布至今一直是"1.0.0",从未随版本迭代更新。Claude Code 的升级检查只对比这个字段,导致
claude plugin update永远输出「已是最新版本」,用户拿不到任何新 skill。改动
存量修复 — 把 24 个插件的
version从1.0.0统一改为当前版本2.15.1防止复发 — 新增
.github/workflows/sync-plugin-versions.yml:每次VERSION文件变更时自动同步所有plugins[].version,无需手动维护验证
修复后执行升级命令将正确检测到版本差异并完成更新。