DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Tablerag — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
T

dsh-tablerag

Tablerag

通过 DSH MCP 客户端公开一个本地 TableRAG 目录的 DeepSeek Harness 捆绑包

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:BitDG/dsh-TableRAG#82826f9d10c025f91078178f3035d8f4d62f14a6
README兼容性版本

兼容性与来源证明

Tablerag 以 dsh-tablerag 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/2

版本

0.1.0stable
2026/9/2

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
Apache-2.0
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/2
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 search-research 分类下经过校验的插件。

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-plugin向模型提供 BrowserSkill 浏览器自动化(browser_* 工具)的 DeepSeek Harness 工具插件Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Free Searchdsh-free-searchDeepSeek Harness 的免费网页搜索:13 个引擎(Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl 无需密钥;Parallel/Perplexity/SerpBase/DeepSeek 需要密钥),支持时间筛选、平台搜索和 web_fetch,并提供网页设置界面。Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。

README


description: "Connect one built TableRAG catalog to DeepSeek Harness as native model-facing tools." kind: "package-bundle"

dsh-TableRAG

English | 中文

dsh-TableRAG connects one built TableRAG catalog to a DeepSeek Harness profile. DSH starts the local read-only TableRAG stdio server through its shipped MCP client and exposes the catalog tools as mcp__tablerag__<tool>.

The bundle contains no spreadsheets, project YAML, DuckDB database, credentials, or Python runtime. TableRAG remains the owner of indexing, evidence, and read-only query behavior.

Prerequisites

  1. Install DeepSeek Harness.
  2. Install TableRAG, create a project YAML, and build its index.
  3. Keep the absolute project YAML path and the table-rag executable path available to the PowerShell process that launches DSH.

The TableRAG repository documents project configuration and index construction. A source checkout typically builds with:

uv sync --extra dev --locked
uv run table-rag build --project projects\my-project.local.yaml

Install from GitHub

Set the selected catalog in the same PowerShell process that installs and launches DSH. Set TABLERAG_EXECUTABLE when table-rag is not on PATH:

$env:TABLERAG_PROJECT = 'C:\path\to\TableRAG\projects\my-project.local.yaml'
$env:TABLERAG_EXECUTABLE = 'C:\path\to\TableRAG\.venv\Scripts\table-rag.exe'
dsh plugin --profile web add github:BitDG/dsh-TableRAG
dsh --profile web --dump-config
dsh --profile web

--dump-config must show the mcp-tablerag row. A missing project variable, invalid executable, missing index, or failed MCP discovery aborts plugin activation instead of publishing an empty connection.

Remove the bundle with:

dsh plugin --profile web remove dsh-tablerag

Use another profile name to keep the catalog away from unrelated sessions. Set optional TABLERAG_CWD only when the MCP child process must start outside the project YAML directory.

What the model gets

The DSH MCP client discovers the TableRAG tools and registers stable names such as:

  • mcp__tablerag__get_project
  • mcp__tablerag__find_tables
  • mcp__tablerag__search_knowledge
  • mcp__tablerag__get_record

Calls and bounded results pass through the normal DSH tool pipeline and session log. Verify a deployment by calling mcp__tablerag__get_project and checking the returned project identity and catalog statistics.

How it works

cordis.patch.yml inserts one @deepseek-ai/dsh-mcp-client row:

  • TABLERAG_PROJECT selects the project YAML and catalog.
  • TABLERAG_EXECUTABLE selects the TableRAG console script, defaulting to table-rag on PATH.
  • TABLERAG_CWD optionally overrides the child working directory.
  • serverName: tablerag keeps model-facing tool names and permission rules stable across restarts.
  • failOnStartupError: true prevents silent startup without TableRAG tools.

The selected DSH profile owns connection lifetime and reconnect behavior. TableRAG continues to own spreadsheet discovery, index construction, DuckDB access, evidence, and read-only query semantics.

Limitations

  • One bundle instance connects one project YAML under the fixed tablerag namespace. Add a separately named profile row when one DSH process must expose another catalog.
  • DSH consumes MCP tools only. The optional tablerag://catalog MCP resource is not bridged, but equivalent project and table information is available through tools.
  • Environment variables belong to the launching process. Use a trusted local launcher or an explicit profile-row override when paths must persist across shells. Do not commit machine-specific paths or credentials.
  • This bundle does not install TableRAG, build an index, or modify source spreadsheets.

Development

npm test
npm run pack:check

For a local checkout installation:

dsh plugin --profile web add 'file:C:/path/to/dsh-TableRAG'

Licensed under Apache-2.0.