@zhoucyclaude code cli 增加任务完成提醒 中发帖

目前Claude Code cli 是没有任务完成提醒的。 
针对这个问题我的解决方案是hook+http+wpf项目触发系统弹窗,目前已经稳定使用。 
wpf项目后边会发出来。 
hook配置如下: 
"hooks": {
    "Stop": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "curl -s -X POST http://localhost:9527/ -H \"Content-Type: application/json\" -d @- > /dev/null 2>&1"
          }
        ]
      }
    ],
    "StopFailure":...
 
 
Back to Top