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.

Stars Dev.to Skills count License


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

SkillDescriptionRequires
FMPReal-time stock quotes, company fundamentals, income statements, ratios, screener, crypto & forex via Financial Modeling PrepFMP_API_KEY

๐ŸŒ Web

SkillDescriptionRequires
FirecrawlScrape any URL to clean Markdown, web search, full-site crawl, dynamic page interaction (clicks/forms), structured JSON extractionFIRECRAWL_API_KEY

๐Ÿ“ฑ WhatsApp

SkillDescriptionRequires
WBizToolContact lookup and management โ€” find a number by name, identify unknown numbers, stats by countryWhatsApp bridge running

๐Ÿ” SEO

SkillDescriptionRequires
NeuronWriterContent analysis and optimization via NeuronWriter APINEURONWRITER_API_KEY

๐ŸŒ WordPress

SkillDescriptionRequires
WPBakeryBuild WordPress pages with WPBakery shortcodes and REST APIWordPress credentials

๐Ÿ“ข Marketing

SkillDescriptionRequires
WaitlisterManage waitlists via Waitlister.me APIWAITLISTER_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