Hermes Agent 的 /background 任务如果会启动长进程,网关默认可能把运行输出也不断推回聊天里。官方文档给了专门的控制项:display.background_process_notifications,可选 all、result、error、off。
推荐怎么选
- all:适合你真想实时盯着 long-running build 或 server 启动过程。
- result:只看最终结果,最适合大多数日常场景。
- error:只在失败时提醒,适合稳定定时任务。
- off:彻底关闭过程通知,只保留最终业务结果。
如果你不想改 config,还可以直接用环境变量 HERMES_BACKGROUND_NOTIFICATIONS=result 这种方式快速压噪音。
一句话:后台任务通知太吵,不是不用 /background,而是把 background_process_notifications 调对。
官方开源地址:https://github.com/NousResearch/hermes-agent;官方文档入口:https://hermes-agent.nousresearch.com/。