dolcejust-spec/dsh-event-watch0

dsh-event-watch

DSH 事件监听插件:支持持久化的本地文件和 GitHub 监听,满足条件时自动唤醒目标会话并发送配置的提示词。

AI 分析

核心用途是实现基于外部事件触发的自动化 AI 任务。适合需要根据代码库变更、文档更新或 GitHub 动态自动触发 AI 总结或分析的用户。

包名
dsh-event-watch
版本
0.1.0
许可证
MIT
最近更新
2026年8月19日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:dolcejust-spec/dsh-event-watch

Configuration (cordis.yml)

- id: event-watch
  name: dsh-event-watch
  config:
    pollIntervalMs: 30000        # minimum 5000
    maxWakePerWatchPerHour: 3
    trial: true                  # surfaced by /event-watch status
    targetSession:   # default target; per-watch overrides, then creating session
    watchers:                    # optional watches created at load
      - id: docs
        type: file
        spec:
          roots: ['D:\docs']
          globs: ['**/*.md']
          trigger: changed
        prompt: 'The docs changed; summarize what moved.'