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.

Stock Ticker — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-stock-ticker

Stock Ticker

A fixed bottom market-ticker bar for DeepSeek Harness: real-time 上证指数 / 创业板指 / 科创50 / 恒生科技.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:FeiZhuNiU-INFJA/dsh-stock-ticker#e5c2923d64b672348aba91a6d9d4fd250e9145a3
READMECompatibilityVersions
dsh-stock-ticker 底部行情栏

Compatibility and provenance

Stock Ticker is published as dsh-stock-ticker and currently resolves to version 0.2.0. 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/7/2026

Versions

0.2.0stable
9/7/2026
0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 5
Weekly downloads
0
Last push
9/7/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 ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsBetter Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Whale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editin

README

🧩 dsh-stock-ticker

DeepSeek Harness 的一个底部行情栏插件:在窗口底部显示一条半透明 bar,实时展示 A 股与港股核心指数。

📸 预览

dsh-stock-ticker 底部行情栏

✨ 功能

  • 固定在窗口底部的全宽行情 bar,半透明背景跟随 DeepSeek Harness 主题色(85% 透明度 + 背景模糊)
  • 每 5 秒自动刷新
  • 可收起为右下角小胶囊,点击展开,不遮挡输入区
  • 每个指数只显示两项:当前点位 + 涨跌幅(红涨绿跌、锐利配色)
  • 横向排列,窄屏自动横向滚动

显示的指数:

指数代码
上证指数000001
创业板指399006
科创50000688
恒生科技HSTECH

🚀 安装

作为常驻 bundle 安装,随 DSH 启动自动加载、重启不消失:

dsh plugin --profile web add github:FeiZhuNiU-INFJA/dsh-stock-ticker

装完重启 DSH(或选择「立即重启」),页面底部即出现行情 bar。

结构遵循社区 dsh-plugin 约定:dsh.bundle.patch 指向 cordis.patch.yml,Host 入口 lib/index.js 注册同源路由 /dsh-stock-ticker/quotes(内部用 shell + curl 抓取腾讯行情),Client bundle lib/client.js 渲染底部行情栏并每 5 秒轮询该路由。

🗂️ 代码结构

dsh-stock-ticker/
├── lib/index.js    # Host 包入口:注册 /dsh-stock-ticker/quotes 路由
├── lib/client.js   # Client bundle:底部行情栏 UI + 5s 轮询
├── host.js         # 动态插件形式的 Host 半区(可选)
├── client.js       # 动态插件形式的 Client 半区(可选)
├── package.json    # 包清单(dsh bundle + client 声明)
├── cordis.patch.yml  # bundle patch:插入插件行
├── assets/screenshot.png  # README 预览截图
├── LICENSE
└── README.md

🔌 数据源

  • 接口:https://qt.gtimg.cn/q=sh000001,sz399006,sh000688,hkHSTECH
  • 免费、无需鉴权,返回纯文本的 ~ 分隔行
  • Host 侧通过 shell 服务执行 curl 抓取(DSH 默认部署未注册 web fetch provider,因此不走 web.fetch)

🧪 动态插件(可选,临时体验)

不落盘、临时载入的动态插件方式,适合快速体验:

  1. 让 agent 用动态插件工具 cordis_define 创建插件:

    • code.host 填 host.js 的整段内容
    • code.client 填 client.js 的整段内容
  2. cordis_run 激活;客户端首次运行需要在审批卡片里点「允许」。

  3. 刷新页面后窗口底部即出现行情 bar。

两个文件里的代码就是 cordis_define 的 code.host / code.client 函数体,直接整段复制即可。

📄 License

MIT