DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Lgtm Dsh — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
L

lgtm-dsh

Lgtm Dsh

DeepSeek Harness plugin that wraps @stardeckai/lgtm — a Jev-powered linter for tests that pass but prove nothing. Ships the CLI as a dependency, reuses the TypeSafe credential stored in DSH, and exposes lgtm_audit / lgtm_status to the agent.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:dymzz/lgtm-dsh#5e2cd780e329ce918fa2c10256f22aaefb2f3775
READMECompatibilityVersions

Compatibility and provenance

Lgtm Dsh is published as lgtm-dsh and currently resolves to version 0.2.7. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/22/2026

Versions

0.2.7stable
9/22/2026
0.2.0stable
9/21/2026

Related plugins

Loading related plugins…

Latest
0.2.7
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/23/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

MarketdshmarketVisual plugin market inside DeepSeek Harness — browse, search, and one-click install community plugins. · DSH 可视化插件市场:逛一逛,点一下,装好。Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundleSsh@linxin666/dsh-sshRemote SSH operations for the dsh web GUI: host config store (~/.dsh/dsh-ssh.json, import from ~/.ssh/config), a persistent ssh2 connection pool with jump-host support, exec / PTY web terminal / SFTP transfer / local port-forward tunnels / cluster executiDoctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery console

README

lgtm-dsh

lgtm-dsh 是个 DSH 插件,负责自动装好 lgtm、复用 DSH 里已配好的 Jev,并让 agent 在测试阶段自动调用。 当前只支持web方式

安装

# 直接安装
dsh plugin --profile web add lgtm-dsh

# 从本仓库装:clone 或解压后,在仓库根目录执行
dsh plugin --profile web add .

# 或者打成 tarball 再装
npm pack
dsh plugin --profile web add ./lgtm-dsh-*.tgz

装完重启 web 服务生效。还没发布到 npm,所以 dsh plugin add lgtm-dsh 暂时用不了。

设置

  1. 设置 → 模型 → 添加自定义提供方,key 存进 TYPESAFE_API_KEY(目前只支持 typesafe)。
  2. 设置 → 插件 → 插件配置 → lgtm-dsh,选「模型路由」——决定用哪把 key,默认选中靠前的一条可用路由。

设置页里的 lgtm-dsh 卡片

skill 触发时机

skill什么时候触发
lgtm你问「这些测试有没有用」「哪些测试该删、该加强」的时候
actually-test你说「给刚写/刚改的东西补测试」的时候;它指导写测试,并在过程中反复用 lgtm_audit 迭代

插件权限:它只做四件事——把 @stardeckai/lgtm 装进当前 profile 的 node_modules、往工具列表注册 lgtm_status 和 lgtm_audit、把两份 skill 挂进 skill 目录、读 llm-pi-ai 里那条路由的 apiKeyEnv 并从凭据服务解析出 key。那个 key 不落盘、不进日志、不进工具结果,只出现在它启动的那一个子进程的环境变量里。子进程用调用方会话自己的沙箱策略运行,插件不会给自己提权(往工作区外写会被沙箱拒掉)。它不装全局、不动 PATH、不改 profile 配置、不改 lockfile;联网和写 node_modules/.cache/lgtm 缓存都是 lgtm 自己的行为,不由插件代理。

MIT