Preface

When building DSH agents, a common problem arises: while agents can search for information, they often lack continuous awareness of global hot events—knowing what happened when and what it means for the industry and market often requires building a complete pipeline for data collection, classification, and push notifications from scratch. Eyes encapsulates this pipeline into a plugin: monitoring, event classification, impact analysis, and scheduled push notifications are all ready; just install and use. Below is an introduction to its features, installation methods, and typical usage.

What is it

Eyes (kobenfang/eyes) is a global hot event monitoring and impact analysis tool maintained by kobenfang. It covers global situations, geopolitical conflicts, major policies, innovative technologies, and other events that may affect the economy and market, automatically analyzing transmission impacts based on industries, exchange rates, and commodity chains. The license is MIT.

The corresponding DSH plugin package name is @kobenfang/dsh-eyes, current version 1.0.0.

Core Features

Global Hot Events Real-time Monitoring

Covers fields such as politics, economy, technology, and military. Events are categorized into three levels:

  • P0: Global Major
  • P1: Major Policy
  • P2: Routine Events

The plugin automatically determines the impact chain of events on A-shares, exchange rates, and commodities.

Three Scheduled Pushes

  1. Morning Overview: Pushes global major events from the past 12 hours at 08:00, plus A-share opening outlook;
  2. Hourly Scans: Detects new events every hour from 09:00 to 19:00 and pushes them if found;
  3. Evening Review: Pushes a full-day hot events review at 20:00, plus sectors to watch tomorrow.

Industry Impact Analysis

Automatically analyzes based on user-preferred industries (semiconductors, AI, optical modules, new energy, etc.). The chain is “Hot Event → Industry Bullish/Bearish → Impact on Related Stocks”. The transmission chains for exchange rates and commodities are presented visually.

Smart Push

P0 events are pushed immediately; P1 events are pushed within a time-limited window; if there are no major events, they are automatically skipped to avoid interruption.

Installation and Enablement

The installation command provided in the README is as follows:

clawhub install eyes

This command uses the ClawHub channel. The documentation does not provide a dedicated installation command for the DSH environment; please refer to the repository instructions for actual use.

Judging from package.json, this is a standard DSH plugin package: package name @kobenfang/dsh-eyes, version 1.0.0, contains dsh.bundle.patch configuration pointing to ./cordis.patch.yml.

Regarding dependencies, the plugin uses OpenClaw scheduled tasks for 24/7 automatic monitoring, Brave/MiniMax Search for global news search, and the event collection and impact analysis engine is implemented via Python scripts.

Typical Usage

After installation, simply trigger the keywords:

今日热点      → 查看当天全球大事
大眼看世界    → 最新热点事件汇总
国际市场      → 全球市场动态
今晚热点      → 晚间热门事件回顾

In the morning, if you want to know what happened overnight or what to watch for during the opening, send “Today’s Hot Topics”; in the evening, when reviewing the day’s hot topics, use “Tonight’s Hot Topics”.

Applicable Scenarios and Notes

Suited for two types of people:

  • Users who need to track the impact of global events on A-shares, exchange rates, and commodities every day;
  • DSH plugin developers who want to reference the approach of “event classification + scheduled tasks + search engines”.

Pay attention to three points before use:

  1. The plugin runs with the permissions of the current dsh process; please check the source code and license before installing. Eyes uses the MIT license and the source code is available on GitHub.
  2. Scheduled pushes rely on OpenClaw scheduled tasks, and news search relies on Brave/MiniMax Search; the deployment environment must meet corresponding conditions.
  3. The time window for hourly scans is 09:00-19:00; new events outside this period will have to wait for the next push node.

Conclusion

The value of Eyes lies in packaging the entire chain of “monitoring → classification → impact analysis → scheduled push” into a single plugin, saving the cost of building it yourself. Plugin directory page: https://www.skillhub.cn/plugins/kobenfang/Eyes , source code: https://github.com/kobenfang/Eyes . The directory is a community-maintained site and has no official affiliation with DeepSeek or Hanhua (Quant). Please refer to the repository source code for installation and usage.