Hermes-agent

This commit is contained in:
Zakaria
2026-06-14 14:30:48 -04:00
commit dac4b88b94
5058 changed files with 1884848 additions and 0 deletions
@@ -0,0 +1,441 @@
---
sidebar_position: 4
title: "教程:团队 Telegram 助手"
description: "逐步指南:为整个团队搭建一个 Telegram 机器人,用于代码帮助、研究、系统管理等"
---
# 搭建团队 Telegram 助手
本教程将引导你搭建一个由 Hermes Agent 驱动的 Telegram 机器人,供多名团队成员使用。完成后,你的团队将拥有一个共享 AI 助手,可以向它发消息寻求代码、研究、系统管理等方面的帮助——并通过按用户授权保障安全。
## 我们要构建什么
一个 Telegram 机器人,具备以下能力:
- **任何已授权的团队成员**都可以私信寻求帮助——代码审查、研究、Shell 命令、调试
- **运行在你的服务器上**,拥有完整工具访问权限——终端、文件编辑、网络搜索、代码执行
- **按用户会话隔离**——每个人拥有独立的对话上下文
- **默认安全**——只有经过审批的用户才能交互,支持两种授权方式
- **定时任务**——每日站会、健康检查和提醒推送到团队频道
---
## 前提条件
开始前,请确保你已具备:
- **已在服务器或 VPS 上安装 Hermes Agent**(不是你的笔记本——机器人需要持续运行)。如尚未安装,请参阅[安装指南](/getting-started/installation)。
- **一个 Telegram 账号**(机器人所有者)
- **已配置 LLM 提供商**——至少在 `~/.hermes/.env` 中配置了 OpenAI、Anthropic 或其他受支持提供商的 API 密钥
:::tip
一台 $5/月的 VPS 足以运行 gateway(网关)。Hermes 本身很轻量——花钱的是 LLM API 调用,而那些调用发生在远端。
:::
---
## 第一步:创建 Telegram 机器人
每个 Telegram 机器人都从 **@BotFather** 开始——这是 Telegram 官方用于创建机器人的机器人。
1. **打开 Telegram**,搜索 `@BotFather`,或访问 [t.me/BotFather](https://t.me/BotFather)
2. **发送 `/newbot`**——BotFather 会询问两件事:
- **显示名称**——用户看到的名字(例如 `Team Hermes Assistant`
- **用户名**——必须以 `bot` 结尾(例如 `myteam_hermes_bot`
3. **复制机器人 token**——BotFather 会回复类似内容:
```
Use this token to access the HTTP API:
7123456789:AAH1bGciOiJSUzI1NiIsInR5cCI6Ikp...
```
保存此 token——下一步会用到。
4. **设置描述**(可选,但推荐):
```
/setdescription
```
选择你的机器人,然后输入类似内容:
```
Team AI assistant powered by Hermes Agent. DM me for help with code, research, debugging, and more.
```
5. **设置机器人命令**(可选——为用户提供命令菜单):
```
/setcommands
```
选择你的机器人,然后粘贴:
```
new - Start a fresh conversation
model - Show or change the AI model
status - Show session info
help - Show available commands
stop - Stop the current task
```
:::warning
请妥善保管你的机器人 token。任何持有该 token 的人都可以控制机器人。如果泄露,请在 BotFather 中使用 `/revoke` 生成新 token。
:::
---
## 第二步:配置 Gateway
你有两种选择:交互式设置向导(推荐)或手动配置。
### 方式 A:交互式设置(推荐)
```bash
hermes gateway setup
```
通过方向键选择完成所有配置。选择 **Telegram**,粘贴你的机器人 token,并在提示时输入你的用户 ID。
### 方式 B:手动配置
在 `~/.hermes/.env` 中添加以下内容:
```bash
# Telegram bot token from BotFather
TELEGRAM_BOT_TOKEN=7123456789:AAH1bGciOiJSUzI1NiIsInR5cCI6Ikp...
# Your Telegram user ID (numeric)
TELEGRAM_ALLOWED_USERS=123456789
```
### 查找你的用户 ID
你的 Telegram 用户 ID 是一个数字值(不是你的用户名)。查找方式:
1. 在 Telegram 上给 [@userinfobot](https://t.me/userinfobot) 发消息
2. 它会立即回复你的数字用户 ID
3. 将该数字填入 `TELEGRAM_ALLOWED_USERS`
:::info
Telegram 用户 ID 是永久性数字,例如 `123456789`。它与可以更改的 `@username` 不同。白名单中请始终使用数字 ID。
:::
---
## 第三步:启动 Gateway
### 快速测试
先在前台运行 gateway,确认一切正常:
```bash
hermes gateway
```
你应该看到类似输出:
```
[Gateway] Starting Hermes Gateway...
[Gateway] Telegram adapter connected
[Gateway] Cron scheduler started (tick every 60s)
```
打开 Telegram,找到你的机器人,发送一条消息。如果它回复了,说明一切正常。按 `Ctrl+C` 停止。
### 生产环境:安装为服务
若要持久部署并在重启后自动恢复:
```bash
hermes gateway install
sudo hermes gateway install --system # 仅 Linux:开机启动的系统服务
```
这会创建一个后台服务:Linux 上默认为用户级 **systemd** 服务,macOS 上为 **launchd** 服务,传入 `--system` 则创建开机启动的 Linux 系统服务。
```bash
# Linux——管理默认用户服务
hermes gateway start
hermes gateway stop
hermes gateway status
# 查看实时日志
journalctl --user -u hermes-gateway -f
# SSH 退出后保持运行
sudo loginctl enable-linger $USER
# Linux 服务器——显式系统服务命令
sudo hermes gateway start --system
sudo hermes gateway status --system
journalctl -u hermes-gateway -f
```
```bash
# macOS——管理服务
hermes gateway start
hermes gateway stop
tail -f ~/.hermes/logs/gateway.log
```
:::tip macOS PATH
launchd plist 在安装时捕获你的 Shell PATH,以便 gateway 子进程能找到 Node.js 和 ffmpeg 等工具。如果之后安装了新工具,请重新运行 `hermes gateway install` 以更新 plist。
:::
### 验证运行状态
```bash
hermes gateway status
```
然后在 Telegram 上向你的机器人发送测试消息。几秒内应收到回复。
---
## 第四步:设置团队访问权限
现在让你的队友获得访问权限。有两种方式。
### 方式 A:静态白名单
收集每位团队成员的 Telegram 用户 ID(让他们给 [@userinfobot](https://t.me/userinfobot) 发消息),然后以逗号分隔的列表形式添加:
```bash
# 在 ~/.hermes/.env 中
TELEGRAM_ALLOWED_USERS=123456789,987654321,555555555
```
修改后重启 gateway
```bash
hermes gateway stop && hermes gateway start
```
### 方式 B:私信配对(推荐用于团队)
私信配对更灵活——无需提前收集用户 ID。工作流程如下:
1. **队友私信机器人**——由于不在白名单中,机器人会回复一次性配对码:
```
🔐 Pairing code: XKGH5N7P
Send this code to the bot owner for approval.
```
2. **队友将配对码发给你**(通过任何渠道——Slack、邮件或当面)
3. **你在服务器上审批**
```bash
hermes pairing approve telegram XKGH5N7P
```
4. **他们即可使用**——机器人立即开始响应他们的消息
**管理已配对用户:**
```bash
# 查看所有待审批和已审批用户
hermes pairing list
# 撤销某人的访问权限
hermes pairing revoke telegram 987654321
# 清除已过期的待审批码
hermes pairing clear-pending
```
:::tip
私信配对非常适合团队使用,因为添加新用户时无需重启 gateway。审批立即生效。
:::
### 安全注意事项
- **切勿在拥有终端访问权限的机器人上设置 `GATEWAY_ALLOW_ALL_USERS=true`**——任何找到你机器人的人都可能在你的服务器上执行命令
- 配对码在 **1 小时**后过期,并使用密码学随机数生成
- 速率限制防止暴力破解:每用户每 10 分钟 1 次请求,每平台最多 3 个待审批码
- 5 次审批失败后,该平台进入 1 小时锁定状态
- 所有配对数据以 `chmod 0600` 权限存储
---
## 第五步:配置机器人
### 设置主频道
**主频道**是机器人投递 cron 任务结果和主动消息的地方。没有主频道,定时任务将无处发送输出。
**方式 1:** 在机器人所在的任意 Telegram 群组或聊天中使用 `/sethome` 命令。
**方式 2** 在 `~/.hermes/.env` 中手动设置:
```bash
TELEGRAM_HOME_CHANNEL=-1001234567890
TELEGRAM_HOME_CHANNEL_NAME="Team Updates"
```
要查找频道 ID,可将 [@userinfobot](https://t.me/userinfobot) 添加到群组——它会报告该群组的聊天 ID。
### 配置工具进度显示
控制机器人在使用工具时显示的详细程度。在 `~/.hermes/config.yaml` 中:
```yaml
display:
tool_progress: new # off | new | all | verbose
```
| 模式 | 显示内容 |
|------|-------------|
| `off` | 仅显示干净的回复——无工具活动 |
| `new` | 每次新工具调用的简短状态(推荐用于消息场景) |
| `all` | 每次工具调用及其详情 |
| `verbose` | 完整工具输出,包括命令结果 |
用户也可以在聊天中使用 `/verbose` 命令按会话更改此设置。
### 使用 SOUL.md 设置个性
通过编辑 `~/.hermes/SOUL.md` 自定义机器人的沟通方式:
完整指南请参阅[在 Hermes 中使用 SOUL.md](/guides/use-soul-with-hermes)。
```markdown
# Soul
You are a helpful team assistant. Be concise and technical.
Use code blocks for any code. Skip pleasantries — the team
values directness. When debugging, always ask for error logs
before guessing at solutions.
```
### 添加项目上下文
如果你的团队在特定项目上工作,可以创建上下文文件,让机器人了解你们的技术栈:
```markdown
<!-- ~/.hermes/AGENTS.md -->
# Team Context
- We use Python 3.12 with FastAPI and SQLAlchemy
- Frontend is React with TypeScript
- CI/CD runs on GitHub Actions
- Production deploys to AWS ECS
- Always suggest writing tests for new code
```
:::info
上下文文件会注入到每个会话的系统 prompt(提示词)中。请保持简洁——每个字符都会占用你的 token 预算。
:::
---
## 第六步:设置定时任务
gateway 运行后,你可以安排定期任务,将结果投递到团队频道。
### 每日站会摘要
在 Telegram 上给机器人发消息:
```
Every weekday at 9am, check the GitHub repository at
github.com/myorg/myproject for:
1. Pull requests opened/merged in the last 24 hours
2. Issues created or closed
3. Any CI/CD failures on the main branch
Format as a brief standup-style summary.
```
Agent 会自动创建一个 cron 任务,并将结果投递到你提问的聊天(或主频道)。
### 服务器健康检查
```
Every 6 hours, check disk usage with 'df -h', memory with 'free -h',
and Docker container status with 'docker ps'. Report anything unusual —
partitions above 80%, containers that have restarted, or high memory usage.
```
### 管理定时任务
```bash
# 通过 CLI
hermes cron list # 查看所有定时任务
hermes cron status # 检查调度器是否运行
# 通过 Telegram 聊天
/cron list # 查看任务
/cron remove <job_id> # 删除任务
```
:::warning
Cron 任务的 prompt 在完全全新的会话中运行,不保留任何先前对话的记忆。请确保每个 prompt 包含 agent 所需的**全部**上下文——文件路径、URL、服务器地址以及清晰的指令。
:::
---
## 生产环境建议
### 使用 Docker 保障安全
在共享团队机器人上,使用 Docker 作为终端后端,让 agent 命令在容器中运行,而非直接在宿主机上运行:
```bash
# 在 ~/.hermes/.env 中
TERMINAL_BACKEND=docker
TERMINAL_DOCKER_IMAGE=nikolaik/python-nodejs:python3.11-nodejs20
```
或在 `~/.hermes/config.yaml` 中:
```yaml
terminal:
backend: docker
container_cpu: 1
container_memory: 5120
container_persistent: true
```
这样即使有人要求机器人执行破坏性操作,你的宿主系统也受到保护。
### 监控 Gateway
```bash
# 检查 gateway 是否运行
hermes gateway status
# 查看实时日志(Linux
journalctl --user -u hermes-gateway -f
# 查看实时日志(macOS
tail -f ~/.hermes/logs/gateway.log
```
### 保持 Hermes 更新
在 Telegram 中向机器人发送 `/update`——它会拉取最新版本并重启。或在服务器上执行:
```bash
hermes update
hermes gateway stop && hermes gateway start
```
### 日志位置
| 内容 | 位置 |
|------|----------|
| Gateway 日志 | `journalctl --user -u hermes-gateway`Linux)或 `~/.hermes/logs/gateway.log`macOS |
| Cron 任务输出 | `~/.hermes/cron/output/{job_id}/{timestamp}.md` |
| Cron 任务定义 | `~/.hermes/cron/jobs.json` |
| 配对数据 | `~/.hermes/pairing/` |
| 会话历史 | `~/.hermes/sessions/` |
---
## 进一步探索
你已经拥有一个可用的团队 Telegram 助手。以下是一些后续步骤:
- **[安全指南](/user-guide/security)**——深入了解授权、容器隔离和命令审批
- **[消息 Gateway](/user-guide/messaging)**——gateway 架构、会话管理和聊天命令的完整参考
- **[Telegram 设置](/user-guide/messaging/telegram)**——平台专属详情,包括语音消息和 TTS
- **[定时任务](/user-guide/features/cron)**——高级 cron 调度,含投递选项和 cron 表达式
- **[上下文文件](/user-guide/features/context-files)**——用于项目知识的 AGENTS.md、SOUL.md 和 .cursorrules
- **[个性设置](/user-guide/features/personality)**——内置个性预设和自定义角色定义
- **添加更多平台**——同一 gateway 可同时运行 [Discord](/user-guide/messaging/discord)、[Slack](/user-guide/messaging/slack) 和 [WhatsApp](/user-guide/messaging/whatsapp)
---
*有问题或遇到问题?请在 GitHub 上提 issue——欢迎贡献。*