Agent skill · Backend & API

n8n-workflows

n8n otomasyon workflow'lari. Webhook, cron trigger, API entegrasyon, CI/CD otomasyon.

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill n8n-workflows --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/n8n-workflows/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# n8n Workflows ## n8n MCP Server Kurulumu ### NPM Kurulum ```bash npm install -g n8n n8n start # http://localhost:5678 ``` ### Docker Kurulum ```bash docker run -d \ --name n8n \ -p 5678:5678 \ -v n8n_data:/home/node/.n8n \ -e N8N_BASIC_AUTH_ACTIVE=true \ -e N8N_BASIC_AUTH_USER=admin \ -e N8N_BASIC_AUTH_PASSWORD=<strong-password> \ n8nio/n8n ``` ### MCP Server Config ```json { "mcpServers": { "n8n": { "command": "npx", "args": ["-y", "@anthropic/n8n-mcp-server"], "env": { "N8N_API_URL": "http://localhost:5678/api/v1", "N8N_API_KEY": "<n8n-api-key>" } } } } ``` ### API Key Olusturma ``` n8n UI > Settings > API > Create API Key Scope: workflow:read, workflow:write, execution:read ``` ## Workflow Olusturma ### Temel Yapi ```json { "name": "My Workflow", "nodes": [ { "name": "Trigger", "type": "n8n-nodes-base.webhook", "position": [250, 300], "parameters": { "path": "my-webhook", "httpMethod": "POST" } }, { "name": "Process", "type": "n8n-nodes-base.function", "position": [450, 300], "parameters": { "functionCode": "return items.map(item => ({ json: { processed: true, ...item.json } }));" } } ], "connections": { "Trigger": { "main": [[{ "node": "Process", "type": "main", "index": 0 }]

What's inside
Steps it walks through
  1. n8n MCP Server Kurulumu
  2. NPM Kurulum
  3. Docker Kurulum
  4. MCP Server Config
  5. API Key Olusturma
  6. Workflow Olusturma
  7. Temel Yapi
  8. MCP ile Workflow Olustur
  9. Workflow Listele
  10. Workflow Calistir
  11. Trigger Tipleri
  12. Webhook Trigger
  13. Cron Trigger
  14. Event Trigger'lar
Commands it runs
npm install -g n8n
n8n start  # http://localhost:5678
docker run -d \
n8nio/n8n
Webhook ile tetikle
curl -X POST http://localhost:5678/webhook/my-workflow \
API ile tetikle
curl -X POST http://localhost:5678/api/v1/workflows/123/execute \
Export (backup)
curl -s http://localhost:5678/api/v1/workflows \
More from vibecosystem
All skills →
About this skill
What does the n8n-workflows skill do?

n8n otomasyon workflow'lari. Webhook, cron trigger, API entegrasyon, CI/CD otomasyon.

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill n8n-workflows --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going