Hermes Agent 生态日报 — 2026-05-22
🏷 版本状态
| 项目 | 状态 |
|---|---|
| 当前版本 | v0.14.0 (2026.5.16) — Foundation Release |
| Stars | 161K+ |
| 本地版本 | v0.14.0 |
| 落后上游 | 98 commits |
| 自 v0.13.0 以来 | 808 commits · 633 merged PRs · 545 issues closed (12 P0, 50 P1) |
📦 更新摘要
v0.14.0 Foundation Release — 核心亮点
| 分类 | 内容 |
|---|---|
| ✨ 新功能 | xAI Grok SuperGrok OAuth 集成(grok-4.3 × 1M 上下文);OpenAI 兼容本地代理(将 Claude Pro/ChatGPT Pro/SuperGrok 转化为 Codex/Aider/Cline/Continue 可用的端点);x_search 第一方 X/Twitter 搜索工具;Microsoft Teams 全链路支持(Graph 认证 + webhook + pipeline + 投递);LINE + SimpleX Chat 新平台(总计 22 个) |
| 🔧 改进优化 | 大幅精简安装包(lazy-install 重型后端,pip install hermes-agent 正式可用于 PyPI);冷启动提速 ~19 秒;Browser CDP 调用加速 180x;跨会话 1h Claude 提示缓存;/handoff 实时会话转移;Telegram/Discord 原生按钮 UI 用于 clarify;Discord 频道历史回填;LSP 语义诊断;Zed ACP Registry 集成 via uvx;OpenRouter Pareto Code 路由器 |
| 🐛 Bug 修复 | computer_use cua-driver 后端终于支持非 Anthropic 供应商;原生 Windows beta;9 个新的 optional skills;huggingface/skills 作为可信默认 tap |
| 🏗 架构变化 | Debloating 浪潮:[all] extras 移除被 lazy-deps 覆盖的依赖,tiered install 在 wheel 拒绝时自动降级;统一可插拔 video_generate |
最近未发布的 commits(仅 6 天 Post-v0.14.0 积累 98 commits)
主要方向:
- Computer Use 修复:SOM/vision capture 路由修复、app 过滤器 no-match 处理、drag action 实现
- Bitwarden Secrets Manager 集成(PR #30035)— 新的
feat(secrets)模块 - Termux 优化:packed-refs/worktree refs 修复、非 TUI CLI 启动加速
- Gateway 安全增强:location/media handler 的 observe+attribution 机制
- 文件安全加固:profile 模式下也阻止写入
<root>/.env - Voice 修复:超长 CLI 录音分片
- Skills 扫描修复:从所有 skill scanner 中修剪 dependency/venv 目录
- xAI 修复:加密推理跨 turn 回放恢复
- Provider 增强:custom provider 支持
supports_vision声明;Discord 429 优雅处理
🌐 社区动态
🔥 GitHub Issues 热点
1. Kanban clean-exit protocol violation 阻止下游任务(#27924)
标签:
type/bugcomp/pluginsP3| 状态: Open | 更新: 2026-05-18
当 Kanban worker 以 rc=0 退出但未调用 kanban_complete() 时,调度器将其判定为”clean-exit protocol violation”并永久阻塞该任务(failure_limit=1),导致依赖该任务的下游管道任务永不执行。迭代预算耗尽的情况已在 commit 2b3bf17df 修复,但通用 clean-exit 场景尚未覆盖。
- 影响: 使用 Kanban pipeline 的用户可能遇到任务链中断
- 建议: 升级到包含
2b3bf17df的版本;检查 worker 代码确保异常路径也调用kanban_complete() - https://github.com/NousResearch/hermes-agent/issues/27924
2. Telegram DM Topic 会话分裂后回复路由错误(#27166)
标签:
type/bugcomp/gatewayplatform/telegramP1| 状态: Open | 更新: 2026-05-17
上下文压缩触发 session split 后,agent 的最终回复被发送到 Telegram DM Topic 的”All Messages”根线程而非活跃的 DM Topic。已有 PR #27239 和 #27937 在修复此问题。
- 影响: Telegram DM Topic 用户偶发消息错位
- 建议: 关注 PR #27937 的合入状态
- https://github.com/NousResearch/hermes-agent/issues/27166
3. OAuth 提供者回退到 API Key 导致 credential pool 不同步(#25727)
标签:
type/bugcomp/agentP1| 状态: Open | 更新: 2026-05-14 | 贡献者: @loicnico96
当 OAuth 提供者失效后回退到 API key 时,_primary_runtime 快照与 _credential_pool 之间可能不同步,导致后续 3 次无效调用(404)后才真正降级。PR #25733 已提交修复。
- 影响: 使用 OAuth 提供者的用户可能在故障切换时经历延迟
- https://github.com/NousResearch/hermes-agent/issues/25727
4. Per-model 覆盖 context_length 和 provider_routing(#24493 Feature)
标签:
type/featureP2| 状态: Open | 更新: 2026-05-12 | 贡献者: @samplesabotage
新增配置层允许按模型 ID 单独设置 context_length 和 provider_routing,解决同一 provider 下不同模型需要不同上下文长度/路由策略的问题。PR #24495 已提交实现。
- 建议: 如果你是 OpenRouter 用户且多模型配置复杂,这将是重大改进
- https://github.com/NousResearch/hermes-agent/issues/24493
5. openai-codex/gpt-5.5 静默挂起 5 分钟后才降级(#21444)
标签:
type/bugP2| 状态: Open | 更新: 2026-05-07 | 贡献者: @voteblake
ChatGPT Codex 后端对某些 payload 字段静默丢弃请求而非返回错误,导致 Hermes 每次调用挂起约 300 秒直到 stale-call 检测器介入。已有部分修复(commit 3924cb408、5533ad764)。
- 影响: 使用 openai-codex/gpt-5.5 为主模型的用户
- https://github.com/NousResearch/hermes-agent/issues/21444
🚀 已合入 PR
Bitwarden Secrets Manager 集成(#30035)
- 作者: contributor | 合入: 2026-05-21
- 新增
feat(secrets)模块,支持 Bitwarden Secrets Manager 自动安装(lazybwsinstall)和 API token 管理 - https://github.com/NousResearch/hermes-agent/pull/30035
xAI Grok SuperGrok OAuth 提供者(#26534)
- 作者: @teknium1 | 合入: 2026-05-15
- 8 commits · 4009 additions · 32 files changed
- SuperGrok 订阅用户可通过浏览器 OAuth 登录,无需手动配置
XAI_API_KEY;统一凭证解析器覆盖所有 xAI 表面(chat/TTS/image/video/transcription) - https://github.com/NousResearch/hermes-agent/pull/26534
NVIDIA NIM Billing Origin Header(#26585)
- 作者: @nv-kasikritc (salvaged by @teknium1) | 合入: 2026-05-15
- 向 NVIDIA NIM 端点发送
X-BILLING-INVOKE-ORIGIN: HermesAgent,让 NVIDIA 可以归属使用量 - 附带修复:routed-client header 在重建时未被正确保留的问题
- https://github.com/NousResearch/hermes-agent/pull/26585
📝 社区教程与博客
-
How to Run Hermes Agent with DigitalOcean — DigitalOcean 官方社区教程(2026-05-12)
- 详细教程:在 DO Droplet 上部署 Hermes、连接 Telegram、编写自定义 skill
- 完整 grocery tracking agent 实战案例
- https://www.digitalocean.com/community/tutorials/how-to-run-hermes-agent
-
Hermes Agent Setup Guide (2026) — Hermes Agent 官方站点(2026-05-17)
- 全平台安装指南覆盖
- 重点推荐:先装本地跑通核心循环,再扩展 Docker/VPS/Telegram
- https://hermes-agent.ai/blog/hermes-agent-setup-guide
-
Ten Reddit Posts That Split the AI-Agent Conversation — DEV Community(2026-05-07)
- 深度分析了 10 个 Reddit 帖子和 4 大 AI Agent 辩论议题
- 关键发现:Hermes 社区的主要讨论围绕”每周实际使用报告”而非 benchmarks
- https://dev.to/juju_a78c07945a89ecf251a5/ten-reddit-posts-that-split-the-ai-agent-conversation-into-four-live-debates-49ag
-
Awesome Hermes 新增 6 个社区资源(2026-05-16)
hermes-nextcloud— NextCloud 集成 skilloh-my-hermes— 社区配置管理工具master-skill— agentskills.io 生态的 master skillagenttrace— 追踪/调试工具mistral-mcp— Mistral AI MCP bridgeMeiGen-AI-Design-MCP— 设计工具 MCP 集成
-
OpenClaw vs Hermes 2026 分析 — Kilo.ai(更新至 2026-05-08)
- 分析了 25 个线程和 1300+ 条评论
- 社区分布:~30% 已切换到 Hermes,~35% 仍用 OpenClaw,~20% 两者并用,~15% 因 astroturfing 疑虑拒绝使用
- 共识:Hermes 设置更简单、记忆系统更好;OpenClaw 集成更广、skill 生态更大
- https://kilo.ai/openclaw/vs-hermes
-
r/hermesagent 社区活跃(2026-05)
- “Weekly use report” 模式持续驱动社区讨论
- 实际用例包括:归档 agent、APK 逆向工程、家庭网络管理、日报生成、电子表格处理、K8s 部署
- Masterthread 模式反馈持续更新各模型在 Hermes 中的表现
- https://reddit.com/r/hermesagent
🎯 玩机技巧
Session Search(FTS5)深度使用
Hermes 的 session_search 工具使用 SQLite FTS5 全文检索引擎,有三种调用模式:
- Discovery 模式 —
session_search(query="关键词", limit=3):FTS5 搜索并返回匹配的会话,附带书签信息(开头+结尾+命中窗口) - Scroll 模式 —
session_search(session_id="...", around_message_id=123, window=10):以某条消息为中心滚动查看上下文 - Browse 模式 —
session_search():无参数查看最近会话列表
高级技巧:
- 使用布尔运算符:
alpha OR beta扩展召回,python NOT java排除无关内容 - 前缀通配符:
deploy*匹配 deploy/deployment/deployed - 精确短语:
"docker networking"精确匹配 sort='oldest'用于回溯”这事怎么开始的”role_filter='tool'只在工具输出中搜索(调试时特别有用)
📊 生态数据速览
| 指标 | 数据 |
|---|---|
| GitHub Stars | 161K+ |
| 支持平台数 | 22 |
| 支持 Provider 数 | 20+ |
| 贡献者 | 380+ |
| 测试用例 | ~17K |
| 发布版本 | 10+ |
| GitHub Issues (Open) | ~6900+ |
| 社区 Contributors (v0.14) | 215 |