feat(jetbrains): add plugin pre-installation support#731
Open
Harsh9485 wants to merge 7 commits intocoder:mainfrom
Open
feat(jetbrains): add plugin pre-installation support#731Harsh9485 wants to merge 7 commits intocoder:mainfrom
Harsh9485 wants to merge 7 commits intocoder:mainfrom
Conversation
…rsh9485/registry into Pre-Install-jetBrains-Plugins-support
Contributor
Author
|
@DevelopmentCats @matifali, PR is ready for review. |
Contributor
|
I am testing this and will let you know how it goes with a review |
Contributor
|
After some testing it seems to work well. I tested with various different plugins and different IDE's in the toolbox and it is working great. I will look this over and make sure everything looks good with the module code, and I think we will be good to go. |
matifali
reviewed
Feb 18, 2026
matifali
reviewed
Feb 18, 2026
Contributor
Author
|
Hey @DevelopmentCats @matifali, can we finish it today? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a jetbrains_plugins parameter to the JetBrains module.
This parameter accepts a map of JetBrains Marketplace plugin IDs and installs them automatically when the workspace starts.
/claim #208
Approach
Uses the JetBrains Marketplace API to download plugins:https:
<plugins.jetbrains.com/pluginManager?action=download&id=<pluginId>&build=<productCode>-<buildNumber>Stores IDE metadata (name and build number) in ide_config.json, generated during Terraform apply.
The build number is used to construct the correct Marketplace download URL for each IDE.
Plugin installation runs asynchronously using nohup, so the workspace becomes ready immediately.
The IDE installation is not blocked, and users can start using the workspace while plugins are being installed in the background.
Changes
Adds jetbrains_plugins variable of type map(list(string))
Example:
{ "PY" = [ "com.koxudaxi.pydantic", "com.intellij.kubernetes" ] }Allows installing different plugins per IDE.
scripts/install_plugins.sh:
Downloads plugins using the Marketplace API
Detects whether the plugin is a ZIP or JAR
Installs it into the correct IDE plugin directory
videos
1 video setup:- https://drive.google.com/file/d/1WB5jRkCOM0w4rEUY-za_3hEvo116UCGd/view?usp=sharing
2 video proof:- https://drive.google.com/file/d/1ZeGUJPJ-gSGNvNzwq8_V-cozz2NqveUT/view?usp=sharing
Type of Change
Module Information
Path:
registry/coder/modules/jetbrainNew version:
v1.0.0Breaking change: [ ] Yes [ ] No
Testing & Validation
bun test)bun fmt)