A native Hermes Agent toolkit for building AI automation -- skills, workflows, cron jobs, and subagent pipelines. Ported and adapted from the AI Employee Builder methodology with permission.
Hermes Forge is a skill authoring and business automation framework built specifically for Hermes Agent. It contains:
- forge-skill -- The core skill authoring toolkit. Create, validate, test, and improve Hermes skills using evidence-driven design methodology.
- business-xray -- Map, diagnose, and optimize your business operations. Find the highest-leverage automation opportunities.
# Copy the skills to your Hermes skills directory
cp -r skills/* ~/.hermes/skills/
# Or symlink for easy updates
ln -s /path/to/hermes-forge/skills/forge-skill ~/.hermes/skills/forge-skill
ln -s /path/to/hermes-forge/skills/business-xray ~/.hermes/skills/business-xray# Create a new skill
"create a skill for daily standup summaries"
# Build a multi-step automation system
"build a skill system for client onboarding"
# Validate an existing skill
"validate the email-drafter skill"
# Map your business operations
"run business x-ray on my workflow"
These are measured, not vibes. Each law has eval evidence behind it.
- Guide, don't prescribe -- Ship gotchas and frameworks, not comprehensive docs. A 50-line gotcha distillation matched a 575-line skill stack at 30% fewer tokens.
- One home per rule -- Workflows are spine; rules live in their canonical skill. Inlined copies rot.
- Enforce, don't instruct -- Mechanical rules become scripts with VERDICT evidence. A prose "zero tolerance" rule was violated in 8 of 9 measured runs.
- Measure, don't assume -- Eval before and after any significant skill change. "Feels better" is how dead weight accumulates.
- Real examples beat rule-prose -- Verbatim gold-standard samples carry behavior better than descriptions.
skills/
├── forge-skill/ # The skill authoring toolkit
│ ├── SKILL.md # Router + core instructions
│ ├── workflows/ # Create, validate, test, harden
│ ├── references/ # Design specs, mechanism selection
│ └── templates/ # Skill templates for common patterns
│
└── business-xray/ # Business process mapping
├── SKILL.md # Router + interview framework
├── workflows/ # Progressive analysis workflows
└── references/ # Archetypes, templates, frameworks
Hermes Forge is built for Hermes Agent and uses:
skill_managefor creating/editing skillsdelegate_taskfor isolated subagent execution (replaces Claude Code'scontext: fork)cronjobfor scheduled/recurring automation (replaces Claude Code's/schedule)- Standard file reads for loading workflow and reference content
MIT. The methodology is adapted from the AI Employee Builder by Rashid Khamis (the2hourclo), ported to Hermes Agent conventions.