Hermes agent
Use when setting up or extending Hermes Agent.From its SKILL.md
npx -y skills add ChrisLamDev/hermes-core-skills --skill hermes-agentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 3 commands, including `pip install hermes-agent` and 2 more.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.4 KB, 246 tokens by cl100k_base, as published. Nobody here has run it
Hermes Agent Guide
Hermes Agent is an autonomous AI agent that runs via CLI, Telegram, Discord, and other platforms.
Quick Install
pip install hermes-agent # or
brew install hermes-agent/tap/hermes-agent
hermes --version # verify
Key Commands
| Command | What It Does |
|---|---|
hermes | Start interactive session |
hermes --model qwen2.5:7b | Start with specific local model |
hermes --listen | Start in service mode (API) |
Configuration
Config file: ~/.hermes/config.yaml
provider: ollama
model: qwen2.5:7b
skills:
dir: ~/.hermes/skills
Spawning Sub-Agents
Use delegate_task() to spawn isolated agents for:
- Heavy reasoning (parallel research)
- Long-running code work (keeps your context clean)
- Multi-agent workflows (up to 3 sub-agents)
See references/advanced-setup.md for platform setup (Telegram, Discord, CLI gateway).
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.