GitHub Copilot in the Eclipse IDE menu bar showing the plugin integration with the Eclipse toolbar Microsoft / devblogs.microsoft.com/java
by VibecodedThis

GitHub Copilot for Eclipse Is Now Open Source Under MIT

GitHub published the full source code for its Eclipse IDE plugin on May 21, 2026. The repository at github.com/microsoft/copilot-for-eclipse contains roughly 15,000 lines of Java covering code completion, Next Edit Suggestions, chat, and agent mode.

Share

GitHub open-sourced its Eclipse IDE plugin on May 21, 2026. The code is on GitHub under the MIT license, which means you can inspect it, fork it, and contribute to it.

The repo contains roughly 15,000 lines of Java, split across modules for suggestion fetching, telemetry, authentication, and UI rendering. Within hours of the release, it had collected over 1,200 stars and 90 forks, with early community patches focused on performance.

What’s actually in there

The plugin includes:

  • Inline code completion (the ghost text that appears as you type)
  • Next Edit Suggestions, which predict where your cursor should move next
  • Chat, including the conversation flow and context management
  • Agent mode, which handles more autonomous, project-aware tasks
  • Model Context Protocol (MCP) integration
  • BYOK (Bring Your Own Key) support

This is the client-side layer. The Copilot model and inference infrastructure remain proprietary and hosted by GitHub. What’s open is the front-end integration code that lives inside Eclipse and talks to GitHub’s API.

Why this matters for Eclipse users

Eclipse has an active Java and enterprise developer community that’s been underserved by the AI tooling wave. Most of the attention in AI coding has gone to VS Code, Cursor, JetBrains, and Neovim. Eclipse users have generally been getting whatever features the teams could squeeze in on a secondary roadmap.

Open sourcing the plugin changes the economics of contribution. External developers can now submit patches, fix platform-specific bugs, and build integrations without waiting for the internal team’s prioritization. The GitHub Changelog post cites “community-driven innovation” as the primary motivation.

Early contributors mentioned in the announcement include members of the Eclipse community itself, which suggests the open-source decision had some input from the broader Eclipse ecosystem.

Context

This comes one day after Google announced it’s deprecating Gemini CLI in favor of the closed-source Antigravity CLI, which is the opposite move. GitHub open-sourcing a Copilot component and Google closing the source on Gemini CLI on consecutive days is a notable contrast, even if the decisions were made independently.

GitHub Copilot for Eclipse was first previewed in early 2025. Code completion shipped to public preview in February 2025, with chat and agent mode following later. The plugin is available on the Eclipse Marketplace. You still need an active GitHub Copilot subscription to use it.

The repository welcomes contributions through the standard GitHub issue and pull request workflow.

Share