โ† All skills
Tencent SkillHub ยท Developer Tools

Plugin UI Architecture

Installs UI plugin architecture into OpenClaw, enabling plugins to register custom views, navigation items, and settings panels.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Installs UI plugin architecture into OpenClaw, enabling plugins to register custom views, navigation items, and settings panels.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, INSTALL_INSTRUCTIONS.md, reference/ui-plugin-registry.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 5 sections Open source page

Plugin 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 file INSTALL_INSTRUCTIONS.md - Step-by-step instructions for the agent reference/ - Reference code files showing what to add

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • INSTALL_INSTRUCTIONS.md Docs
  • reference/ui-plugin-registry.ts Scripts