n8n-workflow-testing-fundamentals

n8n-workflow-testing-fundamentals is a skill for Claude Code from summarybotng/summarybot-ng. It costs 45 tokens per session (2,863 once invoked), scanned A, original, MIT.

A guide to testing n8n workflows, which are automated sequences of connected steps. It checks triggers, node connections, data flow, transformations, errors, credentials, and execution performance.

In plain words
What is it for?
Use it when creating, changing, debugging, or preparing n8n workflows for deployment.
Why use it?
A workflow may look correctly connected while passing the wrong data, missing an execution path, or failing without a useful recovery route.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it when creating, changing, debugging, or preparing n8n workflows for deployment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals
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 summarybotng/summarybot-ng --skill n8n-workflow-testing-fundamentals
Clone the repo
git clone --depth 1 https://github.com/summarybotng/summarybot-ng

Made for: Claude Code.

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-workflow-testing-fundamentals

README.md
[![agentmods](https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals/github.svg)](https://agentmods.dev/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals)
Your own site
<a href="https://agentmods.dev/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals"><img src="https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals/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-workflow-testing-fundamentals

Your own site · 80×15
<a href="https://agentmods.dev/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals"><img src="https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/n8n-workflow-testing-fundamentals.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,863 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.
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.00045 $0.02863
Opus 5 $0.00023 $0.01432
Sonnet 5 $0.00009 $0.00573
Haiku 4.5 $0.00005 $0.00286

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

Security

Grade A, and why

n8n-workflow-testing-fundamentals 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 5d 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.

.claude/skills/n8n-workflow-testing-fundamentals/SKILL.md · 454 lines

How it starts

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

n8n Workflow Testing Fundamentals

<default_to_action> When testing n8n workflows:

  1. VALIDATE workflow structure before execution
  2. TEST with realistic test data
  3. VERIFY node-to-node data flow
  4. CHECK error handling paths
  5. MEASURE execution performance

Quick n8n Testing Checklist:

  • All nodes properly connected (no orphans)
  • Trigger node correctly configured
  • Data mappings between nodes valid
  • Error workflows defined
  • Credentials properly referenced

Critical Success Factors:

  • Test each execution path separately
  • Validate data transformations at each node
  • Check retry and error handling behavior
  • Verify integrations with external services </default_to_action>

Quick Reference Card

When to Use

  • Testing new n8n workflows
  • Validating workflow changes
  • Debugging failed executions
  • Performance optimization
  • Pre-deployment validation

n8n Workflow Components

Component Purpose Testing Focus
Trigger Starts workflow Reliable activation, payload handling
Action Nodes Process data Configuration, data mapping
Logic Nodes Control flow Conditional routing, branches
Integration Nodes External APIs Auth, rate limits, errors
Error Workflow Handle failures Recovery, notifications

Workflow Execution States

State Meaning Test Action
running Currently executing Monitor progress
success Completed successfully Validate outputs
failed Execution failed Analyze error
waiting Waiting for trigger Test trigger mechanism

Workflow Structure Validation

// Validate workflow structure before execution
async function validateWorkflowStructure(workflowId: string) {
  const workflow = await getWorkflow(workflowId);

  // Check for trigger node
  const triggerNode = workflow.nodes.find(n =>
    n.type.includes('trigger') || n.type.includes('webhook')
  );
  if (!triggerNode) {
    throw new Error('Workflow must have a trigger node');
  }

  // Check for orphan nodes (no connections)
  const connectedNodes = new Set();
  for (const [source, targets] of Object.entries(workflow.connections)) {
    connectedNodes.add(source);
    for (const outputs of Object.values(targets)) {
      for (const connections of outputs) {
        for (const conn of connections) {
          connectedNodes.add(conn.node);
        }
      }
    }
  }

  const orphans = workflow.nodes.filter(n => !connectedNodes.has(n.name));
  if (orphans.length > 0) {
    console.warn('Orphan nodes detected:', orphans.map(n => n.name));
  }

  // Validate credentials
  for (const node of workflow.nodes) {
    if (node.credentials) {
      for (const [type, ref] of Object.entries(node.credentials)) {
        if (!await credentialExists(ref.id)) {
          throw new Error(`Missing credential: ${type} for node ${node.name}`);
        }
      }
    }
  }

  return { valid: true, orphans, triggerNode };
}

Read the full file on GitHub · 454 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 454 lines · 45 tokens per session scan A 67440b39c7a1

Subscribe to this mod's changes

n8n-workflow-testing-fundamentals is a skill published in the GitHub repository summarybotng/summarybot-ng (2 stars, last pushed 3mo ago), licensed MIT. It adds 45 tokens to every session and 2,863 once invoked, about $0.0002 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

agent-builder

Load before calling build-agent for a new or existing n8n Agent. Governs prerequisite creation, faithful handoff of the user's request, agent targeting across turns, builder questions, testing, and publishing. Use directly for routine follow-ups when the conversation already targets an Agent; rerun intent-recognition…

n8n-io/n8n · 73 tokens

config-evals

Builds and maintains configuration-based evaluations on a workflow with the eval-config tool. Use when the user asks to set up, add, view, change, or remove an evaluation, score, grade, or judge a workflow's output, or measure answer quality against a test dataset. This is the only eval form Instance AI handles — it…

n8n-io/n8n · 80 tokens

credential-setup-with-computer-use

Guides n8n credential setup through Computer Use browser tools. Use when a user needs OAuth apps, API keys, client IDs, client secrets, or other credential values from an external service console.

n8n-io/n8n · 48 tokens

n8n-docs-assistant

Answers n8n product, setup, credential, node, hosting, API, and usage questions from current n8n docs. Load n8n-docs via loadtool before calling it (search "n8n docs" if not visible). Use when the user asks how to configure, set up, troubleshoot, or understand n8n behavior, especially credential setup questions opened…

n8n-io/n8n · 89 tokens

n8n-workflows

Use when n8n workflow automation — nodes, triggers, expressions, credentials, webhooks, error handling. Use when working with n8n workflows.

oyi77/1ai-skills · 37 tokens

test-workflow

Universal n8n workflow testing via webhook or sub-workflow pattern.

anatolykoptev/n8n-mcp-agent · 17 tokens