fix: update GitHub Copilot CLI command and package name#48
Open
travswim wants to merge 3 commits intokevinelliott:mainfrom
Open
fix: update GitHub Copilot CLI command and package name#48travswim wants to merge 3 commits intokevinelliott:mainfrom
travswim wants to merge 3 commits intokevinelliott:mainfrom
Conversation
Changed github-copilot-cli to copilot in agents.json and updated the package name to @github/copilot to match the current official CLI and internal adapter usage.
Updated documentation to recommend the official @github/copilot package and copilot command, ensuring consistency with the updated registry and internal agent usage.
denash84
pushed a commit
to denash84/agentpipe
that referenced
this pull request
Mar 20, 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.
Description
This PR updates the GitHub Copilot CLI detection logic to match the current official CLI.
Motivation
Previously, AgentPipe was looking for
github-copilot-cli(the legacy technical preview package), while the current standard is a standalonecopilotbinary installed via@github/copilot. This causedagentpipe doctorto report Copilot as missing even when installed.Changes
internal/registry/agents.jsonto use thecopilotcommand and@github/copilotpackage name.docs/troubleshooting.mdanddocs/development.mdto recommendnpm install -g @github/copilot.CHANGELOG.mdto document these changes under the [Unreleased] section.Testing
./agentpipe doctorthat it now correctly detects thecopilotbinary.go test ./internal/registry/... ./pkg/adapters/...to ensure no regressions.go vetandgo fmtto ensure code quality.Checklist