* Sessions: Replace Changes view badge with inline title count
Replace the NumberBadge on the Changes view tab with an inline title
that shows the file count directly, e.g. '7 Changes' instead of a
badge overlay.
- Export dynamic changesContainerTitle with a getter-based value
- Add refreshContainerInfo() to IViewContainerModel interface and
ViewContainerModel implementation
- Remove IActivityService/NumberBadge dependency from ChangesViewPane
* Fix incorrect file count by using topLevelStats
The inline title count was reading from activeSessionChangesObs (raw
session changes only) instead of topLevelStats which accounts for
deduplication and version mode filtering. Move the title update into
onVisible() where topLevelStats is available, and reset the title
when the view is hidden.
* Address review feedback
- Add blank line separator after changesContainerTitle block
- Add constructor-level fallback autorun to keep title in sync when
the view is hidden and the active session changes
- Reset title to 'Changes' on dispose to avoid stale counts
* Keep inline file count when switching tabs
Remove the updateContainerTitle(0) call from the hide handler so
the count persists when the user switches to another tab. The
fallback autorun in the constructor still handles session switches
while the view is hidden.
* Fix grammar: use singular '1 Change' instead of '1 Changes'
---------
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
feat: group chat extension customizations under 'Built-in' in management editor
Items contributed by the default chat extension (GitHub Copilot Chat) are
now shown under a 'Built-in' group header instead of 'Extensions' in the
Chat Customizations editor. This applies to agents, skills, prompts, and
instructions — matching the existing pattern used by the MCP list widget.
The grouping is determined at the UI layer using IProductService to
identify the chat extension ID, setting groupKey on matching items.
No data model changes needed.
- Move BUILTIN_STORAGE/AICustomizationPromptsStorage to common layer
- Add BUILTIN_STORAGE to VS Code harness filter sources
- Add isChatExtensionItem() helper using productService.defaultChatAgent
- Set groupKey: BUILTIN_STORAGE for items from the chat extension
- Add tests for builtin source filtering
- Update AI_CUSTOMIZATIONS.md spec
* Enhance collapsed sidebar widget with session status indicators and panel toggle button
* Refactor sidebar toggle button and update CSS class for session status
Co-authored-by: Copilot <copilot@github.com>
---------
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
Co-authored-by: Copilot <copilot@github.com>
* Enhance auxiliary bar widget functionality and styling
- Update CollapsedAuxiliaryBarWidget to always be visible and act as a toggle for the auxiliary bar.
- Improve layout and interaction by adding a button for session changes.
- Adjust CSS for the auxiliary bar widget and titlebar layout actions for better visibility and animation.
- Refactor related components to ensure proper integration and state management.
* Add context key and views service stubs for SessionsTerminalContribution tests
---------
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
Use `scmViewService.visibleRepositories` instead of filtering
`scmService.repositories` manually. This ensures the count badge
respects repository visibility and reacts to visibility changes
via `onDidChangeVisibleRepositories`.
Co-authored-by: aruizdesamaniego-sh <aruizdesamaniego@stubhubinternational.com>
Resize the inline chat input widget width in discrete steps
(minWidth -> midWidth -> maxWidth) using the golden ratio instead
of continuously growing with content. This reduces visual jitter
by snapping to only three predefined sizes.