Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Installs UI plugin architecture into OpenClaw, enabling plugins to register custom views, navigation items, and settings panels.
Installs UI plugin architecture into OpenClaw, enabling plugins to register custom views, navigation items, and settings panels.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
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.
This skill adds the ability for OpenClaw plugins to register custom UI views/tabs that appear in the Control dashboard sidebar.
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/
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 }); }
SKILL.md - This file INSTALL_INSTRUCTIONS.md - Step-by-step instructions for the agent reference/ - Reference code files showing what to add
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.