registry — community registry, intellij-community, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Essential for IntelliJ Platform Development Agents managing IDE configuration and remote settings synchronization. IntelliJ IDEA & IntelliJ Platform

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

Agent Capability Analysis

The registry skill by JetBrains is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Essential for IntelliJ Platform Development Agents managing IDE configuration and remote settings synchronization.

Core Value

Enables agents to programmatically access and modify IntelliJ IDE registry keys through both local plugin.xml declarations and remote Cloud Registry updates. Provides direct integration with JetBrains' configuration management system for seamless IDE customization.

Capabilities Granted for registry

Defining registry keys in plugin.xml configurations
Managing remote Cloud Registry updates for JetBrains IDEs
Synchronizing IDE settings across development environments
Implementing registry-based feature toggles for plugins

! Prerequisites & Limits

  • Requires IntelliJ Platform SDK knowledge
  • Limited to JetBrains IDE ecosystem
  • Cloud Registry functionality specific to JetBrains products
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

registry

Install registry, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is registry?

Essential for IntelliJ Platform Development Agents managing IDE configuration and remote settings synchronization. IntelliJ IDEA & IntelliJ Platform

How do I install registry?

Run the command: npx killer-skills add JetBrains/intellij-community. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for registry?

Key use cases include: Defining registry keys in plugin.xml configurations, Managing remote Cloud Registry updates for JetBrains IDEs, Synchronizing IDE settings across development environments, Implementing registry-based feature toggles for plugins.

Which IDEs are compatible with registry?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for registry?

Requires IntelliJ Platform SDK knowledge. Limited to JetBrains IDE ecosystem. Cloud Registry functionality specific to JetBrains products.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add JetBrains/intellij-community. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use registry immediately in the current project.

Related Skills

Looking for an alternative to registry or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

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
AI

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
AI