Skip to main content
Run any Skill in Manus
with one click
GitHub repository

awesome-hermes-for-developers

awesome-hermes-for-developers contains 8 collected skills from bezael, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
8
Stars
0
updated
2026-07-08
Forks
0
Occupation coverage
5 occupation categories · 100% classified
repository explorer

Skills in this repository

postgres-safe-query
software-developers

Query a production PostgreSQL database safely and read-only from Hermes. Enforces a dedicated read-only role, rejects any write/DDL/stacked-statement payload before it reaches the database, caps row counts and execution time, and never lets a connection string or password enter the agent's context or logs. Use whenever Hermes needs to answer a question against a live production Postgres database (debugging, support triage, reporting, ad-hoc analytics) without risking a write, a runaway scan that saturates the connection pool, or a leaked credential.

2026-07-08
mcp-server-wireup
computer-occupations-all-other

Connect a new MCP (Model Context Protocol) server to a running Hermes Agent instance safely — add the right entry under `mcp_servers:` in `~/.hermes/config.yaml`, scope its environment variables correctly, and verify both that the server's tools actually load and that Hermes's credential-filtering is doing what the docs claim. Use when the user has an MCP server (official, community, or self-built) and needs it working inside Hermes, is migrating an `mcp.json`-style config from Claude Desktop/Cursor into Hermes, or is debugging why an MCP server's tools aren't showing up or a tool call is failing with what looks like an auth error.

2026-07-08
fastapi-endpoint-review
software-quality-assurance-analysts-and-testers

Reviews a new or modified FastAPI endpoint against production practices in four areas — Pydantic request/response validation, HTTP error handling, dependency injection, and OpenAPI documentation. Use when a user adds or changes a route (`@app.get`, `@router.post`, etc.) and asks for a review, a second opinion, or "is this endpoint ready to merge", or before approving a PR that touches a FastAPI `routers/`, `api/`, or `endpoints/` folder. Not for Flask/Django views — trigger only on `fastapi`/`APIRouter`/`Depends` imports.

2026-07-08
cursor-hermes-handoff
software-developers

Delega una tarea de refactor puntual entre Hermes Agent y Cursor usando un protocolo de archivos compartidos (task/result), sin depender de MCP ni ACP. Sirve como fallback ligero cuando no tienes un bridge en tiempo real instalado, o como primer paso antes de instalar uno.

2026-07-08
codex-hermes-delegate
software-developers

Delega desde Hermes una tarea de código puntual y acotada a Codex CLI (codex exec) sin cambiar el runtime completo de Hermes, y trae el resultado de vuelta para verificarlo e integrarlo a la memoria de Hermes.

2026-07-08
azure-hermes-deploy
network-and-computer-systems-administrators

Deploy Hermes Agent to Azure — either Azure Container Apps (ACA) or an Azure Linux VM — with persistent state volumes, secrets pulled from Key Vault instead of baked into the image, and the agent's isolated sandbox configured correctly for whichever target you pick. Use when a user wants to run Hermes on Azure specifically (not a generic VPS, not AWS/GCP) and asks about hosting, persistence, secrets, or sandboxing on ACA or an Azure VM.

2026-07-08
aws-vps-cost-check
network-and-computer-systems-administrators

Revisa la configuración de una instancia EC2 o Lightsail antes de desplegar Hermes Agent con el sandbox Docker — tipo de instancia adecuado para correr el daemon Docker más contenedores de sandbox, reglas de grupos de seguridad (security groups) y costo mensual estimado usando la AWS Pricing API real. Úsala cuando el usuario vaya a desplegar Hermes en AWS y pregunte cosas como "qué instancia EC2 necesito para Hermes", "esta instancia le va a alcanzar al sandbox Docker", "revisa mis security groups antes de desplegar" o "cuánto me va a costar esto al mes".

2026-07-08
hermes-ag-ui-bridge
web-and-digital-interface-designers

Propuesta de arquitectura para exponer el estado y las acciones de Hermes Agent (mensajes en streaming, tool calls, plan/todos) a un frontend custom vía AG-UI (Agent-User Interaction Protocol), el protocolo abierto de CopilotKit para conectar agentes a interfaces React/Angular. Úsala cuando quieras construir una UI propia (chat, dashboard, panel de control) sobre una instancia de Hermes en vez de un cliente de mensajería, cuando necesites que esa UI pueda declarar herramientas invocables por el agente y recibir el resultado de vuelta, o cuando quieras entender qué eventos internos de Hermes corresponden a qué eventos de AG-UI antes de escribir el adapter tú mismo.

2026-07-08