Plugin Architecture
Skill by maverick-software
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/maverick-software/plugin-architecturePlugin Architecture Skill
name: plugin-architecture version: 1.1.0 author: Charles Sears description: Adds UI plugin registration support to OpenClaw - allows plugins to register custom tabs in the Control UI.
Overview
This skill adds the ability for OpenClaw plugins to register custom UI views/tabs that appear in the Control dashboard sidebar.
Installation
This skill requires manual installation by your OpenClaw agent.
After extracting this skill to your skills folder, give your agent this prompt:
Please install the plugin-architecture skill. Read the INSTALL_INSTRUCTIONS.md file in the skill folder and follow it step by step. The skill is at: ~/clawd/skills/plugin-architecture/
What It Does
Once installed, plugins can register UI tabs like this:
// In your plugin's register() function:
if (typeof api.registerView === "function") {
api.registerView({
id: "my-view",
label: "My View",
subtitle: "Description here",
icon: "database", // Icon name from the icon set
group: "Agent", // Which nav group (Chat, Control, Agent, Settings)
position: 5, // Order within the group
});
}
Files Included
SKILL.md- This fileINSTALL_INSTRUCTIONS.md- Step-by-step instructions for the agentreference/- Reference code files showing what to add
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-maverick-software-plugin-architecture": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
discord-connect-hub
Complete Discord integration for Clawdbot with automatic UI installation. Provides Discord bot connectivity, dashboard tab, setup wizard, credential management, server monitoring, and plugin architecture hooks. Use when setting up Discord channel integration or adding Discord tab to the Control dashboard. Includes automatic installation of UI components, RPC handlers, and navigation updates.
zapier-mcp
Connect 8,000+ apps via Zapier MCP. Includes full UI integration for Clawdbot Gateway dashboard. Use when setting up Zapier integration, connecting apps, or using Zapier tools via mcporter.
Agent Mode Upgrades
Skill by maverick-software
Multi Agent Tenant Upgrade
Skill by maverick-software
1password-ui
1Password UI tab for OpenClaw dashboard. Manage secrets, credential mappings, and auth state from the Control UI.