Introduction

When developing or running tasks within DeepSeek Harness (DSH), switching back and forth between external market quote pages and your current workspace to check A-shares and Hong Kong core indices can be inconvenient. dsh-stock-ticker is a DSH plugin: it displays a draggable, collapsible, semi-transparent window in the top-right corner of the page to continuously show major indices. The DSH plugin ecosystem emphasizes “everything is a plugin”; the community directory is an independent site with no official affiliation with DeepSeek or Huanfang.

Below, we introduce its features, installation methods, temporary trial methods, and usage precautions.

What is it

dsh-stock-ticker is maintained by FeiZhuNiU-INFJA and is licensed under MIT.

The problem it solves is specific: it keeps a lightweight quote window permanently on the DSH page, displaying the current price and percentage change of the SSE Composite Index (000001), ChiNext Index (399006), STAR 50 (000688), and Hang Seng Technology Index (HSTECH).

Core Features

  • Floating window, draggable and collapsible.
  • Background follows DeepSeek Harness theme color, 80% opacity, red for rise, green for fall.
  • Auto-refreshes every 5 seconds.
  • Only displays the current price and percentage change for each index.
  • Displays the following indices:
    • SSE Composite Index: 000001
    • ChiNext Index: 399006
    • STAR 50: 000688
    • Hang Seng Technology Index: HSTECH

Installation and Activation

Once installed as a persistent bundle, the plugin loads automatically when DSH starts and remains active after restart.

Execute the installation command:

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

After installation, restart DSH (or select “Restart Now”), and the floating quote window will appear in the top-right corner of the page.

Temporary Experience with Dynamic Plugin

If you only want to try it out temporarily without using a persistent installation, you can use the dynamic plugin method. This method does not write to disk, loads temporarily, and is suitable for quick verification.

First create the plugin, then activate and refresh the page:

  1. Use cordis_define to create the plugin.
  2. Fill code.host with the content of host.js.
  3. Fill code.client with the content of client.js.
  4. Execute cordis_run to activate; the first client run requires clicking “Allow” in the approval card.
  5. After refreshing the page, the floating quote window appears.

Data and Runtime Environment

The plugin’s data source is free and does not require authentication, returning plain text lines separated by ~.

On the host side, curl is executed via the shell service; since the default DSH deployment does not register a web fetch provider, web.fetch is not used.

Dependencies and runtime environment requirements are as follows:

peerDependencies:
@deepseek-ai/cordis ^4.0.1
@deepseek-ai/dsh-shell ^0.1.0-rc.7
@deepseek-ai/dsh-client-ui-slots ^0.1.0-rc.7

engines:
node ^22.19.0 || >=24.0.0

Use Cases and Precautions

Suitable for developers who wish to continuously view A-shares and Hong Kong core indices within the DSH page.

Since the plugin runs with the permissions of the current DSH process, you should review the source code and license before installation. This plugin is licensed under MIT, allowing you to review the repository content as needed.

GitHub Repository:

https://github.com/FeiZhuNiU-INFJA/dsh-stock-ticker

Directory Page Link:

https://www.skillhub.cn/plugins/FeiZhuNiU-INFJA/dsh-stock-ticker

If you need to use this in a production environment, it is recommended to first confirm that your current DSH environment meets the dependencies and Node version listed above, and then proceed with the persistent installation.