feat(copilot): add GitHub Copilot CLI support#728
Closed
xiongxiongufl wants to merge 1 commit intogarrytan:mainfrom
Closed
feat(copilot): add GitHub Copilot CLI support#728xiongxiongufl wants to merge 1 commit intogarrytan:mainfrom
xiongxiongufl wants to merge 1 commit intogarrytan:mainfrom
Conversation
Add full support for the standalone GitHub Copilot CLI alongside existing Claude Code and Codex integrations. Key changes: - setup: add --host copilot flag with auto-detection; install skills into ~/.copilot/skills/gstack - scripts/gen-skill-docs.ts: add copilot host type; generation reuses .agents/skills/ output (same as Codex) - bin/gstack-global-discover.ts: add scanCopilot() to discover sessions at ~/.copilot/session-state/ - Tests: add copilot-e2e.test.ts and copilot-session-runner.ts helper - package.json: add test:copilot scripts and update description - Docs: update AGENTS.md, CLAUDE.md, CONTRIBUTING.md, README.md Notes: - At generation time Copilot reuses the same .agents/skills/ output as Codex; during setup the install paths are rewritten to the Copilot home (~/.copilot/...) using sed. - All 14 files from the referenced PR (garrytan#396) have been implemented/adapted.
eb2fd92 to
0077962
Compare
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.
Add full support for the standalone GitHub Copilot CLI alongside existing Claude Code and Codex integrations.
Key changes:
Notes: