mirror of
https://git.openapi.site/https://github.com/desirecore/market.git
synced 2026-06-06 05:50:41 +08:00
## 概述 / Summary 新增市场技能 **tech-diagram**:把自然语言描述转成品牌一致的技术图(架构图/流程图/时序图/状态机/ER/类图/思维导图),在 DesireCore 对话内复用现有 Mermaid 渲染管线即时渲染为 SVG。 Adds a market skill **tech-diagram** that turns natural-language descriptions into brand-consistent technical diagrams, rendered inline as SVG by the existing Mermaid pipeline in the DesireCore chat. 灵感来源 / Inspired by [fireworks-tech-graph](https://github.com/yizhiyanhua-ai/fireworks-tech-graph) 的三个设计思路:语义词汇表即数据、风格系统化、领域 Pattern 内置——并落到 DesireCore 自己的 3+2 设计令牌与领域模型上。 ## 改动 / Changes - `skills/tech-diagram/SKILL.md` + `SKILL.zh-CN.md`:双语技能正文(强制风格规则 + 语义词汇表 + 输出约定) - `skills/tech-diagram/references/semantic-vocabulary.md`:概念→Mermaid 形状→3+2 classDef 完整映射 - `skills/tech-diagram/references/templates.md`:4 个 DesireCore 领域模板(Agent 架构 / Delegate 6 模式 / 三层记忆 / 关系图谱)+ 时序图示例 - `builtin-skills.json`:加入 `tech-diagram` - `manifest.json`:`version` 1.2.1→1.2.2,`stats.totalSkills` 21→22,`lastUpdated` ## 设计要点 / Design - **风格一致性**:每张图以 `%%{init}%%` 注入品牌主题(覆盖对话全局暗色),用 5 个 `classDef` 绑定 DesireCore 3+2 配色(green/blue/purple + warning orange / error red)。 - **语义优于视觉**:Agent→六边形、系统/记忆→圆角/圆柱、决策→菱形;箭头编码主数据流/记忆写入/异步/层级/上报。 - **领域内置**:直接对照 `delegate.ts` / `conversation-memory.ts` / `relations/projector.ts` 给出可套用模板。 ## 验证 / Verification - ✅ `scripts/i18n/validate-i18n.py`:无 i18n 问题 - ✅ 用 app 同版本 **mermaid 11.15.0**(securityLevel: loose)解析 `templates.md` 全部 5 个图块,全部通过
40 lines
967 B
JSON
40 lines
967 B
JSON
{
|
|
"name": "DesireCore Official Market",
|
|
"version": "1.2.2",
|
|
"schemaVersion": "1.1.0",
|
|
"supportedLocales": ["zh-CN", "en-US"],
|
|
"defaultLocale": "en-US",
|
|
"i18n": {
|
|
"default_locale": "en-US",
|
|
"zh-CN": {
|
|
"name": "DesireCore 官方市场",
|
|
"description": "DesireCore 官方市场,提供精选高质量的 Agent 和 Skill"
|
|
},
|
|
"en-US": {
|
|
"name": "DesireCore Official Market",
|
|
"description": "Curated, high-quality Agents and Skills published by the DesireCore team."
|
|
}
|
|
},
|
|
"maintainer": {
|
|
"name": "DesireCore Team",
|
|
"email": "market@desirecore.net",
|
|
"url": "https://desirecore.net"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/desirecore/market.git"
|
|
},
|
|
"stats": {
|
|
"totalAgents": 1,
|
|
"totalSkills": 22,
|
|
"lastUpdated": "2026-05-30"
|
|
},
|
|
"features": [
|
|
"verified-only",
|
|
"auto-sync",
|
|
"multi-language",
|
|
"ai-translation"
|
|
]
|
|
}
|