From 59a88b301666aa5f4629ab5b84bfb540d286bc5d Mon Sep 17 00:00:00 2001 From: lroyia Date: Wed, 1 Apr 2026 10:06:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=20plugin.json=20?= =?UTF-8?q?=E4=B8=BA=E6=AD=A3=E7=A1=AE=E7=9A=84=20plugin=20manifest=20?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 marketplace 元数据替换为包含 plugins 数组的 plugin manifest, 使 chinaweal-pms 等 skills 能够正常加载。 --- .claude-plugin/plugin.json | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index c0a904c..ef66f4e 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,23 +1,22 @@ { - "name": "chinaweal-claude-code", - "version": "1.0.0", - "description": "众望通企业内部 Claude Code Skills 集合,包含 PMS 开发、Gitea API 等企业业务集成技能", - "author": { - "name": "lirh", + "name": "chinaweal-plugins", + "owner": { + "name": "ChinaWeal", "email": "lirh@chinaweal.com" }, - "homepage": "http://47.107.61.133:3000/chinaweal/chinaweal-claude-code", - "repository": "http://47.107.61.133:3000/chinaweal/chinaweal-claude-code", - "license": "Apache-2.0", - "keywords": [ - "pms", - "gitea", - "enterprise", - "chinaweal", - "development" - ], - "categories": [ - "development", - "enterprise" + "description": "众望通企业 Claude Code Skills 插件", + "plugins": [ + { + "name": "chinaweal-pms", + "source": "./skills/chinaweal-pms" + }, + { + "name": "gitea-api", + "source": "./skills/gitea-api" + }, + { + "name": "pms-development", + "source": "./skills/pms-development" + } ] }