README.md
June 21, 2026 ยท View on GitHub
hermes-skills
Open-source skills library for Hermes AI Agent โ plug-and-play integrations for finance, web, marketing and more.
What are Hermes Skills?
Skills are Markdown files that give Hermes contextual knowledge and reusable code patterns to interact with external services. Drop a SKILL.md into ~/.hermes/skills/ and your agent knows how to use the service.
Available Skills
๐น Finance
| Skill | Description | Requires |
|---|---|---|
| FMP | Real-time stock quotes, company fundamentals, income statements, ratios, screener, crypto & forex via Financial Modeling Prep | FMP_API_KEY |
๐ Web
| Skill | Description | Requires |
|---|---|---|
| Firecrawl | Scrape any URL to clean Markdown, web search, full-site crawl, dynamic page interaction (clicks/forms), structured JSON extraction | FIRECRAWL_API_KEY |
๐ฑ WhatsApp
| Skill | Description | Requires |
|---|---|---|
| WBizTool | Contact lookup and management โ find a number by name, identify unknown numbers, stats by country | WhatsApp bridge running |
๐ SEO
| Skill | Description | Requires |
|---|---|---|
| NeuronWriter | Content analysis and optimization via NeuronWriter API | NEURONWRITER_API_KEY |
๐ WordPress
| Skill | Description | Requires |
|---|---|---|
| WPBakery | Build WordPress pages with WPBakery shortcodes and REST API | WordPress credentials |
๐ข Marketing
| Skill | Description | Requires |
|---|---|---|
| Waitlister | Manage waitlists via Waitlister.me API | WAITLISTER_API_KEY |
Quick Start
# Copy a skill to your Hermes installation
cp -r finance/fmp ~/.hermes/skills/finance/
# Add required env vars
echo "FMP_API_KEY=your_key_here" >> ~/.hermes/.env
# Restart Hermes gateway
hermes gateway restart
Then ask Hermes naturally:
- "What's the current price of Apple stock?"
- "Scrape https://example.com and summarize it"
- "What's the number of [contact name]?"
Contributing
PRs welcome! Skills should:
- Use environment variables for all credentials (never hardcode keys)
- Include working Python code examples
- Follow the SKILL.md format (see any existing skill)
Auto-publishing
New skills are automatically published as Dev.to articles via GitHub Actions on each push. Follow dev.to/robinberaud for updates.
License
MIT