تخطَّ إلى المحتوى

Plugin Marketplace

هذا المحتوى غير متوفر بلغتك بعد.

The nself plugin marketplace is the registry of all 131 plugins for your self-hosted stack. 31 are free MIT plugins. 100 are pro plugins gated by a license tier. You can browse the marketplace from the Admin UI, the CLI, or at cloud.nself.org/marketplace.

The ɳSelf Admin UI includes a marketplace view at localhost:3021/plugins/marketplace.

Start the Admin UI if it is not already running:

Terminal window
nself service enable admin
nself build
nself restart
nself admin

The marketplace page lets you:

  • Search plugins by name or description
  • Filter by tier (free or pro)
  • Filter by bundle (ɳChat, ɳClaw, ɳFamily, ɳTV, ClawDE, ɳSentry)
  • Filter by category (ai, media, messaging, auth, and more)
  • See star ratings where available
  • Copy the install command for any free plugin
  • Navigate to the subscription page for pro plugins

When a new version of an installed plugin is available, a banner appears at the top of the marketplace page.

Terminal window
nself plugin marketplace list

Filter the results:

Terminal window
# Free plugins only
nself plugin marketplace list --tier free
# Pro plugins only
nself plugin marketplace list --tier pro
# Plugins in the ɳClaw bundle
nself plugin marketplace list --bundle nclaw
# Plugins by category
nself plugin marketplace list --category ai
# Raw JSON output
nself plugin marketplace list --json
Terminal window
nself plugin marketplace search "email"
nself plugin marketplace search "media streaming" --tier pro
nself plugin marketplace search "notification" --bundle nclaw
Terminal window
nself plugin marketplace info ai
nself plugin marketplace info livekit --open

--open opens the plugin page in your default browser.

Once you have found a plugin, install it with:

Terminal window
nself plugin install <name>

After installing, rebuild and restart your stack so the plugin is included in the generated docker-compose.yml:

Terminal window
nself build
nself restart

Free plugins (31 total, MIT licensed) install without a license key:

Terminal window
nself plugin install notify
nself plugin install stripe
nself plugin install search

See Free Plugins for the full list.

Pro plugins (62 total) require a valid license key. Set your key first:

Terminal window
nself license set nself_pro_xxxxx...
nself plugin install ai
nself plugin install livekit

The CLI checks your license tier against the plugin’s requirements server-side. If your tier does not include the requested plugin, the install is rejected with a message indicating the minimum required tier.

See Licensing for tier details and how to get a key.

Bundles group related pro plugins under a single subscription. Six bundles are available:

BundlePricePlugins
ɳClaw Bundle$0.99/moai, claw, claw-web, mux, voice, browser, google, notify, cron, claw-budget, claw-news
ClawDE Bundle$0.99/moclaw, ai, realtime, auth, notify, cms, sync
ɳTV Bundle$0.99/momedia-processing, streaming, epg, tmdb, podcast, recording, game-metadata, file-processing, subtitle-manager, vpn, stream-gateway
ɳFamily Bundle$0.99/mosocial, photos, activity-feed, moderation, realtime, cms, chat
ɳChat Bundle$0.99/mochat, livekit, recording, moderation, bots, realtime, auth
ɳSentry Bundle$0.99/monself-uptime-monitor, nself-status-page, nself-incident-mgmt, nself-alert-router, nself-slo-tracker, nself-synthetic-monitor, nself-rum, nself-errors, nself-cron-monitor, nself-oncall, nself-crash, nself-anomaly (+ nself-audit free)

Subscribe at nself.org/pricing. After subscribing, activate your key:

Terminal window
nself license set nself_pro_xxxxx...

Then install the bundle’s plugins:

Terminal window
nself plugin install ai claw claw-web mux voice browser google notify cron
nself build
nself restart

ɳSelf+ ($3.99/mo or $39.99/yr) includes all six bundles, all apps, and priority support.

When installed plugins have updates available:

  • Admin UI: a banner appears at localhost:3021/plugins/marketplace
  • CLI: run nself plugin updates to check all installed plugins

To update a specific plugin:

Terminal window
nself plugin update ai

To update all installed plugins:

Terminal window
nself plugin update