JetBrains Plugin

Zullu AI in Your JetBrains IDE

Generate code, refactor, and build entire features without leaving your editor. Works with all JetBrains IDEs.

Supported IDEs

Works Everywhere

IntelliJ IDEA

Java, Kotlin, Scala

WebStorm

JS, TS, React, Vue

PyCharm

Python, Django, Flask

PhpStorm

PHP, Laravel, Symfony

RubyMine

Ruby, Rails

RustRover

Rust

CLion

C, C++

DataGrip

SQL, Databases

Features

AI-Powered Development

Generate Code

Describe what you need in plain English. Get production-ready code in seconds.

Smart Refactoring

Refactor entire files or projects. AI understands context and dependencies.

Bug Detection

Identify bugs, security issues, and performance problems automatically.

Generate Tests

Create unit tests, integration tests, and mocks with one command.

Documentation

Generate JSDoc, docstrings, and README files from your code.

Chat Interface

Ask questions about your codebase. Get explanations and suggestions.

In Action

See It Work

UserService.ts
// Zullu: Generate a user authentication service with JWT

import { Injectable } from '@nestjs/common';
import { JwtService } from '@nestjs/jwt';
import * as bcrypt from 'bcrypt';

@Injectable()
export class UserService {
constructor(
private jwtService: JwtService,
private prisma: PrismaService
) {}

async validateUser(email: string, pass: string) {
const user = await this.prisma.user.findUnique({
where: { email }
});
if (user && await bcrypt.compare(pass, user.password)) {
return { id: user.id, email: user.email };
}
return null;
}

async login(user: any) {
const payload = { sub: user.id, email: user.email };
return {
access_token: this.jwtService.sign(payload),
},
}
}

One Comment, Full Service

Write a comment describing what you need. Zullu generates complete, production-ready code with proper imports, error handling, and best practices.

  • Type a comment describing the feature
  • Press Ctrl+Shift+G to generate
  • Review and accept the code
  • Refine with follow-up prompts

Keyboard Shortcuts

Stay in Flow

Generate code from comment
CtrlShiftG
Open Zullu chat
CtrlShiftZ
Explain selected code
CtrlShiftE
Refactor selection
CtrlShiftR
Generate tests
CtrlShiftT
Fix errors in file
CtrlShiftF

Pricing

Included in Every Plan

No Extra Cost

The JetBrains plugin is included with your Zullu subscription. Uses your account credits.

Included in Starter, Pro, and Business
Start Building — $19/mo

Ready to supercharge your IDE?

Install the plugin and start generating code in minutes.