For the complete documentation index, see llms.txt. This page is also available as Markdown.

Getting started with plugins

Create and load your first Nuclear plugin and verify the SDK works end-to-end.

Spin up a bare plugin, load it in Nuclear, and poke the Plugin SDK to make sure everything is wired.

Plugins are folders on disk with a package.json and an entry file. The app loads them at runtime and provides @nuclearplayer/plugin-sdk to your code.

Usage

Create a folder anywhere on your machine, e.g. ~/nuclear-plugins/hello-plugin.

Run npm init inside.

Load it in the app

  1. Open Nuclear → Preference → Plugins (from the left sidebar).

  2. Click Add Plugin and select your plugin folder.

  3. Toggle it on. onLoad runs at import time; onEnable runs when you enable.

Verify the SDK

  • Open Settings and find the "Examples" section. You should see "Hello world" with a toggle.

  • Flip it. The value persists to disk and updates subscribers.

Plugin shape

package.json keys used by the loader:

  • name, version, description, author

  • main (optional). If missing, the app tries index.js, index.ts, index.tsx, then dist/index.*.

  • nuclear.displayName (optional UI name)

  • nuclear.categories (shown in the Plugins list)

  • nuclear.icon and nuclear.permissions (optional; unknown permissions get a warning)

Last updated