Summary
The 0.0.9 release is advertised but isn't actually installable.
latest.json and package.json are at 0.0.9, but the plugin manifest plugin/.claude-plugin/plugin.json is still 0.0.8 on main.
Claude Code resolves the installable version from the manifest, so /plugin install supermemory@supermemory-plugins resolves to 0.0.8, sees it's already installed, and does nothing.
Impact: Users get a persistent "v0.0.9 available" update notice that no update action can ever satisfy, because there's no 0.0.9 manifest to install.
Steps to reproduce
- On an up-to-date marketplace clone, run
/plugin marketplace update supermemory-plugins.
- Run
/plugin install supermemory@supermemory-plugins.
- Plugin stays at 0.0.8; the "0.0.9 available" notice persists.
Evidence (current main, commit dd805f4)
latest.json → "version": "0.0.9"
package.json → "version": "0.0.9"
plugin/.claude-plugin/plugin.json → "version": "0.0.8" ← not bumped
Commit 178acc2 ("Bump plugin version to 0.0.9") updated package.json and latest.json but missed the plugin manifest.
Fix
Bump version in plugin/.claude-plugin/plugin.json to 0.0.9 to match (and tag the release, if that's part of your flow).
Summary
The
0.0.9release is advertised but isn't actually installable.latest.jsonandpackage.jsonare at0.0.9, but the plugin manifestplugin/.claude-plugin/plugin.jsonis still0.0.8onmain.Claude Code resolves the installable version from the manifest, so
/plugin install supermemory@supermemory-pluginsresolves to 0.0.8, sees it's already installed, and does nothing.Impact: Users get a persistent "v0.0.9 available" update notice that no update action can ever satisfy, because there's no 0.0.9 manifest to install.
Steps to reproduce
/plugin marketplace update supermemory-plugins./plugin install supermemory@supermemory-plugins.Evidence (current
main, commitdd805f4)latest.json→"version": "0.0.9"package.json→"version": "0.0.9"plugin/.claude-plugin/plugin.json→"version": "0.0.8"← not bumpedCommit
178acc2("Bump plugin version to 0.0.9") updatedpackage.jsonandlatest.jsonbut missed the plugin manifest.Fix
Bump
versioninplugin/.claude-plugin/plugin.jsonto0.0.9to match (and tag the release, if that's part of your flow).