fix: minimax 三个媒体技能改为 disable-model-invocation: true,并修正文档错误描述

- minimax-image-gen 1.3.0→1.3.1
- minimax-video-gen 1.2.0→1.2.1
- minimax-tts 1.2.0→1.2.1
- 修正 skill-creator/SKILL.md、desirecore-format.md、manage-skills/SKILL.md 中
  对 disable-model-invocation 的反向描述:true=L0+L1 自动注入;false=L0+L1+L2 完整内容注入
- manifest.json 版本 1.0.0→1.0.1,totalSkills 22→19,lastUpdated 2026-05-01

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-01 23:38:14 +08:00
parent 20553a5756
commit 5472359814
7 changed files with 14 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "DesireCore Official Market",
"version": "1.0.0",
"version": "1.0.1",
"description": "DesireCore 官方市场,提供精选高质量的 Agent 和 Skill",
"schemaVersion": "1.0.0",
"maintainer": {
@@ -15,8 +15,8 @@
},
"stats": {
"totalAgents": 1,
"totalSkills": 22,
"lastUpdated": "2026-04-26"
"totalSkills": 19,
"lastUpdated": "2026-05-01"
},
"features": [
"verified-only",

View File

@@ -486,7 +486,7 @@ metadata:
| `risk_level` | 推荐 | enum | `low` / `medium` / `high` |
| `status` | 推荐 | enum | `enabled` / `disabled` |
| `tags` | 可选 | string[] | 标签列表,用于搜索和分类 |
| `disable-model-invocation` | 可选 | boolean | `true` 时仅允许显式调用,默认 `false` |
| `disable-model-invocation` | 可选 | boolean | `true`=L0+L1 自动注入 system prompt`false`=L0+L1+L2 完整内容注入;默认 `true` |
| `requires` | 可选 | object | 依赖声明:`tools``optional_tools``connections` |
| `metadata` | 可选 | object | 元信息:`author``updated_at` |
| `market` | 可选 | object | 市场展示元数据(仅市场发布的技能需要) |

View File

@@ -6,11 +6,11 @@ description: >-
consistency. Use when 用户提到 生成图片、画图、文生图、创建图片、
AI 绘画、生成插图、画一张、帮我画、设计图片、MiniMax 画图。
license: Complete terms in LICENSE.txt
version: 1.3.0
version: 1.3.1
type: procedural
risk_level: low
status: enabled
disable-model-invocation: false
disable-model-invocation: true
provider: minimax
tags:
- media

View File

@@ -6,11 +6,11 @@ description: >-
and voice cloning. Use when 用户提到 语音合成、文字转语音、TTS、朗读、
读出来、生成语音、生成音频、文本转音频、配音、念出来、MiniMax 语音。
license: Complete terms in LICENSE.txt
version: 1.2.0
version: 1.2.1
type: procedural
risk_level: low
status: enabled
disable-model-invocation: false
disable-model-invocation: true
provider: minimax
tags:
- media

View File

@@ -7,11 +7,11 @@ description: >-
Use when 用户提到 生成视频、文生视频、AI 视频、创建视频、视频生成、
动画生成、MiniMax 视频、海螺、Hailuo、图片变视频、图生视频。
license: Complete terms in LICENSE.txt
version: 1.2.0
version: 1.2.1
type: procedural
risk_level: low
status: enabled
disable-model-invocation: false
disable-model-invocation: true
provider: minimax
tags:
- media

View File

@@ -139,7 +139,7 @@ SKILL.md 由两部分组成:**FrontmatterYAML 元数据)** 和 **BodyM
| 字段 | 类型 | 默认 | 说明 |
|------|------|------|------|
| `disable-model-invocation` | boolean | `true` | `true`=仅显式调用触发;`false`=自动注入 system prompt |
| `disable-model-invocation` | boolean | `true` | `true`=L0+L1 自动注入 system prompt按需加载体积小`false`=L0+L1+L2 完整内容注入 system prompt |
| `user-invocable` | boolean | `true` | `false`=不出现在命令补全,仅作为背景知识 |
| `allowed-tools` | string[] | — | 限制执行时可用的工具列表 |
| `requires` | object | — | 依赖声明:`tools``optional_tools``connections` |

View File

@@ -25,7 +25,7 @@
| 字段 | 类型 | 默认 | 说明 |
|------|------|------|------|
| `disable-model-invocation` | boolean | `true` | `true`=仅显式调用触发;`false`=自动注入 system prompt |
| `disable-model-invocation` | boolean | `true` | `true`=L0+L1 自动注入 system prompt按需加载体积小`false`=L0+L1+L2 完整内容注入 system prompt |
| `user-invocable` | boolean | `true` | `false`=不出现在命令补全,仅作为背景知识 |
| `allowed-tools` | string[] | 全部 | 限制执行时可用的工具列表(如 `["Edit", "Read", "Bash"]` |
| `model` | string | 继承 | 覆盖使用的模型 ID`"claude-sonnet-4-20250514"` |
@@ -125,8 +125,8 @@ json_output:
### 分层加载机制
- `disable-model-invocation: false`L0 + L1 自动注入 system prompt
- `disable-model-invocation: true` 时:显式调用时加载完整内容L0 + L1 + L2
- `disable-model-invocation: true`L0 + L1 自动注入 system prompt(按需加载完整内容,减少 system prompt 体积)
- `disable-model-invocation: false` 时:L0 + L1 + L2 完整内容注入 system prompt
- 不分层时:整段内容作为 fallback
## 完整示例