Skip to content
dsh.fish
Bundle

dsh-config-watch

Config drift detective for DSH: snapshots profile/plugin state on startup, records diffs, exposes a read-only history tool. Zero runtime deps, no custom events.

Source
Equinox7379
stars
1 stars
License
MIT
Updated
Updated yesterday

Readme

# dsh-config-watch

DeepSeek Harness 插件:记录环境配置变更历史。每次服务启动时对 profile 关键文件与插件清单拍快照,与上次对比,差异写入变更日志。

## 用途

排查「环境何时被改过」类问题时提供时间线。快照仅保存哈希与文件名,不复制文件内容。

## 用法

- 工具:`config_changes`
- 参数:`limit`(默认 20,最多返回 200 条内的最近 N 条)

示例(问「最近环境改了什么」):

```json
{ "entries": [ { "at": "2026-08-14T09:47:00Z",
    "changes": [ { "kind": "plugin-added", "target": "dsh-modsearch", "detail": "2026-08-14T09:40:12Z" } ] } ],
  "total": 37 }
```

## 可靠性

- 数据只写 `~/.dsh/config-watch/`(history.jsonl 轮换上限 200 条 + last-snapshot.json);
- 快照失败仅记录日志,不影响服务启动;
- 零依赖、无自定义会话事件、无 HTTP 路由。

## 安装

```sh
dsh plugin --profile web add link:/path/to/dsh-config-watch
# 重启 dsh web
```

## License

MIT

Install

dsh plugin --profile web add github:Equinox7379/dsh-config-watch#9ebb374308a5073f12db57e36746a0e44a798394

Profile: web

Source