- When pressing Alt in the chat input, the submit button icon now toggles to match the alternative action (steer ↔ queue), following the standard VS Code pattern. Previously the icon never changed regardless of Alt state.
- Fixes the issue where users couldn't visually confirm Alt+Enter would queue instead of steer
Fixes#299152
(Commit message generated by Copilot)
The correct package is @playwright/cli (from microsoft/playwright-cli),
not @anthropics/playwright-cli.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* chat: add support for agent plugin sources
- Adds support for agent plugins to reference sources as specified in
PLUGIN_SOURCES.md, enabling installation from GitHub, npm, pip, and
other package registries
- Integrates source parsing and validation into the plugin installation
service and repository service
- Adds comprehensive test coverage for plugin source handling and
installation from various sources
- Creates PLUGIN_SOURCES.md documentation describing how to specify
plugin source configurations
(Commit message generated by Copilot)
* comments
* windows fixes and fault handling
* fix tests
* Add support for custom chat agents in the API
- Introduced `chatCustomAgents` proposal in extensions API.
- Implemented methods to handle custom agents in `MainThreadChatAgents2`.
- Added `ICustomAgentDto` interface and related functionality in extHost.
- Created new type definitions for custom agents in `vscode.proposed.chatCustomAgents.d.ts`.
* Filter custom agents by visibility before pushing to the proxy
* Refactor onDidChangeCustomAgents to use direct event listener
* Update custom agent tools property to allow undefined values
* Add chatCustomAgents to enabledApiProposals in package.json
* update
* update
* support skills
* support instructions
* update
* update
---------
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
* feat: add optional codeSelection property to feedback comment and agent feedback variable entries
* refactor: remove unused range property and model service from feedback comment renderer
* Add ESC to dismiss inline chat editor affordance
Adds a new action bound to Escape that hides the editor affordance
without collapsing the selection.
Fixes https://github.com/Microsoft/vscode/issues/297994
* fix orphaned separators when toolbar items are hidden
Fixes https://github.com/microsoft/vscode/issues/298659
* Add tests for InlineChatAffordance telemetry events
* undo instruct-changes
Snapshot labels contain Private Use Area characters (U+E000-U+F8FF) for
VS Code codicons. normalizeLabel() strips these before comparing so
'Click button "Instructions"' matches ' Instructions' in the snapshot.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Each getSnapshot() call now prints the .yml path and warns if the file
is empty, making it easy to correlate steps with snapshot files.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>