This repository contains the IDE plugins for Llmrix Devtool, an AI coding assistant designed for autonomous development workflows. These plugins allow you to integrate Llmrix's multi-agent capabilities directly into your favorite editor.
- Zed
- JetBrains IDEs (IntelliJ IDEA, WebStorm, PyCharm, etc.)
Search for "Llmrix Devtool" in the Zed Extension Manager and click Install.
Or install via CLI:
zed --install-extension llmrix-devtool- Node.js v18+
The extension runs the agent automatically via npx on first use. For faster startup, install globally:
npm install -g llmrix-devtoolThen configure your LLM provider:
npx llmrix-devtool configFollow the prompts to set your provider and API key. Config is saved to ~/.llmrix/config/config.json.
Example config:
{
"provider": "anthropic",
"model": "claude-3-5-sonnet-latest",
"providers": [
{
"id": "anthropic",
"name": "Anthropic",
"protocol": "anthropic",
"apiKey": "${ANTHROPIC_API_KEY}",
"models": ["claude-3-7-sonnet-latest", "claude-3-5-sonnet-latest", "claude-3-5-haiku-latest"]
},
{
"id": "openai",
"name": "OpenAI",
"protocol": "openai",
"apiKey": "${OPENAI_API_KEY}",
"models": ["gpt-4o", "gpt-4o-mini", "o1", "o3-mini"]
},
{
"id": "deepseek",
"name": "DeepSeek",
"protocol": "openai",
"baseUrl": "https://api.deepseek.com/v1",
"apiKey": "${DEEPSEEK_API_KEY}",
"models": ["deepseek-chat", "deepseek-reasoner"]
},
{
"id": "ollama",
"name": "Ollama (local)",
"protocol": "openai",
"baseUrl": "http://localhost:11434/v1",
"apiKey": "ollama",
"models": ["qwen2.5-coder:7b", "llama3.1:8b"]
}
]
}Open the Zed Agent panel, select Llmrix, and start chatting. The agent has full access to your workspace files and terminal.
Supports IntelliJ IDEA, WebStorm, PyCharm, GoLand, and all other JetBrains IDEs 2024.3+.
Via Marketplace (recommended):
- Open your JetBrains IDE
- Go to Settings → Plugins → Marketplace
- Search for "Llmrix Devtool" and click Install
- Restart the IDE
Manual install:
Download the latest .zip from Releases, then go to Settings → Plugins → ⚙️ → Install Plugin from Disk.
- JetBrains IDE 2024.3+
- JetBrains AI Assistant plugin (bundled in 2024.3+)
- Node.js v18+
The plugin starts the Llmrix agent server automatically — no manual setup needed.
- Open the AI Assistant chat panel (
View → Tool Windows → AI Assistant) - Click the agent picker and select Llmrix Agent
- Start chatting
Configure your LLM provider the same way as Zed:
npx llmrix-devtool configOnce the agent is selected in AI Assistant, you can delegate tasks like:
Refactor the UserService class to use dependency injection
Find and fix all TypeScript type errors in src/
Write unit tests for the PaymentController
The agent will read your files, make edits, and run commands autonomously.
This is a pnpm workspace monorepo.
- Node.js & pnpm
- Java 21+ (for JetBrains plugin)
pnpm installcd plugins/jetbrains
./gradlew buildPlugin
# Output: plugins/jetbrains/build/distributions/Llmrix Devtool-0.1.0.zipWhen bumping the version, update package.json then run:
pnpm sync-versionsThis syncs the version to plugins/zed/extension.toml and plugins/jetbrains/build.gradle.kts.
See scratch/publishing_guide.md for detailed marketplace publishing instructions.
MIT — see LICENSE for details.
Built with ❤️ by llmrix
