feat: add GitHub Copilot CLI installer target#205
Open
RubenGomGar wants to merge 1 commit into
Open
Conversation
- Implement CopilotTarget in src/installer/targets/copilot.ts - Add 'copilot' to TargetId type and ALL_TARGETS registry - Add comprehensive test coverage (10 new Copilot-specific tests) - Update README badges and supported agents documentation - Update CHANGELOG with new feature entry The target supports global installation at ~/.copilot/mcp-config.json and ~/.copilot/AGENTS.md, following the same pattern as existing Claude/Cursor/Codex/opencode targets. Installation includes: - MCP server configuration with Copilot-specific fields (type: local, tools: *) - Agent instructions with CodeGraph tool guidance - Automatic sibling MCP server preservation - Idempotent install/uninstall operations All existing tests pass (622/631), with new Copilot tests achieving full coverage of install, uninstall, detect, and printConfig operations.
|
Hoping to seeing this merged! |
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.
feat: add GitHub Copilot CLI installer target
Description
Adds GitHub Copilot CLI as the fifth installer target alongside Claude Code, Cursor, Codex CLI, and opencode.
Changes
src/installer/targets/copilot.ts- CopilotTarget implementationTargetIdtype to include'copilot'ALL_TARGETSregistry to includecopilotTargetImplementation Details
The target follows the same architectural pattern as existing targets:
~/.copilot/mcp-config.json~/.copilot/AGENTS.md"type": "local"and"tools": ["*"]"Testing
Installation Example