mirror of
https://git.openapi.site/https://github.com/desirecore/market.git
synced 2026-07-23 05:23:40 +08:00
## 概述 / Summary 把 market 从「内容仓库」转型为「元数据注册表」的仓库侧改动,配合客户端 PR [desirecore/desirecore#919](https://github.com/desirecore/desirecore/pull/919) 与 [ADR-038](https://github.com/desirecore/desirecore-docs/blob/main/技术/决策/ADR-038-市场元数据注册表与两层技能模型.md)。 原则:market 只放元数据、不放第三方内容;内置技能仍 bundled(有界例外)。每条第三方条目用 `entry.json`(元数据 + `source` 指针),正文放各自源仓库、安装时按需获取。 ## 改动 / Changes ### S10 — minimax 迁出为官方独立仓库 - `minimax-image-gen` / `minimax-tts`(均 `author=desirecore`)迁至新建的官方开源仓库 **[desirecore/skills-minimax](https://github.com/desirecore/skills-minimax)**(MIT,monorepo, 一仓多技能)。 - market 改用 `skills/<id>/entry.json` 的 pointer 引用(`source.path` 指入子目录,`ref` 锁定 commit `6e39eee`),删除内联 `SKILL.md`。 ### S11 — 许可署名合规 - 新增根 `LICENSE`(MIT)与 `THIRD_PARTY_NOTICES.md`。 - 标注 Anthropic **docx/pdf/pptx/xlsx 为 source-available(非开源、仅供演示参考)**、 frontend-design 等为 Apache-2.0;每条 entry 的 `license`/`redistribution` 为单条真相源。 ### S12 — 外部技能改为纯 pointer(取代 #32 的 vendoring) - 把 [#32](https://github.com/desirecore/market/pull/32) 的 10 个外部技能写成 `entry.json` pointer(**不再 vendor 上游源码**): - MIT/MIT-0 → `partner`/`community` + `allowed` - 无声明许可(meituan / netease)→ `pointer` + `source-pointer-only` - luckin 打包产物 → `pointer` + `verify-package-terms`(`source.kind=zip`) ## 说明 / Notes - 外部条目的 `name`/`category` 为基于上游 URL 的合理初值,后续可随上游元数据完善。 - 客户端(#919)已支持 `entry.json` 读/装与体积守护栏;本 PR 合并后,主仓库需重新 `npm run sync-market` 重打包 `defaults/market.zip`。 > 注:`follow-builders`(zarazhangrui/follow-builders, MIT)是 #32 `external-skills.json` 外部技能集合中的一员,属本次迁移范畴,非额外引入。 Co-authored-by: yi-ge <jackyoncode@gmail.com>
37 lines
814 B
JSON
37 lines
814 B
JSON
{
|
|
"id": "minimax-tts",
|
|
"name": "MiniMax 语音合成",
|
|
"category": "media",
|
|
"tags": [
|
|
"minimax",
|
|
"media"
|
|
],
|
|
"latestVersion": "1.2.1",
|
|
"i18n": {
|
|
"zh-CN": {
|
|
"name": "MiniMax 语音合成",
|
|
"shortDesc": "MiniMax 语音合成"
|
|
},
|
|
"en-US": {
|
|
"name": "MiniMax Text-to-Speech",
|
|
"shortDesc": "MiniMax Text-to-Speech"
|
|
}
|
|
},
|
|
"maintainer": {
|
|
"name": "DesireCore",
|
|
"verified": true,
|
|
"account": "desirecore",
|
|
"url": "https://github.com/desirecore"
|
|
},
|
|
"stewardship": "official",
|
|
"license": "MIT",
|
|
"redistribution": "allowed",
|
|
"source": {
|
|
"kind": "git",
|
|
"repoUrl": "https://github.com/desirecore/skills-minimax.git",
|
|
"repoBranch": "main",
|
|
"path": "minimax-tts",
|
|
"ref": "6e39eee2ad39632a21f43ed997983e70594b2b8a"
|
|
}
|
|
}
|