fix(tui): show all plugins with correct per-project install state#34
Merged
bojanrajkovic merged 1 commit intomainfrom Feb 27, 2026
Merged
fix(tui): show all plugins with correct per-project install state#34bojanrajkovic merged 1 commit intomainfrom
bojanrajkovic merged 1 commit intomainfrom
Conversation
bb33cb1 to
41a73b7
Compare
Contributor
Author
Test plan
|
41a73b7 to
46ca687
Compare
d9ad095 to
cdd3770
Compare
The CLI returns all installed plugins globally but hides plugins from the available array if they're installed anywhere. This caused two bugs: 1. Plugins installed in other projects were hidden entirely (the old isRelevant filter excluded them) 2. Available plugins that happened to be installed elsewhere incorrectly showed as "installed, disabled" (buildInstalledByID merged data from all projects indiscriminately) Replace the filter-based approach with per-plugin relevance checks: - Installed in current project → show with correct scope and state - Installed at user scope → show with user scope and state - Installed elsewhere or only available → show without install state Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
cdd3770 to
706b479
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.
Summary
availablearray if they're installed anywhere — so plugins installed in other projects became invisibleprocessAvailablePluginunconditionally merged installed data from all projects, making available plugins appear as "installed, disabled" in the wrong projectisInstalledInProject:🤖 Generated with Claude Code