-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Open
Labels
area:toolsbugSomething isn't workingSomething isn't workinghas reproHas detailed reproduction stepsHas detailed reproduction stepsplatform:windowsIssue specifically occurs on WindowsIssue specifically occurs on Windows
Description
Bug Description
Plugins installed from third-party marketplaces (non-official) don't appear in the /plugin list command output, even though they are correctly installed and registered in installed_plugins.json.
Steps to Reproduce
- Add a third-party marketplace (e.g.,
claude-code-workflowsfromwshobson/agents) - Install a plugin from that marketplace:
/plugin install git-pr-workflows@claude-code-workflows - Run
/pluginor/plugin listto view installed plugins - The plugin doesn't appear in the list
- Try to install again:
/plugin install git-pr-workflows@claude-code-workflows - Get message: "Plugin 'git-pr-workflows@claude-code-workflows' is already installed"
Expected Behavior
All installed plugins should appear in the /plugin list, regardless of which marketplace they came from.
Actual Behavior
- The install command correctly recognizes the plugin is already installed
- The plugin files exist in
~/.claude/plugins/cache/ - The plugin is registered in
~/.claude/plugins/installed_plugins.json - But the list command shows nothing (or only official plugins)
Environment
- OS: Windows 11
- Claude Code Version: Latest (as of 2025-01-07)
Additional Context
The installed_plugins.json shows plugins with "isLocal": true flag. This might be causing the filtering issue:
"git-pr-workflows@claude-code-workflows": [
{
"scope": "user",
"installPath": "C:\Users\Omar\.claude\plugins\cache\claude-code-workflows\git-pr-workflows\1.2.1",
"version": "1.2.1",
"installedAt": "2026-01-03T15:52:03.936Z",
"lastUpdated": "2026-01-03T15:52:03.936Z",
"isLocal": true
}
]The known_marketplaces.json correctly shows both marketplaces:
claude-plugins-official(fromanthropics/claude-plugins-official)claude-code-workflows(fromwshobson/agents)
🤖 Generated with Claude Code
Metadata
Metadata
Assignees
Labels
area:toolsbugSomething isn't workingSomething isn't workinghas reproHas detailed reproduction stepsHas detailed reproduction stepsplatform:windowsIssue specifically occurs on WindowsIssue specifically occurs on Windows