Oh My Hermes

Multi-agent orchestration skills for Hermes Agent — deep research, interviews, planning consensus, and verified execution, inspired by oh-my-claudecode and rebuilt on Hermes primitives.

Integrations240Added
oh-my-hermes

What Is It

Oh My Hermes (OMH) is a suite of multi-agent orchestration skills for Hermes Agent, created by witt3rd. It’s inspired by the popular oh-my-claudecode project, but rebuilt natively on Hermes’ own primitives — sub-agents, skills, and the agent loop — rather than ported patterns.

OMH turns a single Hermes instance into an orchestration team. Instead of one agent doing everything in a straight line, it spins up specialized roles that work in sequence: research, interview, plan, then execute with verification.

Key Features

Workflow What it does
deep-research Systematically investigates a topic with search and source gathering
deep-interview Conducts structured multi-round interviews to gather requirements
ralplan Planner → Architect → Critic consensus for high-quality plans
ralph Verified execution: execute → verify → iterate until correct
triage Classifies and routes incoming tasks appropriately
autopilot Hands a defined playbook over to the dispatcher for autonomous execution

Composed end-to-end, OMH covers the full arc: research → interview → consensus plan → verified execution.

Getting Started

# Clone the skill suite
git clone https://github.com/witt3rd/oh-my-hermes.git
cd oh-my-hermes

# Copy the skills into your Hermes skills directory
cp -r skills/* ~/.hermes/skills/

Then invoke a workflow from chat, for example asking for a deep research report on a topic, and the dispatcher skills coordinate the sub-agent team.

Why It Matters for Hermes Users

Hermes already supports parallel sub-agents with independent contexts — OMH packages that power into ready-made, opinionated workflows. If you’ve ever wanted a “research team” or a “planning committee” instead of a single chat loop, this is the fastest way to get one.

← Back to Ecosystem