n8n-automation-expert

n8n-automation-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 66 tokens per session (874 once invoked), scanned A, original, MIT.

A guide to connecting services into automated workflows with n8n, Zapier, or Make, including webhooks, custom code, databases, APIs, and AI steps.

In plain words
What is it for?
Use it to build self-hosted n8n workflows, create custom nodes, connect applications and databases, receive webhooks, and add AI-powered steps.
Why use it?
It replaces repetitive manual handoffs between services with workflows that can start from events, call other systems, and handle failures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build self-hosted n8n workflows, create custom nodes, connect applications and databases, receive webhooks, and add AI-powered steps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/n8n-automation-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill n8n-automation-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for n8n-automation-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/n8n-automation-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/n8n-automation-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/n8n-automation-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/n8n-automation-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for n8n-automation-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/n8n-automation-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/n8n-automation-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 874 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.00874
Opus 5 $0.00033 $0.00437
Sonnet 5 $0.00013 $0.00175
Haiku 4.5 $0.00007 $0.00087

Measured 7d ago against content hash 5c0085f0ec7a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

n8n-automation-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/n8n-automation-expert/SKILL.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workflow Automation Expert (2026 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

  • cron-scheduler-expert: Scheduled triggers for automation workflows.
  • ai-llm-integration-expert: AI-powered automation steps and LLM chains.
  • email-notification-expert: Email triggers and notification actions.
  • webhook-receiver: Webhook endpoints as automation triggers.

Description

Expert guide for building automation workflows with n8n (self-hosted, open-source), Zapier, and Make (Integromat). Covers workflow design, custom n8n nodes, webhook triggers, AI chains within workflows, error handling, credential management, and integration patterns with databases, APIs, and messaging platforms.

Trigger Conditions

  • Building automated workflows connecting multiple services.
  • Setting up n8n for self-hosted automation.
  • Creating AI-powered automation pipelines.
  • Integrating no-code/low-code automation with custom applications.

Platform Selection

Platform Hosting Custom Code AI Support Pricing Best For
n8n Self-hosted/Cloud ✅ Full ✅ AI nodes Free (self) Developers, privacy
Zapier Cloud only Limited ✅ AI actions $29+/mo Non-technical teams
Make Cloud only ✅ Modules ✅ AI modules $10+/mo Visual workflows

Recommendation: Use n8n for developer teams needing full control and self-hosting. Use Zapier for simple integrations by non-technical users.

n8n Core Patterns

// Custom n8n node — AI Content Processor
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';

export class AiContentProcessor implements INodeType {
  description: INodeTypeDescription = {
    displayName: 'AI Content Processor',
    name: 'aiContentProcessor',
    group: ['transform'],
    version: 1,
    inputs: ['main'],
    outputs: ['main'],
    properties: [
      { displayName: 'Prompt Template', name: 'prompt', type: 'string', default: '' },
      { displayName: 'Model', name: 'model', type: 'options', options: [
        { name: 'GPT-4o', value: 'gpt-4o' },
        { name: 'Claude 4 Sonnet', value: 'claude-4-sonnet' },
      ], default: 'gpt-4o' },
    ],
  };

  async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
    const items = this.getInputData();
    const prompt = this.getNodeParameter('prompt', 0) as string;
    // Process each item with AI...
    return [items];
  }
}

Read the full file on GitHub · 90 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 90 lines · 66 tokens per session scan A 5c0085f0ec7a

Subscribe to this mod's changes

n8n-automation-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed yesterday), licensed MIT. It adds 66 tokens to every session and 874 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

implement-improvements

Validate improvements from .turbo/improvements.md, recommend a working set tailored to what's in the backlog, and run one lane: direct fixes, investigation, or planned work. One lane per session. Use when the user asks to "implement improvements", "work on improvements", "address improvements", "process improvement…

tobihagemann/turbo · 79 tokens

note-improvement

Capture an out-of-scope improvement opportunity so it doesn't get lost. Use when the user asks to "note improvement", "save improvement", "track this for later", "remember this improvement", "note this idea", "log improvement", "backlog this", or "park this idea". Also invoke proactively when noticing something…

tobihagemann/turbo · 107 tokens

create-issue

Create a GitHub issue with a drafted title and body. Use when the user asks to "create an issue", "file an issue", "open an issue", "submit an issue", "report a bug", "file a bug report", "file a feature request", or "file a design proposal".

tobihagemann/turbo · 66 tokens

pick-next-issue

Fetch and rank open GitHub issues by community engagement, present the top 3 candidates, and plan implementation for the selected issue. Use when the user asks to "pick next issue", "next issue", "which issue should I work on", "top issues", "most popular issues", "prioritize issues", or "what should I work on next".

tobihagemann/turbo · 77 tokens

produck-feedback

Use when acting on real user feedback — you have a Produck feedback ticket or URL, or the user wants to fix something users complained about or build a feature users asked for. Pulls full feedback context through the Produck MCP and drives a feedback → aligned PRD → build loop. Triggers on "fix what users reported", a…

tryproduck/produck-skills · 90 tokens

split-and-ship

Execute an approved split plan, shipping each change group separately as its own branch and PR or as sequential commits on the current branch. Use when the user asks to "split and ship", "ship the split plan", "create separate PRs", or "split changes into branches".

tobihagemann/turbo · 61 tokens