DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Client Ui Elasticsearch — DeepSeek Harness 插件(DSH Plugin)
← Plugins
C

@asuka1121/dsh-client-ui-elasticsearch

Client Ui Elasticsearch

DeepSeek Harness 的 Elasticsearch 连接设置:共享设置部分(URI/用户名/密码)以及 es_query_logs 模型工具

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SaitoAsuka1121/dsh-client-ui-elasticsearch#c6b1668fff471915d2c57791a7cffee2eae28eef
README兼容性版本

兼容性与来源证明

Client Ui Elasticsearch 以 @asuka1121/dsh-client-ui-elasticsearch 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.1stable
2026/8/31
0.2.0stable
2026/8/24

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rIm@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。

README

dsh-client-ui-elasticsearch

English | 中文

A DeepSeek Harness plugin that adds an Elasticsearch section to Settings and a host-side es_query_logs model tool.

  • Settings → Elasticsearch: configure uris (one per line), username, and password. Values are stored in the shared DSH settings document and shared across sessions.
  • es_query_logs tool: search logs by trace_id (exact match) and/or by natural-language search terms via query (matched against message, exception, and other log text fields), with optional fields, index, and size. It reuses the connection configured above.
  • Auto-guidance: a system-prompt section teaches every session to use the tool when a trace_id or a log-content question is asked — no dedicated agent preset required.

Install

dsh plugin --profile web add @asuka1121/dsh-client-ui-elasticsearch@latest

Then restart the deployment. The package declares dsh.bundle.patch, so dsh plugin registers it as a profile bundle automatically.

Requires pnpm on PATH. The plugin resolves its @deepseek-ai/* runtime dependencies as peer dependencies from the DSH installation, so it shares the installation's single Cordis instance.

Tool

es_query_logs parameters:

nametyperequireddefaultnotes
querystringno*—natural-language search terms matched against log text fields (e.g. "connection refused", "NullPointerException")
trace_idstringno*—exact trace id to search across trace fields
fieldsstring[]nocommon log text fieldsexplicit fields the query matches against; wildcards unsupported
indexstringno*index pattern to target
sizeintegerno100max hits, capped at 500

* at least one of query or trace_id is required.

  • trace_id runs exact term queries on trace_id, trace.id, traceId, and traceID.
  • query runs a multi_match (best_fields) over the resolved fields, avoiding wildcard field expansion that fails on wide indices.
  • Both together narrow by trace and content; results are sorted by @timestamp desc, trying each configured URI in order.

License

MIT

Development

The compiled lib/ ships with this repo, so consumers can install from the directory directly. Building from source requires the deepseek-harness monorepo: tsdown.config.ts imports the clientBundle preset from packages/client/tsdown.client.ts. The published npm package (@asuka1121/dsh-client-ui-elasticsearch) is the canonical build artifact.

Future Plans

Vision. The real payoff of a log-search plugin is correlation: not just finding log lines, but tracing each one back to the project code that produced it. The long-term goal is exactly that — log-to-code traceability.

Current boundary. Today the agent correlates logs only against the local workspace. Code-side integration stays on hold until DSH officially exposes a remote/network workspace (e.g. binding 0.0.0.0) — correlating logs against a workspace the agent cannot reach would be meaningless.

Open problem — acquiring the code. The leading idea is to clone the owning project on the server side, on demand, before each query, keyed by the app_name found in the logs, so answers stay self-contained and always based on the latest code. Storing full clones for every app is expensive, so lighter approaches are under evaluation: shallow/partial clones, lazily fetching only the files a trace references, and cache/eviction policies.