Quickstart
In a few minutes you will install Explyt in your JetBrains IDE, ask the agent its first question, and make your first change with a verified result.
Before you start
- One of the supported IDEs:
IntelliJ IDEA Community,IntelliJ IDEA Ultimate,Android Studio,PyCharm,GoLand,Rider,WebStorm, orPhpStorm. - An open project with code you understand.
- Internet access to the plugin repository and the Explyt service.
Step 1. Add the Explyt plugin repository
- Open
Settings (Preferences), switch to thePluginstab, and click the settings icon. - Enable
Update Plugin Automaticallyand openManage Plugin Repositories. - Click "+" and paste the URL: https://repository.explyt.dev/
Step 2. Install the Explyt plugin
-
Switch to the
Marketplacetab. -
Enter
Explyt.⚠️ If the Explyt plugin does not appear in the search results, check that the URL https://repository.explyt.dev/ has no extra whitespace and that your IDE version is 2025.1 or newer.
-
Click
Install. -
Click
Restart IDEand confirm the action.
If the Explyt window does not open automatically, choose View | Tool Windows | Explyt or click the Explyt button on the right-hand tool window bar. If the window still does not appear, go to installation troubleshooting.
Step 3. Choose a plan on first launch
After the restart, Explyt asks you to choose a plan: Personal, Community, or Enterprise.
- Personal — work with the models available under an Explyt subscription.
- Community — work with your own API key.
- Enterprise — connect to a corporate platform using the key issued by your organization.
Complete the initial setup. A detailed comparison is available in the plans reference. Subscription and payment terms for Personal are described on the Plans and balance page.
Step 4. Ask the agent your first question
Start with a question that does not change the project. Switch the agent to Ask mode: it reads code and answers, but does not edit files or run commands, so you do not need to add "don't change anything" to your prompt.

For your first question, choose Ask mode: it explores the project without changing files.
-
Open a small file whose purpose you understand: a class, a function, or a component.
-
Select the code and switch to the Explyt chat. The selection is added to the input field as an attachment. You can also attach a file explicitly with
@fileor#file.Selected code is added to the Explyt message as an attachment.
-
Send the prompt:
Explain what this code is responsible for: where the input data comes from,
what result it returns, and which neighboring symbols I should read to verify
the explanation. For every conclusion, name the file and the symbol.
Verify the answer against the project: open the named symbols using IDE navigation and compare the input data and the result with the signatures. A good answer relies on files and symbols that actually exist.
Step 5. Make your first change
Now give the agent a small edit. General mode is active by default: it can change files and run IDE tools, so changes to the project are a normal part of the work. You see every edit before you keep it in the project.
-
Pick a simple, well-understood task, such as adding a documentation comment to a method or extracting a value into a constant.
-
Attach the file you need and send the prompt:
Add a short documentation comment to this method: its purpose, parameters,
and return value. Do not change anything else. -
Review the edits in the Agent Changes panel: open each changed file, accept the edits you want, and reject the rest.
In Agent Changes you can review every changed file and reject unwanted edits.
-
If you want to limit what the agent may change, set an Edit Scope before sending the prompt, and shield files containing secrets with
.readignore. -
Run the narrowest check that confirms this edit: a test for the changed method, a documentation check, or a run configuration for the affected component. For a method comment, a syntax check or a module build is enough. Expected result: the check completes without new errors and the behavior of the project does not change.
A change is accepted deliberately when you have reviewed the diff, kept only the edits you need, and got the expected result from the check.
Something not working?
- Explyt does not install or the window does not open: installation and first sign-in.
- You cannot connect a model or finish the initial setup: models and context.
- The agent cannot read a file, cannot make an edit, or goes outside the agreed scope: files and permissions.
- A test or build does not start: runs and tests.
- For any other symptom, open the troubleshooting index.
What's next
- Guides for common tasks: understand code, change it safely, fix a bug, and add tests.
- How Explyt works: the agent, modes, context, and tools.
- Permissions and safety: a single model for access, runs, and rolling back changes.
- Data, privacy, and security: find out what data is processed and how to restrict access to your project.
- System requirements, updating, and uninstalling: check IDE compatibility and safely update or remove the plugin.