From f653c0d9a9655e9ad81e601e2a4e1f6947cac6d6 Mon Sep 17 00:00:00 2001
From: Oliver
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.