mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-04 07:31:58 +00:00
Translates the full English docs corpus (335 files) into Simplified Chinese under website/i18n/zh-Hans/. Combined with PR #31895 (cross- locale link fix), the 简体中文 locale toggle now serves a complete Chinese site with working cross-page navigation. Pipeline: - Claude Sonnet 4.6 via OpenRouter, 8-way concurrent - Preserves frontmatter keys, code blocks, MDX/JSX, link URLs, brand names, and technical jargon (prompt/token/hook/MCP/ACP/etc.) - Translates only frontmatter title/description and prose - Two largest files (configuration.md 93KB, research-paper-writing.md 107KB) retried with 64K max_tokens after initial fence-drift - 3 manual post-fixes for MDX edge cases the model didn't escape: < in optional-skills-catalog table, double-quotes in an alt= tag, and a bare URL adjacent to a full-width period Cost: ~$30 total (Sonnet 4.6 input $3/M + output $15/M). Verified `npm run build` succeeds for both en and zh-Hans locales, no double-prefixed /docs/zh-Hans/docs/ URLs in rendered output, all in-page navigation resolves correctly. Translations are machine-generated and may need human review on specific pages — but they're an enormous improvement over the previous state (3 zh-Hans pages out of 335).
655 B
655 B
Secrets
Hermes 可以在进程启动时从外部密钥管理器拉取 API 密钥,而不是将其存储在 ~/.hermes/.env 中。密钥管理器的引导令牌存放在 .env 中;其他所有提供商密钥(OpenAI、Anthropic、OpenRouter 等)可以保留在管理器中并集中轮换。
支持的后端:
- Bitwarden Secrets Manager — 使用
bwsCLI,懒加载安装,免费套餐可用。
更多后端(Vault、AWS Secrets Manager、1Password CLI)可以轻松接入同一接口——只需在 agent/secret_sources/ 中添加一个模块并实现一个 CLI 处理器。如有特定需求,欢迎提交请求。