Hermes agent
25 executable AI agent skills for debugging, planning, token efficiency, and security
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Use when setting up or extending Hermes Agent.
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, 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).