Custom Plugins Ecosystem

Extend Admin with powerful, community-built and official plugins to automate workflows, integrate third-party tools, and tailor your dashboard to your exact needs.

All Analytics Automation Integration Security UI/UX

Install & Configure in Minutes

Adding custom plugins to your Admin workspace is straightforward and secure.

1

Browse Marketplace

Explore official and community plugins filtered by category, rating, or compatibility.

2

Install One-Click

Deploy plugins directly from the UI or via CLI. No complex server configurations required.

3

Configure Permissions

Set granular access controls, API keys, and webhook endpoints for each plugin.

4

Activate & Monitor

Go live instantly. Track usage, logs, and performance via the built-in plugin manager.

Build Your Own Plugin

Create custom solutions using our open SDK. Full documentation, testing sandbox, and one-click publishing to the marketplace.

  • TypeScript & Node.js SDK
  • Local dev environment & hot reload
  • Automated security scanning & CI/CD
Read Plugin Docs →
import { Plugin, Hook } from '@admin/sdk';
export default class CustomNotifier extends Plugin {
name = 'custom-notifier';
version = '1.2.0';
async onEvent(event: PluginEvent) {
if (event.type === 'user.created') {
await this.sendSlackAlert(event.payload);
}
}
}

Common Questions

Are community plugins secure?
Yes. Every plugin undergoes automated vulnerability scanning, sandbox testing, and manual review before appearing in the marketplace. You can also view permission scopes before installation.
Can I use plugins on the free tier?
The free tier includes access to 5 official plugins. Community plugins are free to install but may require the Pro plan for advanced features like webhook routing and custom variables.
How do I remove or update a plugin?
Navigate to Settings > Plugins. You can disable, update, or uninstall any plugin instantly. Updates are non-destructive and preserve your configuration data.
Do you monetize community plugins?
Developers keep 100% of revenue from paid plugins. Admin only takes a 5% platform fee for transactions processed through our marketplace billing system.