From 25f0d315041c2e9f95041db880d3846256fcd56c Mon Sep 17 00:00:00 2001 From: Maciej Krajewski Date: Mon, 26 Jan 2026 02:22:09 +0100 Subject: [PATCH] fix: add plugin.json manifest for Claude Code skill loading (#126) Add the required plugin.json file to .claude-plugin/ directory to enable Claude Code to properly load the UI/UX Pro Max skill. The marketplace.json file is only used for marketplace indexing, while plugin.json is required for the runtime plugin loading mechanism. Includes full metadata (version, description, author, keywords) aligned with the existing marketplace.json for consistency. Fixes #123 Co-authored-by: Claude Opus 4.5 --- .claude-plugin/plugin.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .claude-plugin/plugin.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..4b98e87 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,11 @@ +{ + "name": "ui-ux-pro-max", + "version": "2.0.1", + "description": "Professional UI/UX design intelligence for AI coding assistants. Includes searchable databases of styles, colors, typography, charts, and UX guidelines for React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, and shadcn/ui.", + "author": { + "name": "nextlevelbuilder" + }, + "license": "MIT", + "keywords": ["ui", "ux", "design", "styles", "typography", "color-palette", "accessibility", "charts", "components"], + "skills": ["./.claude/skills/ui-ux-pro-max"] +}