Description:
When trying to install a plugin using the @awesome-copilot syntax, the Copilot CLI fails because it attempts to resolve a path that includes a duplicated plugins subdirectory. It seems to be a path joining logic error within the CLI's marketplace resolution.
Environment:
OS: Windows 11
Tool: GitHub Copilot CLI v0.0.414
Command: /plugin install copilot-sdk@awesome-copilot
Actual Behavior:
The CLI reports a "Plugin source directory not found" error. The path it searches for contains an extra \plugins\ level:
...\github-awesome-copilot\plugins\plugins\copilot-sdk
Expected Behavior:
The CLI should resolve the path correctly to the actual directory structure:
...\github-awesome-copilot\plugins\copilot-sdk
Screenshots:
Error Message:
Directory discrepancy:
Steps to Reproduce:
Open Copilot CLI.
Run command: /plugin install copilot-sdk@awesome-copilot
Observe the "Failed to install plugin" error with the incorrect path.