@geminilight/mindos 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/app/api/health/route.ts +6 -0
- package/app/app/api/mcp/agents/route.ts +1 -49
- package/app/app/api/mcp/install/route.ts +1 -24
- package/app/app/api/restart/route.ts +22 -0
- package/app/app/api/setup/check-path/route.ts +35 -0
- package/app/app/api/setup/check-port/route.ts +21 -5
- package/app/app/api/setup/ls/route.ts +38 -0
- package/app/app/api/setup/route.ts +49 -0
- package/app/app/setup/page.tsx +3 -2
- package/app/components/HomeContent.tsx +2 -0
- package/app/components/SettingsModal.tsx +9 -0
- package/app/components/SetupWizard.tsx +344 -46
- package/app/components/WelcomeBanner.tsx +63 -0
- package/app/lib/i18n.ts +40 -2
- package/app/lib/mcp-agents.ts +48 -0
- package/app/lib/settings.ts +1 -1
- package/bin/lib/mcp-agents.js +16 -0
- package/bin/lib/mcp-install.js +2 -11
- package/package.json +1 -1
- package/scripts/setup.js +195 -86
- package/skills/human-insights/SKILL.md +143 -0
- package/skills/mindos/SKILL.md +7 -6
- package/skills/mindos-zh/SKILL.md +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindos-zh
|
|
3
3
|
description: >
|
|
4
|
-
MindOS
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
MindOS 知识库中文操作指南,仅用于 MindOS 知识库(mindRoot 路径)内的 Agent 任务。
|
|
5
|
+
仅当操作目标是 MindOS 知识库目录下的文件时触发,典型请求包括”更新笔记””搜索知识库”
|
|
6
|
+
“整理文件””执行 SOP””按团队标准 review””把任务交接给另一个 Agent””同步决策”
|
|
7
|
+
“追加 CSV””复盘这段对话””提炼关键经验””把复盘结果自适应更新到对应文档”
|
|
8
|
+
“把这些信息路由到对应文件””同步更新所有相关文档”等。
|
|
9
|
+
不触发:操作目标是本地代码仓库文件(如 /code/xxx/wiki/*.md)、
|
|
10
|
+
用户给出的是绝对路径且不在 MindOS mindRoot 下、或任务是修改项目源码/文档。
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# MindOS 知识库操作指南
|