
seamas0825-lab/dsh-youmind-plugin
40最近提交 2026年8月14日
dsh-youmind-plugin DSH 插件
该插件在 DeepSeek Harness 中注册一个 `youmind` Skill 和五个模型工具,使 Agent 能够搜索 YouMind 知识库、浏览公共网络以及调用 YouMind API。需要 YouMind API 密钥并依赖 YouMind 服务。
如何安装 dsh-youmind-plugin DSH 插件
dsh plugin --profile web add github:seamas0825-lab/dsh-youmind-plugin#main复制不会执行命令。安装 dsh-youmind-plugin DSH 插件前请核对仓库和版本。
dsh-youmind-plugin DSH 插件数据来源
dsh-youmind-plugin DSH 插件快照日期:2026年8月16日
discovered
dsh-youmind-plugin DSH 插件能做什么
- 通过 `youmind_search_api` 搜索可用的 YouMind OpenAPI
- 通过 `youmind_api_info` 读取某个 API 的请求说明
- 通过 `youmind_call_api` 调用任意已确认的 YouMind API
- 通过 `youmind_find` 搜索个人知识库或指定 Board
- 通过 `youmind_web_search` 搜索公开互联网
dsh-youmind-plugin DSH 插件适合哪些场景
- 在调用 API 前查找并阅读其文档
- 查询自己的 YouMind 知识库以获取相关信息
- 通过 YouMind 的基础设施进行网络搜索
- 通过链式调用多个 YouMind API 实现工作流自动化
- 在聊天中探索 YouMind 的可用能力
dsh-youmind-plugin DSH 插件适合谁
- 将 YouMind 与 DeepSeek Harness 集成的开发者
- 需要在 YouMind 上管理个人知识库并通过 AI 代理查询的用户
dsh-youmind-plugin DSH 插件的限制
- 需要有效的 YouMind API 密钥,并存储在 DSH 凭据文件中
- `youmind_call_api` 工具可执行发布、删除等破坏性操作,仅应在受信任环境中启用
dsh-youmind-plugin DSH 插件的仓库 README 摘录
以下文字摘自 dsh-youmind-plugin DSH 插件的上游仓库 seamas0825-lab/dsh-youmind-plugin 的 README,版权归原作者,仅作引用。
面向 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) 的 YouMind OpenAPI 插件。 [](LICENSE) ## 来源与致谢 本插件的 YouMind 工作流与 Skill 设计参考并适配自 [`YouMind-OpenLab/skills`](https://github.com/YouMind-OpenLab/skills)。感谢 YouMind OpenLab 公开相关 Skill 与 OpenAPI 使用范式。本项目是面向 DeepSeek Harness 的社区适配,不代表 YouMind 官方发布。 它会向 Harness 注册一个 `youmind` Skill 和五个模型工具: - `youmind_search_api`:搜索可用的 YouMind OpenAPI。 - `youmind_api_info`:读取某个 API 的请求说明。 - `youmind_call_api`:调用任意已确认的 YouMind API。 - `youmind_find`:搜索个人 YouMind 知识库或指定 Board。 - `youmind_web_search`:通过 YouMind 搜索公开互联网。 ## 安装 可以直接从 GitHub 安装。为了避免分支更新改变实际安装内容,正式使用时建议把 `main` 替换为具体 commit SHA: ```bash dsh plugin --profile web add github:seamas0825-lab/dsh-youmind-plugin#main ``` 检查组合配置: ```bash dsh --profile web --dump-config ``` ## 配置认证 从 https://youmind.com/settings/api-keys 创建 API Key,然后将它保存到 DSH 的受管凭据文件: ```yaml # ~/.dsh/.credentials.yaml YOUMIND_API_KEY: sk-ym-... ``` 确保凭据文件只有当前用户可读: ```bash chmod 600 ~/.dsh/.credentials.yaml ``` 插件通过 DSH 原生 `credentials` 服务按调用读取密钥,修改凭据后无需重启 Harness。 不要把 API Key 发到聊天中。插件不会将密钥放入普通设置、工具参数、结果或日志。 如需连接预览或自托管兼容端点,可以额外设置: ```bas
阅读完整 README仓库许可: MIT
dsh-youmind-plugin DSH 插件常见问题
如何安装 dsh-youmind-plugin?
运行 `dsh plugin --profile web add github:seamas0825-lab/dsh-youmind-plugin#main`。生产环境建议将 `main` 替换为具体的 commit SHA,以避免未来更新带来的意外变化。
如何配置插件所需的 API 密钥?
在 https://youmind.com/settings/api-keys 创建 API 密钥,然后将其添加到 DSH 凭据文件(通常位于 ~/.dsh/.credentials.yaml)中,键名为 `YOUMIND_API_KEY`。请确保该文件权限为 600(仅本人可读)。
能否使用自定义的 YouMind 端点?
可以,设置环境变量 `YOUMIND_ENDPOINT` 为你偏好的端点(例如预览版或自托管兼容服务器)。默认值为 https://youmind.com。
使用 `youmind_call_api` 工具时需要注意什么?
该工具可以调用任何 YouMind API,包括发布、移动、删除或付费操作。内置 Skill 要求代理在执行这些操作前确认用户意图,但建议仅在受信任的 Harness 环境中启用此插件,并且切勿将 API 密钥泄露到聊天中。
如何卸载插件?
运行 `dsh plugin --profile web remove dsh-youmind-plugin` 即可从指定配置文件中移除该插件。