DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

tomilite-dsh-plugin

Tomilite Dsh Plugin

DeepSeek Harness 插件:让您的 DSH 代理访问本地 TomiLite 任务、笔记和项目统计信息

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

npx -y @deepseek-ai/dsh plugin --profile web add github:xxwj225-James/tomilite-dsh-plugin#e3813b44f92b9838d4f1f30765bb784b4b0f0f39
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/21

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器

README

tomilite-dsh-plugin

A DeepSeek Harness plugin that gives your DSH agent access to your local TomiLite — tasks, notes, and project stats.

The agent creates a task in TomiLite and it shows up in your Tasks panel instantly. Your DSH agent becomes the hands, TomiLite stays the workspace.

🚀 Get TomiLite

This plugin needs the TomiLite desktop app running on the same machine.

Windows one-liner (skips install if TomiLite is already running, otherwise downloads + installs + starts it):

powershell -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/xxwj225-James/tomilite-dsh-plugin/main/scripts/install-tomilite.ps1 | iex"

Or download the installer manually: TomiLite Releases

If TomiLite is not running, the tools fail with an actionable message (with the download link) — the agent will relay it to you.

Prerequisites

  • DeepSeek Harness installed (npx @deepseek-ai/dsh web, or built from source)
  • TomiLite desktop app running — the plugin talks to its local API at http://localhost:3192 (localhost calls are token-exempt; no API key needed)
  • Node.js 22.19+ (matches DSH requirements)

Install

# npm (recommended once published)
dsh plugin --profile web add tomilite-dsh-plugin

# git (installs from this repository)
dsh plugin --profile web add github:xxwj225-James/tomilite-dsh-plugin

# local checkout
dsh plugin --profile web add ./tomilite-dsh-plugin

Restart the DSH web UI (or dsh CLI) after installing.

Configuration

Defaults work out of the box for the local TomiLite app. Override in your profile's cordis.patch.yml:

- id: tomilite
  name: tomilite-dsh-plugin
  config:
    baseUrl: http://localhost:3192   # default
    apiToken: ''                     # only for remote instances (Settings → API Keys)
    projectId: proj-default          # default single-user project

apiToken can also come from the TOMILITE_API_TOKEN environment variable. For remote instances prefer HTTPS — the token travels in plain HTTP otherwise.

Tools

ToolDescription
tomilite_list_tasksList tasks, optional status filter (todo / in_progress / done). Returns compact rows (description truncated to 300 chars)
tomilite_create_taskCreate a task (title, description, type, priority, story points)
tomilite_update_taskUpdate status / priority / description
tomilite_list_notesList knowledge-base notes, optional category filter. Returns compact rows (content preview truncated to 500 chars)
tomilite_create_noteCreate a Markdown note
tomilite_get_statsBoard statistics — counts per status / priority / type — handy before writing daily reports

If TomiLite is not running, tools fail with an actionable message (the agent will tell you to start TomiLite). Every HTTP call carries a 15-second timeout so a hung TomiLite never stalls an agent turn.

How it works

The plugin is a host-side Cordis plugin that speaks the same tRPC wire format as TomiLite's own web frontend (apps/web/src/lib/api.ts):

  • Reads: GET /api/<router>.<procedure>?input=<urlencoded JSON>
  • Mutations: POST /api/<router>.<procedure> with a JSON body
  • Responses: tRPC envelope { result: { data: ... } }
  • Auth: x-tl-token header, only needed for non-localhost instances

The tools registered by this plugin (ctx.tools.register + defineTool from @deepseek-ai/dsh-tools) become regular model-visible tools — schemas are enforced before execute runs, results are rendered as compact JSON blocks.

Language

Tool descriptions and result messages are in English. DSH's locale service is browser-side only, so host-side tool plugins (including every official DSH tool package) ship static English copy; translations can be added once DSH exposes a host-side locale.

Development

npm install
npm run build                 # tsc → lib/
npm test                      # smoke + real-Cordis load tests (no network)
npm run test:integration      # round-trips against a RUNNING TomiLite on :3192
  • test/smoke.mjs — registration + model-surface checks with a mock context (no network)
  • test/cordis-load.mjs — boots a real @deepseek-ai/cordis context, loads the plugin through ctx.plugin(), verifies inject resolution, tool registration, and Config-schema rejection of invalid config (no network)
  • test/integration.mjs — live round-trips against a running TomiLite; creates and deletes its own rows, no user data touched

lib/ is committed so git installs work without a build step; CI rebuilds it to guarantee freshness (npm run build before committing).

Notes

  • DeepSeek Harness is in developer preview (rc releases) and may break plugin APIs between releases; this plugin is pinned to dsh-tools@0.1.0-rc.7.
  • GitHub topic: dsh-plugin (for plugin ecosystem discovery)

License

MIT © 2026 Tomatovector