n8n is the most widely used open-source workflow automation platform, and its official skill repository on GitHub (n8n-io/skills) contains 13 expert skills covering the full workflow lifecycle — expressions, sub-workflows, error handling, AI agents, Data Tables, loops, and more. This speed run shows you how to load those skills into your Hermes Agent, connect it to your n8n instance, and have your agent build, validate, and manage automation workflows.
No coding, no plugins to build — just clone the repo, point your agent at the skills, and paste your n8n instance credentials via the dashboard. To follow along, grab a free trial at derez.ai and make sure you have an n8n instance running (any plan, Cloud or self-hosted).
Before you start, make sure you have your n8n instance credentials ready:
https://n8n.your-instance.com/n8n_api_2a3b4c5d6e7f8g9h0i1jYou configure two prompts on the agent's dashboard at app.derez.ai. The first connects your agent to the n8n API and loads the official skill set. The second asks for real work.
https://www.focus.de/ and an AI Agent node that summarizes the first article. Use the official n8n skills from n8n-io/skills — load n8n-workflow-lifecycle, n8n-agents, and n8n-node-configuration before you start building. Validate the workflow with validate_workflow, then check the connections object with get_workflow_details. Show me the final node configuration.
The first prompt authenticates using the credentials you entered in the dashboard integration settings. The second prompt then has your agent build a simple hello world n8n workflow — read the latest headlines from focus.de and summarize them with an AI Agent node. Two nodes, one workflow, real output.
In under 10 minutes you connected your Hermes Agent to n8n and loaded the 13 official n8n skills — giving your agent expert-level knowledge of workflow lifecycle, sub-workflow reuse, expression syntax, error handling, credential security, and AI agent patterns. Your agent now builds n8n workflows that follow the same standards the n8n team ships internally.
The same approach works for any of the 13 skills: have your agent load n8n-subworkflows when you need reusable patterns, n8n-agents when building LangChain agents in n8n, or n8n-debugging when a workflow breaks. The skill repository is the authoritative reference — your agent reads the actual rules every time.
hermes skill import from the skills directory to register them as local skills. Your agent then loads them automatically when you mention n8n, without needing to reference the GitHub URL each time.
Use coupon code BLOG950 at checkout to get your first month free — zero risk, full access.
Deploy your n8n-connected agent now.
Copy this entire prompt into any Hermes agent (derez.ai or self-hosted) to give it direct n8n integration skills — REST API access, skill library awareness, and workflow execution management. Replace the API key with your own n8n instance key.
N8N_URL=https://n8n.derez.ai/N8N_API_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhOTY0NDQ1Ni1hZGUxLTRlZjUtYmE0NC03MjRiZjhhY2JmNGUiLCJpc3MiOiJuOG4iLCJhdWQiOiJwdWJsaWMtYXBpIiwianRpIjoiZTExMTY3YjUtMGU1Yy00MTNhLWI0YzAtNGU5MGYyODFiMzk2IiwiaWF0IjoxNzgxNzcyNzE3LCJleHAiOjE3ODIzNTY0MDB9.g-SG9u7g9sD0lhD6fr6PZKcBs38Eq3p14Yf8yiPXO-Uhttps://github.com/n8n-io/skillsif [ ! -d /tmp/n8n-skills ]; then
git clone --depth 1 https://github.com/n8n-io/skills /tmp/n8n-skills
else
cd /tmp/n8n-skills && git pull --ff-only
fi{N8N_URL}/rest/... with the header:X-N8N-API-KEY: {N8N_API_KEY}{N8N_URL}/api/v1/openapi.json — fetch it if you need to discover available endpoints.curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/workflows'curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/workflows/<id>'curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/executions'curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/credentials'curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/tags'curl -s -X POST '{N8N_URL}/rest/workflows/<id>/run' \
-H 'X-N8N-API-KEY: {key}' \
-H 'Content-Type: application/json' \
-d '{"data": <input_data>}'curl -s -X POST '{N8N_URL}/rest/workflows' \
-H 'X-N8N-API-KEY: {key}' \
-H 'Content-Type: application/json' \
-d '{"name": "<skill-name>", "nodes": [...], "connections": {...}}'curl -s -H 'X-N8N-API-KEY: {key}' '{N8N_URL}/rest/executions/<id>' | jq '.data'## <short title> (<date>)
Goal: <one sentence>
Skill used: <skill path in the library>
Key commands: <the curl | jq pipelines that worked>
Gotchas: <anything non-obvious>derez.ai — Deploy your AI agent in 10 Minutes.