KS
Killer-Skills

registry — how to use registry in IntelliJ how to use registry in IntelliJ, what is registry in IntelliJ IDEA, registry setup guide for IntelliJ Platform, intellij registry api documentation, cloud registry updates for jetbrains ide, registry vs preferences in intellij, registry install for intellij idea, intellij registry alternative, registry configuration for intellij platform

v1.0.0
GitHub

About this Skill

Ideal for Developer Agents working with IntelliJ IDEA and Platform, needing to leverage the IntelliJ Registry API for efficient plugin development. Registry is a mechanism for storing and retrieving configuration data in IntelliJ IDEA and Platform, allowing developers to customize and extend the functionality of their IDE

Features

Declaring registry keys in plugin.xml or registry.properties
Leveraging cloud registry updates for remote configuration management
Using the IntelliJ Registry API for customized development
Defining registry keys for personalized IDE settings
Accessing cloud registry and notifications for JetBrains IDEs
Utilizing Registry.md and Cloud Registry and Notifications.md documentation for guided setup

# Core Topics

JetBrains JetBrains
[0]
[0]
Updated: 3/6/2026

Quality Score

Top 5%
39
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add JetBrains/intellij-community/registry

Agent Capability Analysis

The registry MCP Server by JetBrains is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use registry in IntelliJ, what is registry in IntelliJ IDEA, registry setup guide for IntelliJ Platform.

Ideal Agent Persona

Ideal for Developer Agents working with IntelliJ IDEA and Platform, needing to leverage the IntelliJ Registry API for efficient plugin development.

Core Value

Empowers agents to define registry keys and manage cloud registry updates seamlessly, utilizing `plugin.xml` and `registry.properties` files, and integrating with JetBrains IDEs for remote registry updates.

Capabilities Granted for registry MCP Server

Defining registry keys for plugin configuration
Updating cloud registry for JetBrains IDEs
Managing registry properties for seamless integration

! Prerequisites & Limits

  • Requires IntelliJ IDEA and Platform setup
  • Limited to JetBrains IDEs for cloud registry updates
Project
SKILL.md
2.4 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Working with Registry

Guidelines for using the IntelliJ Registry API.

Documentation

Quick Reference

Defining a Registry Key

Always prefer declaring in plugin.xml (not registry.properties):

xml
1<registryKey key="my.feature.enabled" 2 defaultValue="true" 3 description="Enables my feature" 4 restartRequired="false"/>

To override in a dependent plugin:

xml
1<registryKey key="my.feature.enabled" 2 defaultValue="false" 3 description="Enables my feature" 4 restartRequired="false" 5 overrides="true"/>

Accessing the Registry

In suspending code:

kotlin
1val isEnabled = RegistryManager.getInstanceAsync().get("my.key")

In blocking code:

kotlin
1val isEnabled = RegistryManager.getInstance().get("my.key")

Access via Registry.get() or Registry.is() is effectively deprecated, since it might cause problems during early IDE startup. Always prefer the RegistryManager when possible.

Early Startup: Registry.is() with Default Value

When code may run before COMPONENTS_LOADED state (e.g., during EULA dialog, splash screen), you MUST use Registry.is(key, defaultValue) with an explicit default:

kotlin
1// Required for early startup code 2Registry.`is`("my.key", false) // default must match registry.properties

How to find the default value:

  1. Search in community/platform/util/resources/misc/registry.properties
  2. Or check the <registryKey> declaration in plugin.xml

Why: Registry.is(key) without default throws an exception if called before LoadingState.COMPONENTS_LOADED. The safe overload returns the provided default when Registry is not yet initialized.

Override via Command Line

For testing or run configurations:

-Dmy.registry.key=value

Registry in Tests

Use @RegistryKey annotation instead of Registry.get().setValue():

kotlin
1@Test 2@RegistryKey(key = "my.registry.key", value = "true") 3fun testWithRegistryEnabled() { ... }

See writing-tests.md for more test patterns.

Related Skills

Looking for an alternative to registry or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication