fix: 修正 marketplace.json 格式以符合 Claude Code 规范

- 添加 owner 字段(对象格式)
- 修正 name 为唯一标识符 chinaweal-plugins
- 使用本地相对路径作为 plugin source
This commit is contained in:
黎润豪 2026-03-31 17:04:41 +08:00
parent 355bf42403
commit 50e2cf4e78
1 changed files with 8 additions and 23 deletions

View File

@ -1,40 +1,25 @@
{ {
"name": "众望通企业技能市场", "name": "chinaweal-plugins",
"description": "众望通企业 Claude Code Skills 插件市场,包含 PMS 开发、Gitea API 等企业业务集成技能", "owner": {
"source": { "name": "ChinaWeal",
"github": null, "email": "lirh@chinaweal.com"
"git": "http://47.107.61.133:3000/chinaweal/chinaweal-skills.git"
}, },
"description": "众望通企业 Claude Code Skills 插件市场,包含 PMS 开发、Gitea API 等企业业务集成技能",
"plugins": [ "plugins": [
{ {
"name": "chinaweal-pms", "name": "chinaweal-pms",
"description": "众望通 PMS 系统数据查询工具。用于查询 PMS 系统中的待办任务数据。", "description": "众望通 PMS 系统数据查询工具。用于查询 PMS 系统中的待办任务数据。",
"categories": ["development", "enterprise"], "source": "./skills/chinaweal-pms"
"keywords": ["pms", "todo", "待办"],
"source": {
"git": "http://47.107.61.133:3000/chinaweal/chinaweal-skills.git",
"path": "skills/chinaweal-pms"
}
}, },
{ {
"name": "gitea-api", "name": "gitea-api",
"description": "Gitea API 调用工具。用于与 Gitea 代码托管平台进行交互。", "description": "Gitea API 调用工具。用于与 Gitea 代码托管平台进行交互。",
"categories": ["development", "enterprise"], "source": "./skills/gitea-api"
"keywords": ["gitea", "api", "仓库管理"],
"source": {
"git": "http://47.107.61.133:3000/chinaweal/chinaweal-skills.git",
"path": "skills/gitea-api"
}
}, },
{ {
"name": "pms-development", "name": "pms-development",
"description": "PMS 待办开发工具。用于开发 PMS 系统中的待办任务,包括仓库克隆、分支创建、需求开发、代码检查和分支推送。", "description": "PMS 待办开发工具。用于开发 PMS 系统中的待办任务,包括仓库克隆、分支创建、需求开发、代码检查和分支推送。",
"categories": ["development", "enterprise"], "source": "./skills/pms-development"
"keywords": ["pms", "development", "开发待办"],
"source": {
"git": "http://47.107.61.133:3000/chinaweal/chinaweal-skills.git",
"path": "skills/pms-development"
}
} }
] ]
} }