https://github.com/editor-code-assistant/eca-intellij
Intellij plugin for ECA
https://github.com/editor-code-assistant/eca-intellij
ai editor hacktoberfest tools
Last synced: about 1 month ago
JSON representation
Intellij plugin for ECA
- Host: GitHub
- URL: https://github.com/editor-code-assistant/eca-intellij
- Owner: editor-code-assistant
- License: apache-2.0
- Created: 2025-08-07T19:42:58.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-11-24T12:08:53.000Z (7 months ago)
- Last Synced: 2025-11-28T01:21:54.549Z (7 months ago)
- Topics: ai, editor, hacktoberfest, tools
- Language: Clojure
- Homepage: https://plugins.jetbrains.com/plugin/28289-eca
- Size: 5.05 MB
- Stars: 15
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ECA IntelliJ
[](https://plugins.jetbrains.com/plugin/28289-eca)
[Free OpenSource Intellij plugin](https://github.com/editor-code-assistant/eca-intellij) with support for AI pair programming via [ECA](https://eca.dev)

---
ECA (Editor Code Assistant) IntelliJ is an AI-powered pair-programming client for IntelliJ.
It connects to an external `eca` server process to provide interactive chat, code suggestions, context management and more.
For more details about ECA, features and configuration, check [ECA server](https://eca.dev).
This extension will auto download `eca` and manage the process.
## Install
Just install the `ECA` plugin in [Jetbrains marketplace](https://plugins.jetbrains.com/plugin/28289-eca).
## Settings
Go to Preferences > Tools > ECA.
## Troubleshooting
Check [troubleshooting](http://eca.dev/troubleshooting) docs section.
## Development
### Webview
To start the [eca-webview](https://github.com/editor-code-assistant/eca-webview):
```bash
bb dev-webview
```
This will start Vite dev server on `http://localhost:5173`, so any changes will be updated on the IntelliJ live.
### Plugin
`bb install-plugin ` to install the plugin locally. The
installed plugin will point at the Vite dev server, so you also need
`bb dev-webview` running for it to render.
or
`bb build-plugin` to manually install via intellij the .zip.
#### Prod-flavored local install
If you want to install the plugin locally and run it **without** `bb dev-webview`
(i.e. with the production webview bundled into the zip, just like the
JetBrains-marketplace build), use:
`bb install-prod-plugin ` — builds the webview prod assets,
builds the plugin zip with `is-dev` stripped out, and unzips it into the
IntelliJ plugins directory.
or
`bb build-prod-plugin` — same build, but stops at producing the zip in
`build/distributions/`.