使用技能
本文档的完整中文翻译正在进行中。
概述
如何使用和创建技能。
快速开始
hermes help
hermes config
hermes skills相关链接
获取帮助
如需帮助,请运行 hermes doctor 或访问 GitHub Issues。
原文档内容:
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
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
# Search by keyword
/skills search docker
/skills search musicThe 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
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
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...
[完整翻译即将推出]