* plugins: allow updating agent plugins
Add update detection and update buttons to the agent plugins view and editor.
This allows users to see when installed plugins have newer versions available
and update them directly from the UI without manually checking for updates.
- Export hasSourceChanged() from pluginMarketplaceService for reuse
- Add 'outdated' and 'liveMarketplacePlugin' fields to IInstalledPluginItem
- Fetch marketplace data in AgentPluginsListView.show() to cross-reference
installed vs live versions and mark outdated plugins
- Add UpdatePluginAction to list view with live marketplace data
- Add UpdatePluginEditorAction to plugin editor with live marketplace data
- Both update actions re-register the plugin with updated metadata after
successful update so the UI immediately reflects the new version
- Read fresh installed metadata from pluginMarketplaceService.installedPlugins
store (not stale IAgentPlugin.fromMarketplace) for accurate version checks
- Pass 'silent' option to runInstall() to show non-blocking notification
instead of dialog when silent=true
- Re-register plugins with live data after updateAllPlugins() completes
so stored sourceDescriptor reflects new version/ref/sha
(Commit message generated by Copilot)
* pr comments and cleanup
* fix test failure
When sessions are grouped by repository, the section header already
shows the repo name. Hide the badge (e.g., '$(repo) vscode') on
individual session rows to reduce visual noise. Only hides badges
that match the repo/folder/worktree icon pattern.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
localeCompare is case-insensitive on some platforms, making
'Other' vs 'other' sort order non-deterministic.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Use non-colliding internal key for 'Other' group to avoid collision
with a real repo named 'other'
- Handle .git suffix and git@host:owner/repo.git SSH URLs in repo parsing
- Add metadata.worktreePath as fallback extraction source
- Fix flaky test ordering by sorting groups before assertion
- Add new tests for .git stripping, git@ URLs, worktreePath, and
'other' repo name collision
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Add telemetry imageAddon loaded
* edit descr
* add more individual telmetry from xterm.js api
* Make sure we have telemetry for setting AND image count
* changes to ensure all the network requests are passed through proxy
* changes to ensure all the network requests are passed through proxy
* changes to quote shell arguments passed to sandbox
* updates to default paths
* Updating regex to extract file name
We have two `MockChatService` classes. This makes updating the interface slow since you have to update both locations. The two also behave slightly differently
chore: update @vscode/codicons version to 0.0.45-14 in package.json and package-lock.json
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
* refactor: update model management methods to use grouped model picker
* refactor: remove showManageModelsAction parameter from model picker functions
* refactor: streamline model picker item construction and improve readability
* refactor: reorganize model picker logic to support grouped model selection
* refactor: disable showManageModelsAction in NewChatWidget and simplify useGroupedModelPicker logic
* fix: increase viewport max height calculation in ActionList class
* feat: add hover position support to model picker and related components
* Enhance quick suggestions behavior with inline completions: allow triggering when inline provider returns no results
* Improve inline completions handling: suppress suggestions when inline completions are active
* CCR