Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove duplicate GitHub MCP remote config rendering code
Refactor: Extract duplicate GitHub MCP remote config rendering into shared helper
Oct 23, 2025
pelikhan
approved these changes
Oct 23, 2025
Contributor
|
Agentic Changeset Generator triggered by this pull request. |
This was referenced Mar 14, 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.
Problem
The GitHub MCP remote configuration rendering logic was duplicated between
claude_engine.goandcopilot_engine.go, creating a maintenance burden and increasing the risk of divergent behavior. Both engines built the same header map and YAML block with only minor differences (token format, tools field, and env section), requiring any future updates to be applied in two places.Duplicate locations:
pkg/workflow/claude_engine.go:652-681(30 lines)pkg/workflow/copilot_engine.go:402-444(43 lines)Solution
Extracted the common GitHub MCP remote configuration rendering logic into a new shared helper function
RenderGitHubMCPRemoteConfig()inengine_shared_helpers.go. This follows the existing pattern established byRenderGitHubMCPDockerConfig()for local mode rendering.New Shared Helper
The
RenderGitHubMCPRemoteConfig()function accepts aGitHubMCPRemoteOptionsstruct that allows engines to specify their variations:Claude usage (no tools, no env):
Copilot usage (with tools and env):
Changes
pkg/workflow/engine_shared_helpers.go(+79 lines): Added shared helper function and options structpkg/workflow/claude_engine.go(-22 lines net): Refactored to use shared helperpkg/workflow/copilot_engine.go(-44 lines net): Refactored to use shared helperpkg/workflow/github_remote_config_test.go(+240 lines): Comprehensive test coverageTotal duplicate code eliminated: 73 lines
Testing
Added comprehensive unit tests covering:
["*"])All existing tests pass:
Benefits
RenderGitHubMCPDockerConfigapproachThis refactoring maintains 100% backward compatibility with zero breaking changes while significantly improving code quality and maintainability.
Fixes #[issue number] (duplicate code detected in commit 82e9c3e)
Original prompt
Fixes #2246
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.