Using Plugins Marketplace on GitHub Copilot with ssh remote ? #190727
Replies: 2 comments 2 replies
-
|
The Plugins Marketplace in Copilot currently requires local filesystem access to clone plugin repos, which is why it breaks over SSH Remote. A couple of workarounds:
The root issue is that the marketplace assumes a local filesystem. Remote Tunnels (option 2) is probably the cleanest long-term fix since it runs everything server-side. |
Beta Was this translation helpful? Give feedback.
-
|
This issue happens because Copilot Plugins Marketplace expects a local filesystem, but in your case (WSL2), things are split between Windows and Linux. When you use VS Code Remote - WSL, extensions run inside WSL2, but some actions (like cloning plugins) may still try to run on the Windows side — and that’s where it breaks. 💡 Easy fixes you can try:
Instead of opening VS Code from Windows, do this:
Run this inside your WSL2 terminal. 👉 This ensures everything (including plugin cloning) runs inside WSL2 properly.
If plugins are being cloned to a Windows path like:
👉 It won’t work correctly. Try using a WSL path like:
You can also:
👉 Copilot should detect them automatically 🧠 Simple understanding Think of it like this:
👉 Plugins must stay in WSL2 side, not Windows side |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Copilot Coding Agent
Body
I can use custom Plugins Marketplace on Copilot on VsCode on my mac, it is all in local so it works great.
However i use another PC on Windows with WSL2, so it is viewed as "Remote SSH", and the marketplace plugins cannot be cloned. Is there a way to make it work ?
Beta Was this translation helpful? Give feedback.
All reactions