| name | idea-plugin-dev |
| description | Develop IntelliJ IDEA plugins with two templates, standard plugins and AI-integrated plugins. Use when creating new IntelliJ IDEA plugins, setting up plugin projects, implementing actions, settings pages, or integrating with IntelliAI Engine. Supports both simple plugins without AI dependencies and advanced plugins with AI provider selection and prompt template management. |
IntelliJ IDEA Plugin Development
This Skill provides guidance for developing IntelliJ IDEA plugins using standardized templates. It covers two types of plugins: standard
plugins (without AI) and AI-integrated plugins (with IntelliAI Engine).
When to Use This Skill
Use this Skill when:
- Creating a new IntelliJ IDEA plugin project
- Setting up plugin structure and configuration
- Implementing actions, settings pages, or UI components
- Integrating AI capabilities via IntelliAI Engine
- Following best practices for IntelliJ plugin development
- Working with plugin templates (
template-without-ai or template-with-ai)
Plugin Types
1. Standard Plugin (template-without-ai)
Use for: Plugins that don't require AI functionality.
Features:
- Simplified Action (right-click menu)
- Icon management class
- Notification utilities
- Internationalization support
- Basic project structure
Key Components:
ExampleAction - Single action example
ExampleIcons - Icon management
NotificationUtil - Notification helper
ExampleBundle - Internationalization
2. AI-Integrated Plugin (template-with-ai)
Use for: Plugins that need AI capabilities via IntelliAI Engine.
Additional Features:
- AI provider selection in settings
- Prompt template management
- Settings page with advanced options
- Integration with IntelliAI Engine
Key Components:
- All standard plugin components
SettingsState - Persistent configuration
ExampleSettingsConfigurable - Settings UI
ExampleSettingsPanel - Settings panel with AI provider dropdown and prompt templates
Project Structure
Standard Plugin Structure
template-without-ai/
โโโ src/main/java/dev/dong4j/zeka/stack/idea/plugin/example/
โ โโโ action/ # Actions
โ โโโ icons/ # Icon management
โ โโโ util/ # Utilities (Bundle, Notification)
โโโ src/main/resources/
โ โโโ icons/ # Icon resources (SVG)
โ โโโ META-INF/
โ โ โโโ plugin.xml # Plugin configuration
โ โโโ messages*.properties # Internationalization
โโโ includes/ # Plugin description and changelog
โโโ docs/ # User manual
โโโ build.gradle.kts # Build configuration
โโโ gradle.properties # Plugin properties
AI-Integrated Plugin Structure
template-with-ai/
โโโ src/main/java/dev/dong4j/zeka/stack/idea/plugin/example/
โ โโโ action/ # Actions
โ โโโ icons/ # Icon management
โ โโโ settings/ # Settings (State, Configurable, Panel)
โ โโโ util/ # Utilities
โโโ ... (same as standard)
โโโ build.gradle.kts # Includes AI Engine dependencies
Development Steps
Step 1: Choose Template Type
For standard plugins:
- Use
template-without-ai as base
- No AI Engine dependencies needed
- Simpler configuration
For AI-integrated plugins:
- Use
template-with-ai as base
- Requires IntelliAI Engine plugin
- Includes settings page and AI provider management
Step 2: Configure Project
-
Update gradle.properties:
pluginGroup=dev.dong4j.zeka.stack
pluginName=Your Plugin Name
pluginVersion=2026.1.1000
kitVersion=2026.1.1000
rootProjectName=your-plugin-name
-
Update plugin.xml:
- Change plugin ID
- Update plugin name
- Register your actions and services
-
Update package names:
- Replace
dev.dong4j.zeka.stack.idea.plugin.example with your package
- Update all Java files
- Update
plugin.xml references
Step 3: Implement Actions
Standard Action Pattern:
public class ExampleAction extends AnAction {
public ExampleAction() {
super(
ExampleBundle.message("action.example.title"),
ExampleBundle.message("action.example.description"),
ExampleIcons.EXAMPLE_16
);
}
@Override
public void actionPerformed(@NotNull AnActionEvent e) {
Project project = e.getProject();
PsiFile psiFile = e.getData(CommonDataKeys.PSI_FILE);
if (project == null || psiFile == null) {
NotificationUtil.showError(project, ExampleBundle.message("error.no.file"));
return;
}
NotificationUtil.showInfo(project, "Action executed");
}
}
Register in plugin.xml:
<action id="your.package.action.ExampleAction"
class="your.package.action.ExampleAction">
<add-to-group group-id="EditorPopupMenu" anchor="last"/>
</action>
Step 4: Icon Management
Create Icon Class:
public class ExampleIcons {
@NotNull
private static Icon load(@NotNull String iconPath) {
return IconLoader.getIcon(iconPath, ExampleIcons.class);
}
public static final Icon EXAMPLE_16 = load("/icons/example_16.svg");
}
Add Icon Resources:
- Place SVG files in
src/main/resources/icons/
- Use 16x16 for actions, 24x24 for notifications, 32x32 for dialogs
Step 5: Internationalization
Add Messages:
messages.properties (English):
action.example.title=Example Action
action.example.description=Execute example action
error.no.file=No file found
messages_zh_CN.properties (Chinese):
action.example.title=็คบไพๆไฝ
action.example.description=ๆง่ก็คบไพๆไฝ
error.no.file=ๆชๆพๅฐๆไปถ
Use in Code:
String message = ExampleBundle.message("action.example.title");
Step 6: Settings Page (AI-Integrated Only)
Create SettingsState:
@State(
name = "ExamplePluginSettings",
storages = @Storage("example-settings.xml")
)
public class SettingsState implements PersistentStateComponent<SettingsState> {
public AIProviderConfig providerConfig;
public boolean showAdvancedSettings = false;
public String systemPrompt = getDefaultSystemPrompt();
public String exampleTemplate = getDefaultExampleTemplate();
public static SettingsState getInstance() {
return ApplicationManager.getApplication().getService(SettingsState.class);
}
}
Create Settings Panel:
public class ExampleSettingsPanel {
private JComboBox<AIProviderConfig> providerComboBox;
private JBTextArea systemPromptTextArea;
private JPanel createAIProviderSelectionPanel() {
List<AIProviderConfig> providers = getAiProviderTypes();
}
}
Register in plugin.xml:
<applicationService serviceImplementation="your.package.settings.SettingsState"/>
<applicationConfigurable
parentId="tools"
instance="your.package.settings.ExampleSettingsConfigurable"
id="your.package.settings.ExampleSettingsConfigurable"
displayName="Your Plugin"/>
Step 7: Build Configuration
Standard Plugin (build.gradle.kts):
dependencies {
intellijPlatform {
create(providers.gradleProperty("platformType"),
providers.gradleProperty("platformVersion"))
bundledPlugin("com.intellij.java")
}
}
AI-Integrated Plugin (build.gradle.kts):
dependencies {
intellijPlatform {
}
compileOnly("dev.dong4j.zeka.stack:intelli-ai-engine:1.1.0")
}
tasks {
}
Step 8: Testing
-
Build plugin:
./gradlew buildPlugin
-
Run in sandbox:
./gradlew runIde
-
Verify:
- Action appears in right-click menu
- Settings page loads (AI-integrated)
- Notifications work
- Internationalization works
Best Practices
Code Organization
-
Package Structure:
action/ - User actions
icons/ - Icon management
settings/ - Settings (AI-integrated only)
util/ - Utilities (Bundle, Notification)
-
Naming Conventions:
- Actions:
*Action.java
- Settings:
*SettingsState.java, *SettingsConfigurable.java, *SettingsPanel.java
- Icons:
*Icons.java
- Bundles:
*Bundle.java
UI Components
-
Use IntelliJ UI Components:
JBLabel, JBTextField, JBCheckBox (not JLabel, JTextField)
FormBuilder for layouts
ToolbarDecorator for tables
JBTable for data tables
-
Settings Page:
- Use
FormBuilder for consistent layout
- Add emojis to labels for better UX (๐ค, โ๏ธ, ๐, etc.)
- Support collapsible advanced settings
- Use
JBTabbedPane for multiple prompt templates
Internationalization
-
Always use Bundle:
- Never hardcode strings
- Use
ExampleBundle.message(key, params...)
- Provide both English and Chinese
-
Key Naming:
action.* - Action labels
settings.* - Settings labels
error.* - Error messages
success.* - Success messages
Configuration
-
Persistent State:
- Use
@State annotation
- Implement
PersistentStateComponent
- Initialize collections to avoid null
-
Settings UI:
- Implement
Configurable or SearchableConfigurable
- Check
isModified() before save
- Reset UI in
reset() method
Common Patterns
Notification Pattern
NotificationUtil.showInfo(project, ExampleBundle.message("success.action.executed"));
NotificationUtil.showError(project, ExampleBundle.message("error.no.file"));
NotificationUtil.showWarning(project, ExampleBundle.message("warning.message"));
Action Update Pattern
@Override
public void update(@NotNull AnActionEvent e) {
Project project = e.getProject();
PsiFile file = e.getData(CommonDataKeys.PSI_FILE);
e.getPresentation().setEnabled(project != null && file != null);
}
Settings Validation Pattern
@Override
public void apply() throws ConfigurationException {
if (!validateSettings()) {
throw new ConfigurationException("Invalid settings");
}
settingsPanel.apply(settings);
}
Differences: Standard vs AI-Integrated
| Feature | Standard Plugin | AI-Integrated Plugin |
|---|
| AI Engine Dependency | โ No | โ
Yes (compileOnly) |
| Settings Page | โ No | โ
Yes |
| AI Provider Selection | โ No | โ
Yes |
| Prompt Templates | โ No | โ
Yes |
| Build Tasks | Basic | + buildAiCommonPlugin, copyAiCommonPlugin |
| plugin.xml | Actions only | + SettingsState, SettingsConfigurable |
Troubleshooting
Plugin doesn't load
- Check
plugin.xml syntax
- Verify package names match
- Check for missing dependencies
Settings not persisting
- Verify
@State annotation
- Check
getState() and loadState() methods
- Ensure fields are
public
AI provider not available
- Check IntelliAI Engine plugin is installed
- Verify provider is configured and tested
- Check
AIProviderSettings.getInstance().getVerifiedProviders()
Icons not showing
- Verify icon path starts with
/icons/
- Check SVG file exists in resources
- Ensure
IconLoader.getIcon() path is correct
References
- Template projects:
template-without-ai/ and template-with-ai/
- IntelliJ Platform SDK: https://plugins.jetbrains.com/docs/intellij/
- IntelliAI Engine: See
intelli-ai-engine/ project
- Example implementations:
intelli-ai-changelog/, intelli-ai-javadoc/
Examples
Creating a Standard Plugin
- Copy
template-without-ai to your project
- Update
gradle.properties with your plugin info
- Rename package from
example to your package
- Implement your action in
action/ package
- Add icons and internationalization
- Build and test
Creating an AI-Integrated Plugin
- Copy
template-with-ai to your project
- Follow standard plugin steps
- Configure AI provider in settings
- Implement prompt templates
- Use
AIService.getInstance() to call AI
- Build and test (ensure IntelliAI Engine is available)