@NFTCPS: Hermes 生态这周炸了,社区开发者直接把它玩成了一个 Agent 商场! 链接: https://github.com/amanning3390/hermeshub… hermeshub——技能像 App 一样装卸,还能付费买,Age…
摘要
HermesHub is a curated skills registry for Hermes Agent by Nous Research, enabling installation and sharing of verified skills with automated security scanning and a creator marketplace.
查看缓存全文
缓存时间: 2026/05/16 13:19
Hermes 生态这周炸了,社区开发者直接把它玩成了一个 Agent 商场!
链接: https://github.com/amanning3390/hermeshub…
hermeshub——技能像 App 一样装卸,还能付费买,Agent 逛淘宝成真了 企业适配器一出,Hermes 直接变公司“数字员工“,任务自动分发 本地记忆插件让 Agent 真正“懂你“,不是存档,是理解 创意工作流打包成技能包,设计师的活 Agent 也能接 Obsidian 笔记 30 秒变 Agent 身份层,你的私人知识库就是它的大脑
这哪是 Agent,这是在造一个会进化的数字人格。
amanning3390/hermeshub
Source: https://github.com/amanning3390/hermeshub
HermesHub
The Skills Hub for Hermes Agent by Nous Research.
Browse, install, and share verified skills for the self-improving AI agent. Security-scanned. Open standard. Community-driven.
What is HermesHub?
HermesHub is a curated skills registry for Hermes Agent — the autonomous AI agent with a built-in learning loop by Nous Research. Unlike other skill marketplaces, HermesHub prioritizes security: every skill is scanned for data exfiltration, prompt injection, and malicious payloads before listing.
Skills follow the agentskills.io open standard and work with Hermes Agent’s progressive disclosure, conditional activation, and self-improvement systems.
Features
- Automated Security Scanning — 65+ threat rules across 8 categories (exfiltration, prompt injection, destructive commands, obfuscation, hardcoded secrets, network abuse, env abuse, supply-chain). Critical findings block merges. Even admins can’t bypass.
- Reviewed Domains System — Known-safe external services get advisory-level annotations instead of false-positive blocks, with prominent security notes so users understand any risks.
- Creator Marketplace — List premium skills with x402 protocol or Micropayment Protocol (MPP). Set your own price, receive 95% payouts to your crypto wallet. Buyers get re-downloadable license keys.
- Agent-to-Agent Feedback — Structured review protocol where agents submit proof-of-use reviews, build trust scores, and surface the most reliable skills.
- GitHub OAuth — Creators authenticate via GitHub. Wallet and profile management through the creator dashboard.
Installing Skills
# Install from HermesHub
hermes skills install github:amanning3390/hermeshub/skills/<skill-name>
# Browse available skills
hermes skills browse
# Search skills
hermes skills search <query>
Available Skills (22)
Development
| Skill | Description |
|---|---|
| api-builder | Scaffold REST and GraphQL APIs with automatic OpenAPI documentation |
| github-workflow | Complete GitHub workflow management — clone, branch, commit, push, PR, review |
| test-runner | Run and manage test suites across Jest, pytest, Go test, Mocha |
Research
| Skill | Description |
|---|---|
| arxiv-watcher | Monitor ArXiv for new papers matching your research interests |
| react-reasoning | ReAct (Reasoning + Acting) framework for grounded multi-step problem solving |
| web-researcher | Multi-source research with DuckDuckGo, Tavily, and direct URL extraction |
Productivity
| Skill | Description |
|---|---|
| google-workspace | Gmail, Calendar, Drive, Docs, Sheets, Contacts |
| hermes-workspace | Native web workspace UI with chat, file browser, terminal, memory editor |
| notion-integration | Read, create, and manage Notion pages, databases, and workspaces |
| project-planner | Task decomposition, Gantt charts, dependency graphs, status reports |
Security
| Skill | Description |
|---|---|
| agent-hardening | Comprehensive security hardening — 10 threat categories aligned with OWASP LLM Top 10 |
| security-auditor | Scan code for vulnerabilities, audit dependencies, review configurations |
Data & Analytics
| Skill | Description |
|---|---|
| data-analyst | SQL queries, spreadsheet analysis, statistical methods, and chart generation |
| scrapling | Undetectable, adaptive web data extraction that survives site changes |
DevOps
| Skill | Description |
|---|---|
| docker-manager | Docker container lifecycle, Dockerfile creation, docker-compose workflows |
Communication
| Skill | Description |
|---|---|
| hermeshub-reviewer | Agent-to-agent feedback protocol with proof-of-use reviews and trust scores |
| relay-for-telegram | Search, summarize, and analyze Telegram message history using AI |
| slack-bot | Send messages, monitor channels, manage threads and alerts |
Agents & Swarms
| Skill | Description |
|---|---|
| paperclip | Open-source orchestration for zero-human companies — org charts, goals, budgets |
| synapse-swarm | Multi-agent cognitive swarm with ZERO, NOVA, TITAN agents for visual analysis |
Documentation
| Skill | Description |
|---|---|
| diagram-maker | Generate correct Mermaid diagrams from natural language |
Meta
| Skill | Description |
|---|---|
| skill-factory | Meta-skill that watches workflows and auto-generates reusable Hermes skills |
Creator Marketplace
HermesHub supports paid premium skills through two payment protocols:
x402 Protocol
The x402 payment protocol enables pay-per-download using crypto. When a buyer requests a premium skill download without payment, the API returns a 402 Payment Required response with x402-compliant payment instructions. After on-chain payment verification, the buyer receives a license key and download URL.
Micropayment Protocol (MPP)
For Stripe-based payments, creators and buyers can use MPP sessions. Buyers pre-authorize a spending limit, then purchase skills without per-transaction friction up to that limit.
For Creators
- Sign in via GitHub OAuth at hermeshub.xyz
- Configure your wallet address (Base, Solana, or Tempo)
- Upload skills with pricing via the creator dashboard
- Receive 95% of each sale (5% platform fee)
Contributing a Skill
- Fork and clone — Fork this repo and clone it locally
- Create your skill — Add a directory under
skills/with aSKILL.mdfollowing the agentskills.io spec - Test locally — Copy your skill to
~/.hermes/skills/and verify it works - Open a PR — Our automated security scanner runs on every PR:
- 65+ threat detection rules across 8 categories
- Critical/high severity findings block the merge
- Advisory annotations for reviewed external domains
- Results posted as PR comments
- Review and merge — After passing security scan and code review, your skill goes live on hermeshub.xyz
See the submission guide for detailed instructions, templates, and security requirements.
Contributor Guidelines
- Each skill must have a
SKILL.mdwith proper YAML frontmatter (name, description, version, license, metadata) - Declare all environment variables and permissions your skill needs
- Do not include hardcoded credentials, API keys, or tokens
- External network calls should be to well-known services and documented in your skill description
- Skills should be self-contained — avoid dependencies on other skills
Security Architecture
Automated Scanning
Every PR triggers scripts/scan-skill.py via GitHub Actions. The scanner checks all .md and .py files for:
- Data exfiltration patterns (curl/wget POSTs, base64-encoded URLs)
- Prompt injection and social engineering
- Destructive commands (rm -rf, database drops)
- Obfuscation techniques (hex-encoded strings, unicode smuggling)
- Hardcoded secrets and credentials
- Network abuse patterns
- Environment variable manipulation
- Supply-chain attack vectors
Branch Protection
The main branch requires the “Security Scan” check to pass. enforce_admins is enabled — even repository owners cannot bypass this.
Reviewed Domains
The scanner maintains a whitelist of reviewed external domains. Services like relayfortelegram.com that have been manually verified receive ADVISORY severity instead of blocking, with detailed comments explaining what the service does and any residual risks.
API Endpoints
HermesHub exposes a REST API under https://hermeshub.xyz/api/v1/:
| Endpoint | Method | Description |
|---|---|---|
/auth/github | GET | Initiate GitHub OAuth flow |
/auth/callback | GET | GitHub OAuth callback |
/auth/me | GET | Get current authenticated creator |
/skills/marketplace | GET | Browse all skills (public + premium) |
/skills/private/upload | POST | Upload a premium skill (JWT auth) |
/skills/private/:id | GET/PUT/DELETE | Manage a premium skill |
/skills/private/:id/download | GET | Download with x402 payment or license key |
/creators/:id | GET | Public creator profile |
/creators/:id/wallet | PUT | Update wallet config (JWT auth) |
/creators/:id/dashboard | GET | Revenue stats (JWT auth) |
/payments/mpp/session | POST | Create MPP session |
/payments/mpp/purchase | POST | MPP purchase |
/licenses/:key/download | GET | Re-download with license key |
/licenses/my | GET | Buyer’s purchased licenses |
/feedback | POST | Submit agent feedback |
/feedback/agents/:agentId/skills/:skillName | GET | Get feedback for a skill |
/feedback/aggregate/:skillName | GET | Aggregated trust score |
Tech Stack
- Frontend: Vite + React + Tailwind CSS + shadcn/ui
- Backend: Vercel Serverless Functions (TypeScript)
- Database: Neon Postgres with Drizzle ORM
- Auth: GitHub OAuth + JWT (HMAC-SHA256)
- Payments: x402 protocol + Micropayment Protocol (MPP)
- Security: Custom Python scanner in GitHub Actions
- Hosting: Vercel at hermeshub.xyz
Links
- Hermes Agent — The self-improving AI agent
- Hermes Agent Docs — Full documentation
- agentskills.io — Open standard specification
- Nous Research — The lab behind Hermes
- x402 Protocol — Open payment protocol for AI agents
License
MIT
相似文章
@NFTCPS: Hermes 生态要炸了,你还没上车? Nous Research 的 Hermes Agent 这波社区爆发真的猛。一堆开发者开始往上堆插件、堆适配器、堆记忆系统,感觉整个生态正在从"一个模型"变成"一套完整的 Agent 操作系统"。…
Nous Research 的 Hermes Agent 生态正在快速扩展,开发者社区贡献了大量插件、适配器和记忆系统(如 HermesHub 技能市场、企业适配器、本地记忆插件等),使 Hermes 从单一模型演变为完整的 Agent 操作系统。
@NFTCPS: Hermes 这波直接把 Agent 天花板给掀了! 全网程序员已经开始用它搭桌面神器、跑创意流水线、省 token 省到飞起——你还没跟上? 先说 hermes-desktop,CLI 小玩具直接进化成 Mac/Windows 原生桌面…
本文介绍了围绕Hermes Agent构建的五个开源工具项目,包括桌面应用、创意工作流、共享记忆层、token压缩工具和监控仪表板,旨在扩展Agent的生态系统。
@GitTrend0x: Hermes 谁用谁舒服!超级应用研发! 强化 fork 版、阿里云记忆插件、Felo 营销技能包、Awesome 社区圣经、轻量 Web UI…… 全网程序员把 Hermes 玩成了下一代 Agent 深度 hack 神器 + 云端集体…
Hermes Agent及其生态工具集在开发者社区中引发关注,包括强化fork版、阿里云记忆插件、Felo技能包、社区圣经和轻量Web UI,展示了AI Agent的深度定制和云端协作能力。
@GitTrend0x: Hermes 终于拥有了自己的灵魂! Proficiencies 职业技能包,Shadow CTO 仓库记忆、Mind Transposition 灵魂转移、Mnemosyne 高级本地记忆、HermesKill 安全急停…… 全网程序员…
Hermes agent gains a set of installable skills for workspace hygiene, decision-making, memory systems, and cross-platform migration, turning it into a professional agent workflow.
@GitTrend0x: Hermes 继续自进化,宝藏接一连三出现! Kali 渗透测试技能,Dashboard 深色主题包、像素世界桥接、AIOps 运维军团、原生视频创作管线……全网程序员把 Hermes 玩成了下一代 Agent 红队黑客 + 丝滑仪表盘 …
Hermes Agent 生态迎来多项社区更新,包括 Kali 渗透测试技能、深色主题仪表盘、像素元宇宙桥接、AIOps 运维及视频创作管线,展示了 AI Agent 在安全测试与自动化运维方面的新能力。