Hermes integration
Alfred-OS does not require Hermes. The core runtime is local Python, launchd, GitHub CLI, git worktrees, Slack delivery, and local model CLIs.
Hermes is useful when you want an operator layer around the engineering fleet: chat gateway, cron prompts, ACP dispatch, MCP tools, gbrain, canon, or dashboards. In that setup Hermes observes or dispatches, while Alfred-OS owns the engineering agent state machine and launchd jobs.
| Layer | Owns |
|---|---|
| Alfred-OS | launchd, role runners, worktrees, issue claims, PR loops, Slack reports |
| Hermes | chat gateway, cron prompts, ACP, MCP tools, skills, memory, dashboards |
HERMES_HOME is the shared runtime-root name. It defaults to ~/.hermes, but
the name alone does not mean Hermes is installed.
Minimal shared env
Section titled “Minimal shared env”HERMES_HOME="$HOME/.hermes"WORKSPACE_ROOT="$HOME/code"GH_ORG="your-github-org"ACP_ARGS="--acp --stdio"AWS_PROFILE_FOR_HERMES="hermes-alfred"Prefer AWS profiles over direct AWS_ACCESS_KEY_ID and
AWS_SECRET_ACCESS_KEY values. Direct keys can override profile-backed calls
and cause stale-signature failures.
Scheduling rule
Section titled “Scheduling rule”Use one scheduler for each role.
Good:
- Alfred-OS launchd fires engineering agents.
- Hermes cron posts daily summaries.
- Hermes cron runs read-only commands like
alfred statusoralfred shipped.
Risky:
- launchd and Hermes cron both fire the same feature-dev runner.
- Hermes shells into an Alfred-OS worktree while a runner owns the issue claim.
Skills and MCP
Section titled “Skills and MCP”Alfred-OS ships no skills by default. Keep reviewed skills under
~/.hermes/skills or your Claude Code skills directory, and pin third-party
skill sources the same way you pin code dependencies.
For MCP:
hermes mcp listhermes mcp test gbrainIf Hermes reports StdioServerParameters is not defined, update the local MCP
Python package in the Hermes virtualenv:
hermes update~/.hermes/hermes-agent/venv/bin/pip install -U mcpFull guide
Section titled “Full guide”See docs/HERMES.md for the full install order, skill bundle recipe, observability checks, and public-repo safety rules.