Skip to content
Zero Click Daily
Go back

🐝 Hermes 日报 — 2026-05-29

🐝 Hermes 日报 — 2026-05-29

📦 版本状态

最近 24h 重要提交(按时间倒序)

作者提交说明
teckniumKanban 图片识别feat(kanban): 从任务 body 中提取本地/远程图片,worker 首次对话即可看到图片
benDashboard 安全修复docker: --insecure 改为显式 opt-in env var,不再从 bind host 自动推断
benDocker 测试修复修复因 insecure opt-in 变更新增的 Dashboard OAuth gate 测试
austinDashboard 401 循环修复 /api/auth/me 401 导致的无限 reload loop(loopback 模式)
benMCP npx 修复修复 Docker 镜像中 stdio MCP server 找不到 /usr/local/bin/npx/node 的问题
r266-tech文档更新添加 --no-supervise / HERMES_GATEWAY_NO_SUPERVISE 文档(中英文)
kshitij内存上下文向 memory provider 暴露 completed-turn 消息上下文
BROCCOLO1DCI 优化arm64 PR 构建避免 GHA cache

🔥 热门 Issues

P0/P1: Dashboard 安全漏洞已修复

#34206 [Bug]: Infinite reload loop / React state loop on Sessions tab ⭐+2 comments

#34202 Dashboard infinite reload loop in loopback mode 🔄

影响面较大的 Bug

#33334 [Bug]: Database corruption problem with Kanban causing system crash 💬13 comments P3

#34205 [Bug]: Provider/LLM switch leaves stale encrypted_content causing 400 errors on Telegram sessions

功能诉求

#34213 Feature Request: Strip reasoning/<think> blocks from TTS preprocessing

#34209 show_reasoning should work independently of streaming in CLI mode

#34202 Dashboard infinite reload loop in loopback mode

其他值得关注的 Issue

#34070 Honcho memory prefetch hang on fresh CLI subprocess in v0.15.0

#18080 [Feature]: Improved Themes for Dashboard 💬20 comments

#514 Feature: A2A (Agent-to-Agent) Protocol Support 💬19 comments

🆕 生态新增

本周 awesome-hermes-agent 没有新增更新(上次更新 5月16日,6 个资源被收录)。近期值得关注的生态项目:

Agentskills.io 生态

项目说明成熟度
open-design开源 Claude Design 替代方案,含 31 个可组合技能、129 套设计系统🟢 production (28k⭐)
drawio-skill从自然语言生成 draw.io 图表,导出 PNG/SVG/PDF🟢 production (1.1k⭐)
youtube-skillsYouTube 搜索/频道/播放列表/字幕,VPS 友好(不依赖 IP)🟢 production
x-twitter-scraperX(Twitter) 完整读写覆盖(搜索/时间线/DM/推文发布),43 个窄域技能🟡 beta
wondelai/skills跨平台技能库,兼容 Hermes、Claude Code、Cursor 等🟢 production
MeiGen-AI-Design-MCP图片+视频生成(GPT Image 2, Midjourney V8.1, Flux, Veo 3.1 等 9 个模型)+ 本地 ComfyUI🟢 production (1k⭐)

工具与部署

项目说明成熟度
hermes-workspace原生 Web 工作台(聊天/终端/内存/技能/检查器)🟢 production (500+⭐)
hermes-desktopmacOS 原生桌面客户端,SSH 直连模式,内置终端🟡 beta
hermes-web-uiVue3 Dashboard,多后端支持(local/Docker/SSH),30天趋势分析🟢 production (3.6k⭐)
mission-control多 Agent 舰队管理/任务分发/成本追踪🟢 production (3.7k⭐)
cc-switch一站式桌面助手,统一 Claude Code, Codex, Hermes, Gemini CLI 等🟢 beta

内存增强

项目说明成熟度
Mnemosyne本地优先的亚毫秒级内存系统,SQLite + sqlite-vec 混合检索,时间感知知识图谱🟡 beta
hindsight长期记忆层,支持 retain/recall/reflect 工作流🟢 production
rtk-hermes终端输出压缩 60-90%,零配置,auto-load on gateway boot🟡 beta

💬 Reddit 热议

Reddit 本次采集失败(API 返回 403),跳过此渠道。

🔧 玩机技巧:Gateway --no-supervise 模式

从 v0.15.0 开始,Gateway 支持 --no-supervise / HERMES_GATEWAY_NO_SUPERVISE 模式(来自 PR #33583)。

解决的场景

默认的 Gateway supervisor 负责监控子进程、自动重启、管理进程树。但在某些场景下它反而碍事:

使用方式

# CLI 模式
hermes gateway start --no-supervise

# 环境变量
HERMES_GATEWAY_NO_SUPERVISE=1 hermes gateway start

Docker 中使用

# docker-compose.yml
services:
  hermes:
    image: nousresearch/hermes-agent:latest
    environment:
      - HERMES_GATEWAY_NO_SUPERVISE=1
      - HERMES_TELEGRAM_BOT_TOKEN=xxx

关闭 supervisor 后,Gateway 进程变成简单的前台进程,Docker 健康检查或 systemd 可以精确判断进程状态。

注意事项


Share this post on:

Previous Post
🐝 Hermes 日报 — 2026-05-30
Next Post
🐝 Hermes 日报 — 2026-05-27