Skip to content

seamas0825-lab/dsh-youmind-plugin

40Last commit Aug 14, 2026

dsh-youmind-plugin DSH plugin

This plugin registers a `youmind` Skill and five model tools in DeepSeek Harness, enabling agents to search YouMind knowledge bases, browse public web, and call YouMind APIs. It requires a YouMind API key and relies on the YouMind service.

How to install the dsh-youmind-plugin DSH plugin

dsh plugin --profile web add github:seamas0825-lab/dsh-youmind-plugin#main

Copying does not run this command. Review the repository and version before installing the dsh-youmind-plugin DSH plugin.

dsh-youmind-plugin DSH plugin data source

dsh-youmind-plugin DSH plugin snapshot date: Aug 16, 2026

discovered

What the dsh-youmind-plugin DSH plugin can do

  • Search available YouMind OpenAPIs via `youmind_search_api`
  • Read request details for a specific API via `youmind_api_info`
  • Call any confirmed YouMind API via `youmind_call_api`
  • Search personal YouMind knowledge base or a specific Board via `youmind_find`
  • Search the public internet through YouMind via `youmind_web_search`

Where the dsh-youmind-plugin DSH plugin fits

  • Find and read API documentation before making a call
  • Query your own YouMind knowledge base for relevant information
  • Perform web searches through YouMind's infrastructure
  • Automate workflows by chaining multiple YouMind API calls
  • Explore available YouMind capabilities without leaving the chat

Who the dsh-youmind-plugin DSH plugin is for

  • Developers integrating YouMind with DeepSeek Harness
  • Users who manage personal knowledge bases on YouMind and want to query them via AI agents

dsh-youmind-plugin DSH plugin limitations

  • Requires a valid YouMind API key, which must be stored in DSH credentials
  • The `youmind_call_api` tool can perform destructive operations (publish, delete, etc.) – only use in trusted environments

dsh-youmind-plugin DSH plugin: from the repository README

Quoted from the seamas0825-lab/dsh-youmind-plugin README, the upstream source of the dsh-youmind-plugin DSH plugin. Copyright remains with the original authors.

面向 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) 的 YouMind OpenAPI 插件。 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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

Read the full READMERepository license: MIT

dsh-youmind-plugin DSH plugin questions

How do I install the dsh-youmind-plugin?

Run `dsh plugin --profile web add github:seamas0825-lab/dsh-youmind-plugin#main`. For production, replace `main` with a specific commit SHA to avoid unexpected changes from future updates.

How do I configure the API key for this plugin?

Create an API key at https://youmind.com/settings/api-keys. Then add it to your DSH credential file (usually ~/.dsh/.credentials.yaml) under the key `YOUMIND_API_KEY`. Make sure the file has permissions 600 (only readable by you).

Can I use a custom YouMind endpoint?

Yes, you can set the environment variable `YOUMIND_ENDPOINT` to your preferred endpoint (e.g., a preview or self-hosted compatible server). The default is https://youmind.com.

What should I be careful about when using the `youmind_call_api` tool?

This tool can call any YouMind API, including those that publish, move, delete, or charge money. The built-in Skill requires the agent to confirm user intent before such actions, but you should only enable this plugin in a trusted Harness environment and never share your API key.

How do I uninstall the plugin?

Run `dsh plugin --profile web remove dsh-youmind-plugin`. This removes the plugin from the specified profile.