feat: add Implement agent using CustomAgentProvider API#3082
Merged
eleanorjboyd merged 9 commits intomicrosoft:mainfrom Jan 25, 2026
Merged
feat: add Implement agent using CustomAgentProvider API#3082eleanorjboyd merged 9 commits intomicrosoft:mainfrom
eleanorjboyd merged 9 commits intomicrosoft:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds a new "Implement" agent designed to work in conjunction with the existing "Plan" agent, enabling a separation of concerns between planning and implementation phases. This PR works together with microsoft/vscode#289751 to provide the necessary VS Code API support.
Changes:
- Adds a new Implement agent with minimal configuration for specialized implementation tasks
- Updates the Plan agent's handoff target from the default agent to the new Implement agent
- Registers the Implement agent in package.json's chatAgents contribution point
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| package.json | Registers the new Implement agent in the chatAgents contribution array with name, path, and description |
| assets/agents/Plan.agent.md | Updates the "Start Implementation" handoff to target the new "Implement" agent instead of the generic "agent" |
| assets/agents/Implement.agent.md | Creates a new agent file with minimal frontmatter and basic implementation instructions |
📬 CODENOTIFYThe following users are being notified based on files changed in this PR: @bhavyausMatched files:
@bryanchen-dMatched files:
|
1715148 to
a42c07d
Compare
…lan agent handoff
Expanded the description and guidelines for the implementation agent, clarifying its role and responsibilities.
a42c07d to
a793c48
Compare
karthiknadig
previously approved these changes
Jan 24, 2026
roblourens
approved these changes
Jan 25, 2026
bpasero
approved these changes
Jan 25, 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.
originally supported in core via microsoft/vscode#289751 but now with CustomAgentProvider API some adjustments made via microsoft/vscode#290024
followed #3017 as reference