From 48229b744419dadadb8655faaf628b3ba76c2175 Mon Sep 17 00:00:00 2001 From: Travis Booth Date: Fri, 13 Mar 2026 12:14:46 -0700 Subject: [PATCH 1/3] fix: update GitHub Copilot CLI command and package name 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. --- internal/registry/agents.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/internal/registry/agents.json b/internal/registry/agents.json index fca93a9..d86784c 100644 --- a/internal/registry/agents.json +++ b/internal/registry/agents.json @@ -74,25 +74,25 @@ }, { "name": "Copilot", - "command": "github-copilot-cli", + "command": "copilot", "description": "GitHub Copilot CLI", "docs": "https://github.com/github/copilot-cli", "package_manager": "npm", - "package_name": "@githubnext/github-copilot-cli", + "package_name": "@github/copilot", "install": { - "darwin": "npm install -g @githubnext/github-copilot-cli", - "linux": "npm install -g @githubnext/github-copilot-cli", - "windows": "npm install -g @githubnext/github-copilot-cli" + "darwin": "npm install -g @github/copilot", + "linux": "npm install -g @github/copilot", + "windows": "npm install -g @github/copilot" }, "uninstall": { - "darwin": "npm uninstall -g @githubnext/github-copilot-cli", - "linux": "npm uninstall -g @githubnext/github-copilot-cli", - "windows": "npm uninstall -g @githubnext/github-copilot-cli" + "darwin": "npm uninstall -g @github/copilot", + "linux": "npm uninstall -g @github/copilot", + "windows": "npm uninstall -g @github/copilot" }, "upgrade": { - "darwin": "npm update -g @githubnext/github-copilot-cli", - "linux": "npm update -g @githubnext/github-copilot-cli", - "windows": "npm update -g @githubnext/github-copilot-cli" + "darwin": "npm update -g @github/copilot", + "linux": "npm update -g @github/copilot", + "windows": "npm update -g @github/copilot" }, "requires_auth": true }, From 0f31aed4815f4073ad7f750ac47e254d5bcf17d7 Mon Sep 17 00:00:00 2001 From: Travis Booth Date: Fri, 13 Mar 2026 12:15:51 -0700 Subject: [PATCH 2/3] docs: update GitHub Copilot CLI installation and usage instructions Updated documentation to recommend the official @github/copilot package and copilot command, ensuring consistency with the updated registry and internal agent usage. --- docs/development.md | 2 +- docs/troubleshooting.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development.md b/docs/development.md index 12f330a..f7c9f44 100644 --- a/docs/development.md +++ b/docs/development.md @@ -79,7 +79,7 @@ brew install anthropics/claude/claude # Installation method varies # GitHub Copilot CLI -gh extension install github/gh-copilot +npm install -g @github/copilot # Cursor CLI # Installation from Cursor IDE diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 807a938..3f95b2f 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -195,7 +195,7 @@ which claude which gemini # For GitHub Copilot -gh copilot --help +copilot --help # For Cursor which cursor-agent @@ -207,7 +207,7 @@ which cursor-agent brew install anthropics/claude/claude # GitHub Copilot -gh extension install github/gh-copilot +npm install -g @github/copilot # Others: See agent-specific documentation ``` From 206fd854d4e3c847e469cb4f51d4ac93bb60f206 Mon Sep 17 00:00:00 2001 From: Travis Booth Date: Fri, 13 Mar 2026 12:22:29 -0700 Subject: [PATCH 3/3] chore: update CHANGELOG for GitHub Copilot CLI fix --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f78e8b..ed1e269 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- **GitHub Copilot CLI Detection** + - Updated `internal/registry/agents.json` to use the current `copilot` command and `@github/copilot` package name + - Fixed issue where `agentpipe doctor` failed to find GitHub Copilot installations + - Updated documentation in `docs/troubleshooting.md` and `docs/development.md` to match current installation methods + + ## [0.7.0] - 2025-01-27 ### Added