🐝 Hermes 日报 — 2026-05-25
📦 版本状态
- 当前版本: Hermes Agent v0.14.0 (2026.5.16) — 落后主线 346 commits
- 核心仓库最近 5 条 commit:
| Commit | 消息 |
|---|---|
782681f | fix(google_chat): 加固 OAuth 凭据持久化,原子写入确保文件安全性 (#24788) |
dcc163e | fix(security): 在会话捕获持久化边界双层脱敏凭据(PAT/API key),补了 #24758 和 #19855 两份 PR |
5598781 | chore(release): map kronexoi for PR #30553 salvage |
243ebc7 | fix(dashboard): 保护 Web Dashboard OAuth 凭据写入,对齐其他认证路径的文件安全保证 |
e2fd462 | ci(tests): 添加 pytest-timeout 60s 硬上限,防止套件拆卸死锁 (#28861) |
🔥 今天核心仓库有密集的 安全加固提交:OAuth 凭据持久化原子写入、会话捕获的凭据双层脱敏(两篇 PR 被合并为一次 salvage)。Garry Tan 的
gbrain项目也在持续更新。
🔥 热门 Issues
1. #29125 — Hermes does not work through Claude CLI ❌ 已关闭
- 标签:
question,provider/anthropic,P3| 💬24 - 解读: 一段时间里用户无法通过 Claude CLI 使用 Hermes。该 issue 有 24 条讨论,是本期热度最高的。虽已关闭(可能通过配置调整解决),配合 Claude Code 使用时仍需注意 provider 路由设置。
- 👉 https://github.com/NousResearch/hermes-agent/issues/29125
2. #31736 — Gateway Kanban 调度器每 tick 都开 SQLite WAL 连接,引发 FD 压力 🔴 开放
- 标签:
type/perf,comp/gateway,P3| 💬2 - 解读: Kanban gateway 调度器存在性能隐患 — 每次 tick 都新建 SQLite WAL 连接,文件描述符和 WAL 锁在长时间运行下可能膨胀。如果你跑 Kanban + gateway,建议关注此 issue 的后续修复。
- 👉 https://github.com/NousResearch/hermes-agent/issues/31736
3. #31702 — Copilot gpt-5.5 xhigh reasoning 被错误限制为 high ✅ 已修复
- 标签:
type/bug,provider/copilot,P2| 💬2 - 解读: Copilot gpt-5.5 在实际 catalog 中支持 xhigh reasoning,但 Hermes 强制被限制为 high。这是一个 provider 适配层面 bug,影响大模型推理质量。已关闭,猜测已通过动态 catalog 查询方式修复。
- 👉 https://github.com/NousResearch/hermes-agent/issues/31702
4. #17923 — 建议给 /models 添加 free-tier 过滤器 🔴 开放
- 标签:
type/feature,comp/cli,provider/openrouter,P3| 💬2 - 解读: 持续的 OpenRouter 免费模型改进需求。希望
/models列表能过滤只看免费模型。对于追求零成本的用户这是个不错的 feature,但 P3 优先级意味着短期内可能不会实现。 - 👉 https://github.com/NousResearch/hermes-agent/issues/17923
5. #31738 — Windows 上 Memory tool 报 “Resource deadlock avoided” 🐛 开放
- 标签:
type/bug,tool/memory,P2| 💬0 - 解读: Windows 用户 Memory 工具触发
Errno 36死锁错误。这看起来是 Windows 文件锁机制下的兼容性问题。虽然回帖不多,但 P2 优先级说明这是短期要修的。 - 👉 https://github.com/NousResearch/hermes-agent/issues/31738
6. #31733 — cache/images 下的生成图片在 Telegram 上可能无法通过 MEDIA 正常发送 🔴 开放
- 标签:
type/bug,comp/gateway,tool/vision,platform/telegram,P2 - 解读: 图片生成后被缓存到磁盘,图片实际存在但通过 Telegram MEDIA 发送时可能不显示(而 image_cache 模式工作正常)。如果你的 Telegram 机器人依赖图片生成,请注意这个差异。
- 👉 https://github.com/NousResearch/hermes-agent/issues/31733
🔧 玩机技巧
Cron 高级用法 — 自定义定时任务
Hermes 的 Cron 系统不只是跑日报扫描。你可以在 ~/.hermes/config.yaml 配置自己的 cron job:
cron:
enabled: true
jobs:
# 每天 8:00 自动检查更新
- name: hermes-update
schedule: "0 8 * * *"
prompt: "检查 Hermes Agent 更新并执行 hermes update"
# 每 3 小时备份 session DB
- name: session-backup
schedule: "0 */3 * * *"
prompt: "备份 ~/.hermes/state.db 到 ~/backups/state-$(date +%Y%m%d-%H%M).db"
💡 Cron prompt 保持极简 — 引用一个 skill 即可,skill 本身携带 pipeline 细节。 不要让 prompt 里重复 skill content 里的步骤,防止 drift。
🆕 新 Skills / 生态新增
核心仓库新增 skill
baoyu-article-illustrator— 文章配图 skill,支持 type × style × palette 一致性控制 (4 commits, built-in)kanban-codex-lane— Kanban worker 用 Codex CLI 作为隔离实现 lane,Hermes 保留任务生命周期、检验、合并的 ownership (built-in)
生态项目动态
| 项目 | ⭐ Stars | 说明 |
|---|---|---|
| NousResearch/hermes-agent | 核心 | 主仓库今天有密集的 5 条安全 commit |
| garrytan/gbrain | 🌟 热门 | Garry Tan 的 Hermes Agent 配置大脑,持续更新中 |
| fathah/hermes-desktop | 新锐 | Hermes Agent 桌面伴侣应用 |
| nesquena/hermes-webui | 🌟 热门 | WebUI — 从手机浏览器使用 Hermes |
| outsourc-e/hermes-workspace | 新锐 | 原生 Web 工作区:聊天 + 终端 + 内存 + Skills + Inspector |
| farion1231/cc-switch | 🌟 热门 | 跨平台桌面 All-in-One 助手,支持 Claude Code / Codex / OpenCode / Hermes |
| alchaincyf/hermes-agent-orange-book | 📘 | Hermes Agent 从入门到精通 (橙皮书,中文) |
| NousResearch/hermes-agent-self-evolution | ⚒️ | 自我进化 — DSPy + GEPA 自动优化 Skills/Prompts/Code |
| NousResearch/hermes-paperclip-adapter | 🖇️ | Paperclip 适配器,Hermes 作为托管员工在 Paperclip 公司运行 |
Reddit r/hermesagent 本次采集超时(cURL exit code 28 — connection timeout)。
跳过此渠道,不影响日报。如果你正在关注 Reddit 上的讨论,建议直接访问 https://reddit.com/r/hermesagent/new
🧠 本期值得关注的技术要点
- 安全加固密集期 — OAuth 凭据原子写入(dashboard + google_chat)、会话捕获凭据脱敏(双层 redaction),两条安全修复同一天合并。如果你在跑 gateway 或 dashboard,建议尽快更新。
- Kanban 问题开始集中暴露 — Gateway Kanban 的 WAL 连接泄漏 (#31736) + Worker activity 不更新心跳导致 stale reclaim (#31752)。Kanban 系统正在快速迭代中。
- Copilot gpt-5.5 reasoning clamp 的修复 — 从硬编码改为动态 catalog 查询,给其他 provider 适配提供了参考模式。
- 346 commits behind — 该更新了! 你的本地版本落后主线较多,考虑
hermes update获取所有安全修复。