常见问题
关于 Hermes Agent 的常见问题,全部来自官方 README、发布说明和文档。
Hermes Agent 在 README 里的自我介绍是「Nous Research 打造的自进化 AI 智能体」——内置一套学习闭环,能从实际使用中沉淀出 skill,使用过程中再继续打磨,会检索自己过去的对话,还会跨会话逐步建立对你的用户画像。项目采用 MIT 协议,代码公开在 github.com/NousResearch/hermes-agent。
Hermes Agent 由 Nous Research 开发。NousResearch/hermes-agent 仓库列出 300+ 贡献者,但绝大多数 commit 来自 Nous Research 的核心维护者——光是头号贡献者就有 2,500+ commit。项目以 MIT 协议开源。
官方推荐的安装方式是 README 里那条 curl 命令:`curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash`。脚本会自动装好 uv、Python 3.11、Node.js、ripgrep 和 ffmpeg。完整文档见 hermes-agent.nousresearch.com/docs/getting-started/installation。
不行,官方不支持原生 Windows。README 明确列出的支持平台是 Linux、macOS、WSL2,以及通过 Termux 的 Android。Windows 用户请走 WSL2——在 WSL2 发行版里跑同一条 curl 命令即可。
Python 3.11,README 和仓库的 pyproject.toml 都是这么写的。安装脚本会通过 uv 自动把 Python 3.11 装好,你不需要自己配环境——git 是唯一的先决条件。
README 里列的内置 provider 包括 Nous Portal、OpenRouter(200+ 模型)、z.ai/GLM、Kimi/Moonshot、MiniMax、OpenAI 以及自定义 endpoint。v0.8.0 新增了原生 Google AI Studio 支持,Anthropic 和 Mistral 也作为依赖一起打包进来。装完后跑 `hermes model` 就能挑一个用。
README 内置支持的部署目标包括 Telegram、Discord、Slack、WhatsApp、Signal、Email 和 CLI。v0.6.0 又新增了飞书/Lark 和企业微信。所有平台都通过同一个 `hermes setup` 向导来配置。
Hermes Agent 本体完全免费,采用 MIT 协议。你要付的是模型 provider 那边的钱(Nous Portal、OpenRouter、OpenAI 等)。按 v0.8.0 的发布说明,Nous Portal 提供免费的 MiMo v2 Pro 额度,你也可以让 Hermes 指向本地的模型 endpoint。
安装脚本默认把仓库克隆到 `~/.hermes/hermes-agent/`,并在 `~/.local/bin/hermes` 建立 `hermes` 二进制的软链接。想换位置的话,运行脚本前设置 `HERMES_INSTALL_DIR` 即可。
直接跑 `hermes update`——CLI 自带升级器,官方安装指南有说明。想手动控制的话,`cd` 进安装目录,`git pull`,然后在 venv 里重新执行 `uv pip install -e ".[all]"`。
可以。README 明确支持通过 Termux 在 Android 上运行,安装脚本会自动识别 Termux 并安装 `.[termux]` extra。同一条命令,不需要 root。
README 把它描述成一个闭环:Hermes 会「从使用经验中创建 skill、在使用过程中继续改进、主动推动自己把知识沉淀下来、检索自己过去的对话、并在跨会话间持续加深对你的用户画像」。README 正是拿这一点来区分 Hermes 和普通的无状态聊天助手。
skill 是可复用、可组合的能力单元。Hermes 原生支持 README 里提到的开放目录 agentskills.io,而且能在使用过程中自己生成并保存新的 skill——这套会自我书写的 skill 系统,正是学习闭环的一部分。
支持。v0.6.0(2026-03-30)加入了 MCP server 模式,让 Hermes 能把自己的工具暴露给其他 MCP 客户端。v0.8.0(2026-04-08)又补上了 MCP OAuth 2.1,用于带鉴权的 MCP 连接——两项都在官方发布说明里被列为重点特性。
v0.6.0(2026-03-30)新增了官方 Docker 容器,这是那次发布在 GitHub notes 里标注的一项重点。在 v0.6.0 之前,唯一支持的安装方式就是 curl 脚本加本地 Python 环境。
README 列了六种工具执行的 terminal 后端:local、Docker、SSH、Daytona、Singularity、Modal。它们让你能在从普通 shell 到短生命期无服务器容器的不同隔离环境里跑 Hermes 的命令。
v0.7.0(2026-04-03)把 memory 变成了一套可插拔的 provider 接口——第三方后端只要实现一个 provider ABC 并通过插件系统注册进来就行。Honcho 是参考实现,带有 profile 维度的 host/peer 解析,也正是 README 里描述的那套「辩证式用户模型」后端。
README 的快速开始流程是:先 `source ~/.bashrc` 重载 shell,然后 `hermes` 开始聊,`hermes model` 挑 provider,`hermes tools` 配置工具,`hermes setup` 走完整的配置向导。这些都能在 README 的安装后续部分里找到。
官方仓库是 github.com/NousResearch/hermes-agent——MIT 协议,目前约 5 万 star、约 6500 fork,main 分支上有 3,700+ commit。主页是 hermes-agent.nousresearch.com。
README 给出三个社区渠道:Nous Research Discord(discord.gg/NousResearch),bug 反馈走 github.com/NousResearch/hermes-agent/issues,更长的问题和 skill 分享则在同一个仓库的 GitHub Discussions。
把 CLI 的软链接和安装目录删掉就行:`rm ~/.local/bin/hermes`,然后 `rm -rf ~/.hermes/hermes-agent`。如果装的时候设过 `HERMES_INSTALL_DIR`,就删对应那个路径。脚本不会动任何系统级的包。
不是。这是一个由粉丝搭建的社区站点,不是由 Nous Research 运营、背书或与之存在任何关联。站点内容全部来自公开资料——GitHub 仓库、发布说明以及 hermes-agent.nousresearch.com 的官方文档。Hermes Agent 和 Nous Research 均为各自所有者的商标。
No. The README lists the CLI and chat gateways (Telegram, Discord, Slack, WhatsApp, Signal, Email) as the built-in interfaces — there is no official browser UI in v0.8.0. If you want to talk to Hermes from a browser, the two community paths are (1) run it on a Matrix/Discord/Slack workspace and use that platform's web client, or (2) point an MCP-compatible editor at Hermes's MCP server mode (added in v0.6.0).
Yes — a Linux VPS is the typical deployment. The official requirements are 2 GB RAM minimum (more if you run local models), ~1 GB disk, and Python 3.11 (installed automatically by the curl script). Run the same one-line installer over SSH. For command isolation on a shared host, enable the SSH or Docker sandbox backend from the README so Hermes's shell tools execute inside a container rather than on your VPS filesystem.
The upstream docs are at hermes-agent.nousresearch.com/docs — that is the source of truth for installation, configuration, tools, channels, and the CLI reference. This community site (hermesagents.net) pulls facts from those docs plus the NousResearch/hermes-agent README and the GitHub release notes. If upstream and this site ever disagree, trust upstream.
No. Several unrelated products use the name 'Hermes' — enterprise security agents, email clients, middleware tools. This site only covers Hermes Agent by Nous Research: the open-source self-improving AI agent at github.com/NousResearch/hermes-agent. If you are looking for a Hermes security product, this is not the right site.