emredeveloper/deepseek-harness-huggingface

A community DeepSeek Harness plugin for read-only Hugging Face Hub model discovery.

项目介绍Project Overview

这是 DeepSeek Harness 的社区插件,提供只读的 Hugging Face Hub 模型发现能力。核心工具 hf_search_models 无需 API 密钥即可搜索公开模型,仅发送公共 GET 请求,不写文件或执行命令。适合在 Harness 中查找、浏览 Hub 上的公开模型时使用。注意:它仍是早期原型,需本地构建并通过 patch 文件加载。

This is a community plugin for DeepSeek Harness that adds read-only Hugging Face Hub model discovery. Its core tool, hf_search_models, searches public models on the Hub without an API key, using only public GET requests; it does not write files or run shell commands. Use it when browsing or finding public models from within Harness. Caveat: it is an early prototype and must be built locally and loaded via a patch file.

或使用命令行安装(适合开发者)Or use CLI install (for developers)

命令行安装CLI Install

dsh plugin --profile web add github:emredeveloper/deepseek-harness-huggingface

emredeveloper/deepseek-harness-huggingface 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

deepseek-harness-huggingface

A community plugin for DeepSeek Harness that adds read-only Hugging Face Hub model discovery.

Status

Early prototype. The plugin currently provides one tool:

  • hf_search_models — searches public models on Hugging Face Hub without an API key.

Development

npm install
npm run typecheck
npm run build

Load locally in DeepSeek Harness

Add the built module to a Harness patch file:

- insert:
    - id: huggingface
      # Use a file URL (on Windows, for example: file:///C:/path/to/lib/index.js)
      name: file:///absolute/path/to/deepseek-harness-huggingface/lib/index.js

Then start Harness with the patch:

pnpm dsh web --patch ./patch.yml

The plugin only performs public GET requests to the Hugging Face Hub API. It does not write files, execute shell commands, or require a token.

Why this is separate

DeepSeek Harness is currently in developer preview and its maintainers are not accepting external pull requests in the main repository. The project explicitly encourages community plugins; this package is intended to be published independently with the dsh-plugin topic.

上一个 Prev dsh-memory 下一个 Next dsh-image-theme