Guide for using Aegis with Hermes Agent through Hermes Agent's skill system.
This page only covers the Hermes Agent host install path. For the current
Aegis Method Pack authority order, release gate, host compatibility status,
and known limitations, read:
docs/current/README.mddocs/current/AEGIS_HOST_COMPATIBILITY_MATRIX_SNAPSHOT.mddocs/current/AEGIS_METHOD_PACK_RELEASE_CHECKLIST.mddocs/current/AEGIS_KNOWN_LIMITATIONS.md
Hermes Agent is skills-compatible with Aegis because Hermes exposes a Skills Hub
and a local SKILL.md skill system. Hermes currently documents:
- local skills under
~/.hermes/skills/ - GitHub path installs such as
hermes skills install owner/repo/skills/my-workflow hermes skills listand related skill-management commands- built-in coding-agent delegation skills for Claude Code, Codex, and OpenCode
The current Aegis support status is structural and advisory. It does not claim current release-level live smoke evidence for Hermes Agent.
Keep a local Aegis checkout for workspace helper support, then expose Aegis skill directories to Hermes using either the documented local skills directory or the current Hermes skill installation surface.
The stable Aegis-side source layout is:
<aegis-method-pack-root>/skills/<skill-name>/SKILL.md
Install at least these skills first:
using-aegissystematic-debuggingbrainstormingwriting-plansverification-before-completion
The most transparent path is to copy the individual Aegis skill directories
into ~/.hermes/skills/. If your Hermes release supports GitHub path installs,
you may also install individual Aegis skills with paths such as:
hermes skills install GanyuanRan/Aegis/skills/using-aegis
hermes skills install GanyuanRan/Aegis/skills/systematic-debugging
hermes skills install GanyuanRan/Aegis/skills/brainstormingDo not treat this repository root as a single Hermes skill. Aegis is a multi-skill method pack.
git clone https://github.com/GanyuanRan/Aegis.git ~/.hermes/aegis
mkdir -p ~/.hermes/skills
cp -R ~/.hermes/aegis/skills/* ~/.hermes/skills/git clone https://github.com/GanyuanRan/Aegis.git "$env:USERPROFILE\.hermes\aegis"
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.hermes\skills"
Copy-Item -Recurse -Force "$env:USERPROFILE\.hermes\aegis\skills\*" "$env:USERPROFILE\.hermes\skills\"This layout keeps a complete Aegis checkout available while exposing individual skill directories as:
~/.hermes/skills/<skill-name>/SKILL.md
If the Hermes Agent release you are using provides a different documented global or workspace skill path, prefer that host-native path and keep the Aegis checkout available for doctor and workspace helper verification.
Restart Hermes Agent or start a new session, then ask it to list or describe available Aegis skills. If your Hermes release exposes the CLI, run:
hermes skills listExpected result:
- Hermes can see Aegis skills such as
using-aegis,systematic-debugging, andbrainstorming. - Hermes can load the relevant skill on demand.
- The local Aegis checkout remains available for workspace support.
- Hermes does not present Aegis as a full runtime platform, authoritative
GateDecision, or final completion authority.
Portable goal entry:
Aegis goal: Fix the auth refresh bug without rewriting the auth system.
Use this when you want goal-framing to set goal, success evidence, stop
condition, and non-goals before routing onward.
For complete-install verification, run this from the local Aegis checkout:
cd <aegis-method-pack-root>
python scripts/aegis-doctor.py --write-config --jsonDo not run the doctor command from the target project directory; it belongs to the installed Aegis method-pack root.
Treat the install as complete only if the JSON reports "ok": true,
"workspaceSupport": "available", and "configStatus": "configured".
If Hermes uses a separate skill discovery directory in your current release, also verify it:
cd <aegis-method-pack-root>
python scripts/aegis-doctor.py --discovery-root <hermes-skill-discovery-root>cd ~/.hermes/aegis
git pull
cp -R ~/.hermes/aegis/skills/* ~/.hermes/skills/
python scripts/aegis-doctor.py --write-config --jsonSet-Location "$env:USERPROFILE\.hermes\aegis"
git pull
Copy-Item -Recurse -Force "$env:USERPROFILE\.hermes\aegis\skills\*" "$env:USERPROFILE\.hermes\skills\"
python scripts/aegis-doctor.py --write-config --jsonRestart Hermes Agent or start a new session after updating.
Hermes Agent uses its native skill discovery and routing. It does not currently use an Aegis bootstrap hook from this repository.
That means AEGIS_ACTIVATION_MODE=explicit does not override Hermes Agent's
own skill matcher by itself. For explicit use, ask Hermes to load an Aegis skill
directly.
You can still write the shared user-local Aegis config from the installed method-pack root:
cd <aegis-method-pack-root>
python scripts/aegis-doctor.py activation-mode explicitSwitch back to automatic mode with:
cd <aegis-method-pack-root>
python scripts/aegis-doctor.py activation-mode autoRestart Hermes Agent or start a new session after changing local Aegis config. For this host, the command does not override Hermes Agent's native matcher.
- Confirm each exposed Aegis skill has
SKILL.mdat the skill root. - Run
hermes skills listwhen available. - Restart Hermes Agent or start a new session.
- Ask Hermes to list or describe Aegis skills.
- Check whether a workspace or registry skill with the same name is taking precedence.
If only skill directories were copied and the local checkout was removed, skill discovery may still work but complete project workspace support is not proven. Restore the checkout and run this from the method-pack root, not from the target project directory:
cd <aegis-method-pack-root>
python scripts/aegis-doctor.py --write-config --jsonThe JSON should include "workspaceSupport": "available" and
"configStatus": "configured".