# Send Plugin UI Architecture to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "plugin-architecture",
    "name": "Plugin UI Architecture",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/maverick-software/plugin-architecture",
    "canonicalUrl": "https://clawhub.ai/maverick-software/plugin-architecture",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/plugin-architecture",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plugin-architecture",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "INSTALL_INSTRUCTIONS.md",
      "reference/ui-plugin-registry.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "plugin-architecture",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T04:37:45.960Z",
      "expiresAt": "2026-05-14T04:37:45.960Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plugin-architecture",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plugin-architecture",
        "contentDisposition": "attachment; filename=\"plugin-architecture-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "plugin-architecture"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/plugin-architecture"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/plugin-architecture",
    "downloadUrl": "https://openagent3.xyz/downloads/plugin-architecture",
    "agentUrl": "https://openagent3.xyz/skills/plugin-architecture/agent",
    "manifestUrl": "https://openagent3.xyz/skills/plugin-architecture/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/plugin-architecture/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maverick-software
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T04:37:45.960Z
- Expires at: 2026-05-14T04:37:45.960Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/plugin-architecture)
- [Send to Agent page](https://openagent3.xyz/skills/plugin-architecture/agent)
- [JSON manifest](https://openagent3.xyz/skills/plugin-architecture/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/plugin-architecture/agent.md)
- [Download page](https://openagent3.xyz/downloads/plugin-architecture)