{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/plugin-architecture",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plugin-architecture",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "INSTALL_INSTRUCTIONS.md",
      "reference/ui-plugin-registry.ts"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/plugin-architecture",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Plugin Architecture Skill",
        "body": "name: plugin-architecture\nversion: 1.1.0\nauthor: Charles Sears\ndescription: Adds UI plugin registration support to OpenClaw - allows plugins to register custom tabs in the Control UI."
      },
      {
        "title": "Overview",
        "body": "This skill adds the ability for OpenClaw plugins to register custom UI views/tabs that appear in the Control dashboard sidebar."
      },
      {
        "title": "Installation",
        "body": "This skill requires manual installation by your OpenClaw agent.\n\nAfter extracting this skill to your skills folder, give your agent this prompt:\n\nPlease 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/"
      },
      {
        "title": "What It Does",
        "body": "Once installed, plugins can register UI tabs like this:\n\n// In your plugin's register() function:\nif (typeof api.registerView === \"function\") {\n  api.registerView({\n    id: \"my-view\",\n    label: \"My View\",\n    subtitle: \"Description here\",\n    icon: \"database\",  // Icon name from the icon set\n    group: \"Agent\",    // Which nav group (Chat, Control, Agent, Settings)\n    position: 5,       // Order within the group\n  });\n}"
      },
      {
        "title": "Files Included",
        "body": "SKILL.md - This file\nINSTALL_INSTRUCTIONS.md - Step-by-step instructions for the agent\nreference/ - Reference code files showing what to add"
      }
    ],
    "body": "Plugin Architecture Skill\n\nname: 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.\n\nOverview\n\nThis skill adds the ability for OpenClaw plugins to register custom UI views/tabs that appear in the Control dashboard sidebar.\n\nInstallation\n\nThis skill requires manual installation by your OpenClaw agent.\n\nAfter extracting this skill to your skills folder, give your agent this prompt:\n\nPlease 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/\n\nWhat It Does\n\nOnce installed, plugins can register UI tabs like this:\n\n// In your plugin's register() function:\nif (typeof api.registerView === \"function\") {\n  api.registerView({\n    id: \"my-view\",\n    label: \"My View\",\n    subtitle: \"Description here\",\n    icon: \"database\",  // Icon name from the icon set\n    group: \"Agent\",    // Which nav group (Chat, Control, Agent, Settings)\n    position: 5,       // Order within the group\n  });\n}\n\nFiles Included\nSKILL.md - This file\nINSTALL_INSTRUCTIONS.md - Step-by-step instructions for the agent\nreference/ - Reference code files showing what to add"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/maverick-software/plugin-architecture",
    "publisherUrl": "https://clawhub.ai/maverick-software/plugin-architecture",
    "owner": "maverick-software",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}