Working with Skills
Working with Skills
Section titled “Working with Skills”Skills are on-demand knowledge documents that teach Hermes how to handle specific tasks — from generating ASCII art to managing GitHub PRs. This guide walks you through using them day to day.
For the full technical reference, see Skills System.
Finding Skills
Section titled “Finding Skills”Every Hermes installation ships with bundled skills. See what’s available:
# In any chat session:/skills
# Or from the CLI:hermes skills listThis shows a compact list with names and descriptions:
ascii-art Generate ASCII art using pyfiglet, cowsay, boxes...arxiv Search and retrieve academic papers from arXiv...github-pr-workflow Full PR lifecycle — create branches, commit...plan Plan mode — inspect context, write a markdown...excalidraw Create hand-drawn style diagrams using Excalidraw...Searching for a Skill
Section titled “Searching for a Skill”# Search by keyword/skills search docker/skills search musicThe Skills Hub
Section titled “The Skills Hub”Official optional skills (heavier or niche skills not active by default) are available via the Hub:
# Browse official optional skills/skills browse
# Search the hub/skills search blockchainUsing a Skill
Section titled “Using a Skill”Every installed skill is automatically a slash command. Just type its name:
# Load a skill and give it a task/ascii-art Make a banner that says "HELLO WORLD"/plan Design a REST API for a todo app/github-pr-workflow Create a PR for the auth refactor
# Just the skill name (no task) loads it and lets you describe what you need/excalidrawYou can also trigger skills through natural conversation — ask Hermes to use a specific skill, and it will load it via the skill_view tool.
Progressive Disclosure
Section titled “Progressive Disclosure”Skills use a token-efficient loading pattern. The agent doesn’t load everything at once:
skills_list()— compact list of all skills (~3k tokens). Loaded at session start.skill_view(name)— full SKILL.md content for one skill. Loaded when the agent decides it needs that skill.skill_view(name, file_path)— a specific reference file within the skill. Only loaded if needed.
This means skills don’t cost tokens until they’re actually used.
Installing from the Hub
Section titled “Installing from the Hub”Official optional skills ship with Hermes but aren’t active by default. Install them explicitly:
# Install an official optional skillhermes skills install official/research/arxiv
# Install from the hub in a chat session/skills install official/creative/songwriting-and-ai-music
# Install a single-file SKILL.md directly from any HTTP(S) URLhermes skills install https://sharethis.chat/SKILL.md/skills install https://example.com/SKILL.md --name my-skillWhat happens:
- The skill directory is copied to
~/.hermes/skills/ - It appears in your
skills_listoutput - It becomes available as a slash command
Verifying Installation
Section titled “Verifying Installation”# Check it's therehermes skills list | grep arxiv
# Or in chat/skills search arxivPlugin-Provided Skills
Section titled “Plugin-Provided Skills”Plugins can bundle their own skills using namespaced names (plugin:skill). This prevents name collisions with built-in skills.
# Load a plugin skill by its qualified nameskill_view("superpowers:writing-plans")
# Built-in skill with the same base name is unaffectedskill_view("writing-plans")Plugin skills are not listed in the system prompt and don’t appear in skills_list. They’re opt-in — load them explicitly when you know a plugin provides one. When loaded, the agent sees a banner listing sibling skills from the same plugin.
For how to ship skills in your own plugin, see Build a Hermes Plugin → Bundle skills.
Configuring Skill Settings
Section titled “Configuring Skill Settings”Some skills declare configuration they need in their frontmatter:
metadata: hermes: config: - key: tenor.api_key description: "Tenor API key for GIF search" prompt: "Enter your Tenor API key" url: "https://developers.google.com/tenor/guides/quickstart"When a skill with config is first loaded, Hermes prompts you for the values. They’re stored in config.yaml under skills.config.*.
Manage skill config from the CLI:
# Interactive config for a specific skillhermes skills config gif-search
# View all skill confighermes config get skills.configCreating Your Own Skill
Section titled “Creating Your Own Skill”Skills are just markdown files with YAML frontmatter. Creating one takes under five minutes.
1. Create the Directory
Section titled “1. Create the Directory”mkdir -p ~/.hermes/skills/my-category/my-skill2. Write SKILL.md
Section titled “2. Write SKILL.md”---name: my-skilldescription: Brief description of what this skill doesversion: 1.0.0metadata: hermes: tags: [my-tag, automation] category: my-category---
# My Skill
## When to UseUse this skill when the user asks about [specific topic] or needs to [specific task].
## Procedure1. First, check if [prerequisite] is available2. Run `command --with-flags`3. Parse the output and present results
## Pitfalls- Common failure: [description]. Fix: [solution]- Watch out for [edge case]
## VerificationRun `check-command` to confirm the result is correct.3. Add Reference Files (Optional)
Section titled “3. Add Reference Files (Optional)”Skills can include supporting files the agent loads on demand:
my-skill/├── SKILL.md # Main skill document├── references/│ ├── api-docs.md # API reference the agent can consult│ └── examples.md # Example inputs/outputs├── templates/│ └── config.yaml # Template files the agent can use└── scripts/ └── setup.sh # Scripts the agent can executeReference these in your SKILL.md:
For API details, load the reference: `skill_view("my-skill", "references/api-docs.md")`4. Test It
Section titled “4. Test It”Start a new session and try your skill:
hermes chat -q "/my-skill help me with the thing"The skill appears automatically — no registration needed. Drop it in ~/.hermes/skills/ and it’s live.
The agent can also create and update skills itself using skill_manage. After solving a complex problem, Hermes may offer to save the approach as a skill for next time.
Per-Platform Skill Management
Section titled “Per-Platform Skill Management”Control which skills are available on which platforms:
hermes skillsThis opens an interactive TUI where you can enable or disable skills per platform (CLI, Telegram, Discord, etc.). Useful when you want certain skills only available in specific contexts — for example, keeping development skills off Telegram.
Skills vs Memory
Section titled “Skills vs Memory”Both are persistent across sessions, but they serve different purposes:
| Skills | Memory | |
|---|---|---|
| What | Procedural knowledge — how to do things | Factual knowledge — what things are |
| When | Loaded on demand, only when relevant | Injected into every session automatically |
| Size | Can be large (hundreds of lines) | Should be compact (key facts only) |
| Cost | Zero tokens until loaded | Small but constant token cost |
| Examples | ”How to deploy to Kubernetes" | "User prefers dark mode, lives in PST” |
| Who creates | You, the agent, or installed from Hub | The agent, based on conversations |
Rule of thumb: If you’d put it in a reference document, it’s a skill. If you’d put it on a sticky note, it’s memory.
Keep skills focused. A skill that tries to cover “all of DevOps” will be too long and too vague. A skill that covers “deploy a Python app to Fly.io” is specific enough to be genuinely useful.
Let the agent create skills. After a complex multi-step task, Hermes will often offer to save the approach as a skill. Say yes — these agent-authored skills capture the exact workflow including pitfalls that were discovered along the way.
Use categories. Organize skills into subdirectories (~/.hermes/skills/devops/, ~/.hermes/skills/research/, etc.). This keeps the list manageable and helps the agent find relevant skills faster.
Update skills when they go stale. If you use a skill and hit issues not covered by it, tell Hermes to update the skill with what you learned. Skills that aren’t maintained become liabilities.
For the complete skills reference — frontmatter fields, conditional activation, external directories, and more — see Skills System.