feat: VS Code + GitHub Copilot Support for MCP Servers and Custom Agents#3457
Open
y0sif wants to merge 6 commits intoadenhq:mainfrom
Open
feat: VS Code + GitHub Copilot Support for MCP Servers and Custom Agents#3457y0sif wants to merge 6 commits intoadenhq:mainfrom
y0sif wants to merge 6 commits intoadenhq:mainfrom
Conversation
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.
Closes #3299
Summary
Add VS Code + GitHub Copilot support for existing MCP servers and custom agents, following the same pattern as the Cursor and Antigravity integrations. Enables developers using VS Code to access the same agent-building capabilities through GitHub Copilot's custom agents feature.
Changes
.vscode/mcp.json– MCP server configuration foragent-builderandtoolsusinguvcommands with workspace-relative paths.vscode/settings.json– Enable MCP servers and custom agent skills (chat.useAgentSkills,chat.mcp.access,chat.mcp.autostart).github/agents/– 6 custom agent files (.agent.mdformat with YAML frontmatter):agent-workflow.agent.mdbuilding-agents-core.agent.mdbuilding-agents-construction.agent.mdbuilding-agents-patterns.agent.mdtesting-agent.agent.mdsetup-credentials.agent.mddocs/vscode-copilot-setup.md– Comprehensive setup guide with quick start, troubleshooting, and advanced configurationREADME.md– VS Code + GitHub Copilot section with usage examplesDEVELOPER.md– Updated IDE Skills/Agents section with VS Code instructions and.github/agents/in project structureWhy
.agent.mdfiles instead of symlinks?VS Code custom agents require a different format than Claude Code skills:
.github/agents/(VS Code convention, not.vscode/)description,name,tools, andtargetfieldsContent is adapted from
.claude/skills/to be concise and VS Code-optimized, maintaining the same functionality.Key Technical Decisions
uvinstead ofpython: Consistent with project standards for better dependency management and environment isolation${workspaceFolder}variables: Ensures portability across different contributor setupsTesting
.vscode/mcp.jsonvalidates (JSON, proper stdio MCP format).vscode/settings.jsonincludes only MCP/agent-related settings.agent.mdfiles created with valid YAML frontmatterChecklist
uvcommands with workspace-relative paths.github/agents/docs/vscode-copilot-setup.mdcreated with comprehensive guideRelated