Problem
The Copilot devcontainer template (cli/templates/copilot/devcontainer/devcontainer.json) has no plugins array under customizations.jetbrains. When using Copilot in devcontainer mode with a JetBrains IDE, the Copilot plugin is not auto-installed.
The Claude template includes the equivalent plugin for comparison:
"jetbrains": {
"settings": { ... },
"plugins": [
"com.anthropic.code.plugin"
]
}
The Copilot template only has proxy settings:
"jetbrains": {
"settings": { ... }
}
Expected
Add the GitHub Copilot JetBrains plugin to the template:
"jetbrains": {
"settings": { ... },
"plugins": [
"com.github.copilot"
]
}
The plugin ID com.github.copilot needs to be verified against the JetBrains marketplace XML descriptor. The marketplace page lists it as plugin ID 17718, but devcontainer.json may require the string plugin ID rather than the numeric one.
File
cli/templates/copilot/devcontainer/devcontainer.json
Problem
The Copilot devcontainer template (
cli/templates/copilot/devcontainer/devcontainer.json) has nopluginsarray undercustomizations.jetbrains. When using Copilot in devcontainer mode with a JetBrains IDE, the Copilot plugin is not auto-installed.The Claude template includes the equivalent plugin for comparison:
The Copilot template only has proxy settings:
Expected
Add the GitHub Copilot JetBrains plugin to the template:
The plugin ID
com.github.copilotneeds to be verified against the JetBrains marketplace XML descriptor. The marketplace page lists it as plugin ID17718, but devcontainer.json may require the string plugin ID rather than the numeric one.File
cli/templates/copilot/devcontainer/devcontainer.json