plugins: add @agentPlugins to marketplace view#297063
Merged
connor4312 merged 4 commits intomainfrom Feb 23, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds support for browsing and managing agent plugins through the VS Code marketplace view by integrating the @agentPlugins search query into the extensions view, similar to how @mcp is handled for MCP servers.
Changes:
- Adds
@agentPluginsas a new extension query command and context key to enable searching for agent plugins in the marketplace - Creates a new AgentPluginsListView with support for both installed and marketplace plugins, including actions for enable/disable, install, uninstall, and viewing READMEs
- Refactors the chatPluginActions.ts "Find More Plugins" flow to open the extensions view with
@agentPluginssearch instead of showing a custom quick pick
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/vs/workbench/contrib/extensions/common/extensions.ts | Adds SearchAgentPluginsContext context key definition |
| src/vs/workbench/contrib/extensions/common/extensionQuery.ts | Adds 'agentPlugins' to the list of extension query commands for autocomplete |
| src/vs/workbench/contrib/extensions/browser/extensionsViewlet.ts | Imports SearchAgentPluginsContext, binds it to a context key, and updates search logic to detect @agentPlugins queries |
| src/vs/workbench/contrib/chat/browser/chat.contribution.ts | Registers AgentPluginsViewsContribution as a workbench contribution |
| src/vs/workbench/contrib/chat/browser/agentPluginsView.ts | New file implementing AgentPluginsListView, renderer, actions, and view contribution for displaying agent plugins in the extensions sidebar |
| src/vs/workbench/contrib/chat/browser/actions/chatPluginActions.ts | Refactors "Find More Plugins" to open extensions view with @agentPlugins search instead of showing custom marketplace quick pick (removes ~100 lines) |
hediet
approved these changes
Feb 23, 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.
cc @sandy081