@QingQ77: 为 Hermes Agent 提供一套开箱即用的技能和工作流层,覆盖从想法到部署再到运维的完整应用生命周期。 https://github.com/Salomondiei08/oh-my-hermes… Oh My Hermes 就是给 …
摘要
Oh My Hermes是一个开源的工作流层,为Hermes Agent提供开箱即用的技能和Agent团队,覆盖从需求到部署运维的完整应用生命周期,使Hermes成为一个自主的运维和开发搭档。
查看缓存全文
缓存时间: 2026/05/12 16:56
为 Hermes Agent 提供一套开箱即用的技能和工作流层,覆盖从想法到部署再到运维的完整应用生命周期。 https://github.com/Salomondiei08/oh-my-hermes… Oh My Hermes 就是给 Hermes 装上“操作系统“——装一次,Hermes 就不再是聊天机器人,而是一个能干活的运维+开发搭档。 20 个技能覆盖需求澄清、产品简报、设计交接、引擎选择、代码实现、部署、数据库连接、监控、通知、GitHub 操作等完整环节; 5 个 Agent(CTO、PM、Dev、QA、Ops)各管一段,在看板上协同推进。Hermes 自己就是主操作者,Claude Code 和 Codex 只是可选的深度编码加速器。
Salomondiei08/oh-my-hermes
Source: https://github.com/Salomondiei08/oh-my-hermes
Oh My Hermes
An opinionated workflow layer for building, shipping, and operating apps — delivered directly to Hermes.
Like Oh My Zsh is to Zsh. You install it once and Hermes becomes genuinely useful for real software projects. Not a chatbot wrapper. Not a prompt pack. A curated set of skills that Hermes loads and runs autonomously — on your VPS, on your laptop, wherever Hermes lives.
AI agent? See INSTALL_FOR_AGENTS.md for the one-command install protocol.
Use with an AI agent
If you work with Claude, Cursor, Copilot, or any coding assistant, paste this directly into the chat:
To install Oh My Hermes on a project:
Install Oh My Hermes on this project.
1. Clone the repo: git clone https://github.com/salomondiei08/oh-my-hermes /tmp/oh-my-hermes
2. Run the installer: bash /tmp/oh-my-hermes/install.sh
3. Bootstrap this project: bash /tmp/oh-my-hermes/scripts/bootstrap.sh
4. Verify everything installed: bash /tmp/oh-my-hermes/scripts/verify.sh
Then tell me what's missing and what I need to fill in.
To set up the full autonomous CTO loop:
Set up the Oh My Hermes CTO loop for this project.
Follow the instructions in: https://raw.githubusercontent.com/salomondiei08/oh-my-hermes/main/INSTALL_FOR_AGENTS.md
I will provide the following when you ask:
- My GitHub repo (owner/repo)
- A GitHub fine-grained token (I'll create one if you explain how)
- My production URL (if deployed)
Walk me through each step one at a time.
To start a new app from scratch:
Use Oh My Hermes to start a new app.
Oh My Hermes is installed at ~/.hermes/skills/. Load the following skills in order:
1. clarify-requirements — ask me the 7 questions and save my answers
2. product-brief — generate the brief from my answers
3. choose-engine — decide how to implement it
4. implement — build it using the right engine
Start with clarify-requirements now.
The core idea
Hermes is the operator. It talks to you. It remembers. It builds. It deploys. It monitors. It notifies.
You describe what you want in plain language — on Telegram, Slack, Discord, your terminal, wherever you have Hermes configured. Hermes loads the right skill and runs the workflow. Claude Code and Codex are optional engines Hermes can invoke when a task needs deep file editing — but Hermes handles the orchestration, the ops, the memory, and the lifecycle on its own.
Hermes does not need Claude Code or Codex to be useful. Those are optional. Hermes itself has a terminal backend and can write, edit, and run code directly.
How it all fits together
┌─────────────────────────────────────────────────────────────────┐
│ YOU (founder) │
│ Telegram · Slack · Discord · WhatsApp · terminal │
└──────────────────────────┬──────────────────────────────────────┘
│ plain-language messages
▼
┌─────────────────────────────────────────────────────────────────┐
│ HERMES (VPS / local, 24/7) │
│ │
│ ┌──────────┐ routes to ┌─────────────────────────────────┐ │
│ │ Gateway │ ────────────▶ │ CTO Agent │ │
│ │(Telegram │ │ monitors kanban, orchestrates │ │
│ │ /Slack…) │ └───────────┬─────────────────────┘ │
│ └──────────┘ │ spawns sub-agents │
│ ┌──────────────────┼──────────────┐ │
│ ▼ ▼ ▼ │
│ ┌────────────┐ ┌──────────────┐ ┌──────────┐ │
│ │ PM · Dev │ │ QA · Security│ │ Ops │ │
│ │ triage │ │ review · scan│ │ deploy │ │
│ │ implement │ │ approve │ │ monitor │ │
│ └─────┬──────┘ └──────┬───────┘ └────┬─────┘ │
│ │ │ │ │
│ ┌──────▼────────────────▼───────────────▼──────┐ │
│ │ Hermes Kanban │ │
│ │ Backlog → In Progress → Review → Done │ │
│ └───────────────────────────────────────────────┘ │
│ │
│ Persistent memory · 23 skills · 5 workflows · cron jobs │
└──────┬──────────────────────────────────────────────────────────┘
│
├──▶ Claude Code (complex multi-file coding)
├──▶ Codex (quick single-file fixes)
├──▶ Vercel (hosting + preview URLs)
├──▶ Supabase (database + auth + migrations)
├──▶ GitHub (issues, PRs, merge)
└──▶ Sentry / Uptime Kuma (monitoring)
Full project lifecycle
From idea to running production app, Hermes handles each stage:
IDEA
↓ onboarding ← Bot asks everything in chat, configures the loop
↓ clarify-requirements ← Hermes asks 7 questions, saves answers to memory
↓ product-brief ← Writes PRODUCT_BRIEF.md from requirements
↓ design-handoff ← Converts your design notes to an implementation spec
↓ choose-engine ← Decides: Hermes / Claude Code / Codex
↓ implement ← Builds it — surgical changes, no secrets committed
↓ deploy-to-vercel ← Pre-deploy checks → deploy → captures URL
↓ connect-supabase ← Links DB, pushes migrations, sets env vars
↓ setup-monitoring ← Sentry + Uptime Kuma
↓ post-deploy-followup ← Health check → log → notify you
↓
RUNNING APP
↓ auto-issue-triage ← Every hour: scores issues, picks top priority
↓ implement + PR ← Dev Agent builds, Security Agent reviews
↓ await-merge-approval ← Sends you YES/NO message
↓ YOU reply YES ← Merges, deploys, health-checks, confirms
↓
REPEAT — Hermes watches it, you approve changes
The autonomous CTO loop
Once configured, this runs every hour without you touching anything:
GitHub issue opens
↓
PM Agent scores & triages → kanban: Backlog
↓
Dev Agent implements → kanban: In Progress
↓
Security Agent: secret scan + OWASP check + CVE check
↓
QA Agent: build check + health check + plain-English summary
↓
YOU get a message on Telegram:
────────────────────────────────────────
PR #12 — Fix login redirect
What changed: Users who hadn't verified their email were
sent to a broken page. They now see "Check your inbox."
Build: passing | Preview: healthy (180ms) | No secrets found
Preview: https://myapp-fix-login.vercel.app
Reply YES to ship. Reply NO and tell me why.
────────────────────────────────────────
↓
YES → merges, deploys, health-checks, confirms live URL to you
NO → Dev Agent iterates on your feedback
Get started
Step 1 — Install Hermes Agent
Follow the Hermes quickstart. At the end you have a bot you can message on Telegram (or Slack, Discord, WhatsApp).
Step 2 — Install Oh My Hermes
curl -fsSL https://raw.githubusercontent.com/salomondiei08/oh-my-hermes/main/install.sh | bash
Step 3 — Message your bot
set up the CTO loop
The bot will ask for your GitHub repo, walk you through creating a token step by step, ask for your production URL, and configure everything. No terminal needed after Step 2.
What you unlock at each step:
| Step | What to do | What you get |
|---|---|---|
| 1 | Install Hermes + connect Telegram | A bot you can message |
| 2 | Run install.sh | 23 skills and 5 workflows loaded |
| 3 | Message: “set up the CTO loop” | Bot guides the full setup in chat |
| 4 | Bot asks for GitHub token | Issues monitored, PRs managed |
| 5 | Bot asks for production URL | Health checks every 15 min |
| 6 | /goal command | Agent stays focused across long sessions |
| — | Autonomous from here | Hourly triage, daily report, weekly security scan |
Skills
| Skill | What Hermes does |
|---|---|
onboarding | Guides full setup in chat — no terminal, no manual config |
clarify-requirements | Asks 7 structured questions, saves answers to memory |
product-brief | Generates a product brief, writes PRODUCT_BRIEF.md |
design-handoff | Converts design notes to an implementation spec |
create-skill | Creates a new skill in the correct format (meta-skill) |
choose-engine | Routes tasks to Hermes, Claude Code, or Codex |
implement-with-claude-code | Scaffolds Claude Code with full context + scope constraints |
implement-with-codex | Scaffolds Codex for targeted single-file fixes |
deploy-to-vercel | Pre-deploy checks → deploy → capture URL |
connect-supabase | Links Supabase, pushes migrations, sets Vercel env vars |
setup-monitoring | Configures Sentry + Uptime Kuma |
health-check | Calls /api/health, validates response, checks Supabase + Vercel logs |
send-notification | Sends Slack webhook with deployment or status info |
post-deploy-followup | Health check + deployment log + notification + summary |
manage-github-issues | Triage, create, label, assign, and close GitHub issues |
create-github-pr | Creates PR with secret scan before opening |
auto-issue-triage | Hourly: scores open issues, picks top priority, starts work |
review-github-pr | Reviews PR diff, runs checks, writes plain-English summary |
security-review | Secret scan + OWASP check + CVE audit + weekly supply chain |
await-merge-approval | Sends YES/NO message to founder, merges or iterates |
kanban-task | Creates and updates Hermes kanban cards at every stage |
cto-status-report | Daily morning report: what’s in progress, done, blocked |
backup-hermes-data | Tarballs ~/.hermes/ to S3, Dropbox, or local |
Agents
| Agent | Role | Kanban ownership |
|---|---|---|
| CTO | Orchestrates all agents, monitors kanban, reports to you daily | All columns |
| PM | Triages GitHub issues, writes tickets, prioritizes backlog | Backlog |
| Dev | Implements tickets, picks the right engine, creates PRs | In Progress |
| Security | Scans every PR for secrets, OWASP issues, and CVEs | Between Dev and QA |
| QA | Reviews PRs, runs health checks, writes founder summary | Review |
| Ops | Deploys, monitors production, handles incidents | Done + monitoring |
Role definitions live in agents/. Running scripts/setup-cto.sh (or messaging “set up the CTO loop”) creates the actual Hermes profiles and makes the agents active.
Workflow examples
Start a new project:
you: start a new app
hermes: What problem does this solve? Who experiences it?
you: [answer]
hermes: [6 more questions…]
hermes: Requirements saved. Generating product brief…
hermes: Brief written to PRODUCT_BRIEF.md. Ready to implement or do design first?
Deploy after implementing:
you: deploy this to Vercel
hermes: Running pre-deploy checklist…
hermes: Deploying… done. URL: https://myapp.vercel.app
hermes: Health check: PASS (200ms)
hermes: Notification sent to Slack.
Quick fix:
you: fix the auth redirect bug in src/middleware.ts
hermes: Loading context… routing to Codex (single-file fix)
hermes: Done. Typecheck passes. Creating PR…
hermes: PR #14 ready — reply YES to ship.
Steer mid-session (Hermes v0.13+):
you: /steer prioritize the payment bug above everything else
hermes: Understood. Switching Dev Agent to issue #38.
Default stack
| Layer | Default | Alternative |
|---|---|---|
| Frontend / full-stack | Vercel | Railway, Render |
| Database | Supabase PostgreSQL | PlanetScale, Neon |
| Auth | Supabase Auth | Clerk, Auth.js |
| Error tracking | Sentry | LogRocket |
| Uptime monitoring | Uptime Kuma | Better Uptime |
| Notifications | Slack webhook | Telegram, Email |
All pluggable. Each skill documents how to substitute.
Running on a VPS
The intended setup for production use — Hermes runs 24/7, crons fire automatically, you interact from your phone:
# On a $5/month VPS (Ubuntu 22.04+)
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
hermes model # choose your provider (Anthropic, OpenAI, etc.)
hermes gateway setup && hermes gateway start # connect Telegram or Slack
# Then install Oh My Hermes
curl -fsSL https://raw.githubusercontent.com/salomondiei08/oh-my-hermes/main/install.sh | bash
# Message your bot: "set up the CTO loop"
For Docker:
docker run -d --restart=always \
-v hermes-data:/root/.hermes \
nousresearch/hermes-agent
Installation scripts
| Script | What it does |
|---|---|
install.sh | Installs all skills, workflows, and agent definitions |
scripts/bootstrap.sh | Creates AGENTS.md, .env.example, health endpoint in a project |
scripts/setup-cto.sh | Creates profiles, initializes kanban, schedules crons |
scripts/verify.sh | Checks everything is installed correctly |
scripts/uninstall.sh | Removes all Oh My Hermes files from ~/.hermes/ |
Optional: GBrain memory backbone
GBrain gives Hermes a richer, self-updating knowledge graph — people, companies, decisions, deployment history — queryable across sessions.
git clone https://github.com/garrytan/gbrain.git ~/gbrain && cd ~/gbrain
curl -fsSL https://bun.sh/install | bash && export PATH="$HOME/.bun/bin:$PATH"
bun install && bun link && gbrain init
Do not use npm install -g gbrain — a squatter package exists on npm under that name.
Architecture
oh-my-hermes/
├── skills/ ← 23 skill files → ~/.hermes/skills/
├── workflows/ ← 5 workflow files → ~/.hermes/workflows/
├── agents/ ← 6 agent role definitions → ~/.hermes/agents/
├── templates/ ← AGENTS.md template, .env example, health endpoint
├── scripts/ ← install, bootstrap, verify, setup-cto, uninstall
└── docs/ ← Full documentation
See docs/architecture.md for detail.
Roadmap
V1 — current 23 skills, 6 agents, 5 workflows, chat-guided onboarding, security agent, Karpathy code principles, one-command CTO setup, Vercel + Supabase + GitHub ops.
V2 — planned Rollback skill, staging → production promotion workflow, incident creation, post-deploy automated tests.
V3 — planned Multi-service orchestration, more example apps, hosted setup wizard.
Star history
Contributing
Read docs/architecture.md before proposing features. Open issues for wrong or missing skills, bugs in scripts, or Hermes improvement proposals.
License
MIT
相似文章
@NFTCPS: Hermes 这波直接把 Agent 天花板给掀了! 全网程序员已经开始用它搭桌面神器、跑创意流水线、省 token 省到飞起——你还没跟上? 先说 hermes-desktop,CLI 小玩具直接进化成 Mac/Windows 原生桌面…
本文介绍了围绕Hermes Agent构建的五个开源工具项目,包括桌面应用、创意工作流、共享记忆层、token压缩工具和监控仪表板,旨在扩展Agent的生态系统。
@GitTrend0x: Hermes 继续自进化,宝藏接一连三出现! Kali 渗透测试技能,Dashboard 深色主题包、像素世界桥接、AIOps 运维军团、原生视频创作管线……全网程序员把 Hermes 玩成了下一代 Agent 红队黑客 + 丝滑仪表盘 …
Hermes Agent 生态迎来多项社区更新,包括 Kali 渗透测试技能、深色主题仪表盘、像素元宇宙桥接、AIOps 运维及视频创作管线,展示了 AI Agent 在安全测试与自动化运维方面的新能力。
@GitTrend0x: Hermes 继续创时代! literate programming 技能,SRE 事件指挥官、Spotify 原生控制、自主技能市场、Obsidian 身份层……全网程序员把 Hermes 玩成了下一代 Agent 文档神器 + 运维军…
Hermes AI agent ecosystem expands with new open-source tools including literate programming support for Claude Code, autonomous SRE incident management, Spotify control, and a skill marketplace. These tools enable developers to turn codebases into executable narratives and automate运维 tasks.
@VincentLogic: 发现个挺有意思的 AI 助手客户端! Hermes Agent,界面做得挺清爽的中文桌面应用。功能集成得挺全: - 对话、会话管理 - 多模型支持 - 技能、工具集成 - 定时任务、网关配置 从界面看能帮你:搜索网页、设置提醒、总结邮件、…
Hermes Agent 是一款基于 Electron 开发的跨平台 AI 助手桌面客户端,支持多模型切换、技能集成与定时任务等功能,旨在为用户提供统一的 AI 效率工作台。
@Lonely__MH: https://x.com/Lonely__MH/status/2055156505796866407
这篇文章分享了七个配置 Hermes AI agent 的技巧,包括设置灵魂、记忆系统、技能固化、定时任务、辅助模型、多平台网关和手机控制,并介绍了如何免费使用 Nous Research 提供的模型。