Hermes 生态全景
一、官方核心
| 项目 | 说明 | Stars |
|---|---|---|
| NousResearch/hermes-agent | 核心项目 | 206k |
| 官方文档 | 含 developer-guide/contributing 开发者指南 | — |
| hermes-agent-self-evolution | DSPy + GEPA 进化自己的 prompts | Nous |
| Skills Hub | 跨代理技能开放标准 | — |
二、Web UI / 管理面板
- hermes-webui ⭐15k — 从手机/浏览器使用 Hermes
- hermes-studio ⭐8.6k — Vue3 仪表板(session 管理、定时任务、用量分析)
- hermes-workspace ⭐5.9k — React 原生工作区(聊天+终端+记忆+技能+检查器)
- clawpanel ⭐2.9k — Tauri v2 跨平台桌面管理面板
三、技能与角色生态
- agency-agents-zh ⭐16k — 266 个即插即用 AI 专家角色,支持 Hermes/Claude Code/Cursor 等 18 种工具,覆盖工程/设计/营销/金融等 20 个部门。含 50 个中国市场原创智能体(小红书/抖音/微信/飞书/钉钉等)。搭配编排器 agency-orchestrator 一句话让多个专家按 DAG 协作
- awesome-hermes-agent ⭐4.3k — 精选清单,含 Level-Up Blueprints
- wondelai/skills — 跨平台技能库(380+ stars)
- hermes-agent-acp-skill — 多代理委派,在 Hermes/Codex/Claude Code 之间路由子任务
四、多代理与编排
- Ankh.md — Hermes × TAW Agent 多代理 swarm 框架
- bigiron — AI-native SDLC,Hermes + Supermodel 代码图
- MisakaNet — 基于 Git 的分布式 swarm 记忆(GitHub Issues 同步)
- opencode-hermes-multiagent — 17 个专业 agent 用于 OpenCode AI
五、集成与桥梁
- screenpipe ⭐19k — 本地屏幕/音频捕获,构建长期记忆
- hermes-android — Android 设备桥
- Hermes Console — Obsidian 集成
- microsoft-workspace-skill — Outlook/365 集成
Level-Up Blueprints 使用指南
来源:awesome-hermes-agent 的 Level-Up Blueprints 部分。每个蓝图是策略组合,指向具体项目串联形成方案。
蓝图一:记忆堆栈(Memory Stack)
| 层级 | 组件 | 说明 |
|---|---|---|
| 基础 ✅ | Hermes 内置记忆(holographic) | 当前已启用,本地运行 |
| 第1步 | honcho-self-hosted | 更强跨 session 用户建模。插件已装,hermes config set memory.provider honcho 启用 |
| 第2步 | hindsight | retain/recall/reflect 跨大量历史记忆。插件已装 |
| 第3步 | plur | 可移植共享记忆(开放 engram 格式) |
| Pro | flowstate-qmd | 主动回忆(proactive recall) |
实操:
# 当前已有 7 个记忆插件:
# byterover, hindsight, holographic ✅, honcho, mem0, openviking, retaindb, supermemory
# 切 honcho(需要先部署 honcho 服务):
hermes config set memory.provider honcho
# 切回当前:
hermes config set memory.provider holographic
蓝图二:自改进(Self-Improvement)
- hermes-agent-self-evolution — DSPy + GEPA 遗传算法优化 prompt
- lintlang — prompt/config 检查防止突变出问题
- 配定期回归检查,阻挡坏的 prompt 突变
蓝图三:操作驾驶舱(Operator Cockpit)
- hermes-workspace ⭐5.9k — 最丰富的日常 UI(聊天+终端+记忆+技能)
- mission-control ⭐3.7k — 多代理舰队可视化 + 成本追踪
- hermes-webui ⭐15k — 轻量级操作表面
蓝图四:多代理执行层(Multi-Agent)
- Hermes 核心 delegate_task + ACP skill(Codex/Claude Code 路由)
- zouroboros-swarm-executors(本地执行器交接)
- opencode-hermes-multiagent / bigiron(专业 agent 角色)
蓝图五:部署硬化
- nix-hermes-agent — Nix 可重复部署
- hermes-agent-docker — Docker 部署模板
- evey-setup — 高定制化部署脚本
- openclaw-to-hermes — 从 OpenClaw 迁移
蓝图六:Paperclip 自治运营
hermes-paperclip-adapter + cron jobs + 驾驶舱面板,实现任务治理、审批和运营连续性。
开发路径参考
| 方向 | 资源 |
|---|---|
| 官方开发者指南 | Contributing + Architecture |
| 添加 Tool | 3 文件:tools/your_tool.py + toolsets.py + registry.register() |
| 添加 Skill | 写 SKILL.md,hermes skills install |
| 添加 Provider | agent/model_metadata.py + agent/models_dev.py |
| 添加 Slash Command | hermes_cli/commands.py → cli.py → gateway/run.py |
| 测试 | python -m pytest tests/ (~3000 tests) |
最后更新:2026-06-30