dolcejust-spec/dsh-event-watch0

dsh-event-watch

Condition-driven session wake for DeepSeek Harness: durable file and GitHub watches that fire a configured prompt into a target session (cold-wake included), with transition-only dedupe and throttling

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.'