Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ which claude
which gemini

# For GitHub Copilot
gh copilot --help
copilot --help

# For Cursor
which cursor-agent
Expand All @@ -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
```
Expand Down
22 changes: 11 additions & 11 deletions internal/registry/agents.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down