Add GitHub Copilot as a supported agent#6
Open
alimaazamat wants to merge 1 commit into
Open
Conversation
Register the GitHub Copilot CLI (`copilot`) as a spawnable agent in the New Agent menu, map its icon, and mention it in the README agent list.
|
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.
Summary
Adds GitHub Copilot as a spawnable agent in OpenUI, alongside Claude Code, OpenCode, and Ralph.
Changes
server/routes/api.ts— register acopilotagent (name "GitHub Copilot", commandcopilot) in the/api/agentsendpoint that powers the New Agent menuclient/src/components/NewSessionModal.tsx— add thegithubicon to the icon map so the agent renders its icon (theGithubicon was already imported)README.md— mention GitHub Copilot in the supported-agents listsHow it works
Selecting GitHub Copilot spawns a PTY running the
copilotCLI, with terminal I/O streamed over WebSocket just like the other agents. It uses the generic status tracking (Idle/Running), same as OpenCode and Ralph — fine-grained statuses remain Claude-only via the plugin hooks.Requirements
copilotcommand) must be installed and authenticated on the machine running OpenUI.Testing
Verified end-to-end locally: spawned a GitHub Copilot agent from the canvas, confirmed the
copilotCLI boots in the node's terminal, accepts input, and responds to prompts.Summary by cubic
Adds GitHub Copilot as a spawnable agent. It appears in the New Agent menu and runs the
copilotCLI like other agents.New Features
copilotin/api/agentswith name "GitHub Copilot" andgithubicon.githubicon mapping inNewSessionModal.Migration
copilot) on the host.Written for commit 9ef5412. Summary will update on new commits.