mit einem Klick
my-workflow
Guides users through creating effective Agent Skills. Use when you want to create, write, or author a new skill, or asks about skill structure, best practices, or SKILL.md format.
Menü
Guides users through creating effective Agent Skills. Use when you want to create, write, or author a new skill, or asks about skill structure, best practices, or SKILL.md format.
ONLY for coordinated multi-artifact work: multiple workflows with dependencies, shared data-table schema/migration across tasks, or the user explicitly asked to review a plan first. Do NOT use for new one-off workflows, single-workflow edits, verification-only requests, or standalone data-table ops — use workflow-builder or data-table-manager instead.
Default path for all single-workflow work: new one-off workflows, existing- workflow edits, verification repairs, and workflow-local data tables. Use build-workflow directly — do not load planning or create-tasks first. Load planning only when multiple coordinated workflows or shared cross-task data tables require a dependency-aware task graph.
Designs and manages n8n Data Tables directly with the data-tables and parse-file tools. Use when the user asks to list, show, create, inspect, import, seed, query, update, clean up, rename columns in, or delete data tables and rows, especially from CSV/XLSX/JSON attachments, and before building or planning workflows that create or write to Data Tables.
Debug failed or wrong-output workflow executions using executions tools. Load when the user reports execution failures, unexpected node output, or empty parameter values after a successful run.
Handles system follow-up turns: planned-task-follow-up (synthesize, replan, build-workflow, checkpoint), background-task-completed, running-tasks context, create-tasks silence rules, and detached delegate completion. Load whenever any of these tags appear or after spawning create-tasks or delegate.
Handles workflow verification and setup after build-workflow succeeds, or when the message contains workflow-verification-follow-up or workflow-setup-required. Load after direct builds, when verificationReadiness requires action, or on orchestrator verify/setup follow-up turns.
| name | n8n:create-skill |
| description | Guides users through creating effective Agent Skills. Use when you want to create, write, or author a new skill, or asks about skill structure, best practices, or SKILL.md format. |
Skills are markdown (plus optional scripts) that teach the agent a focused workflow. Keep SKILL.md short—the context window is shared with chat, code, and other skills.
| Location | When to use |
|---|---|
.claude/plugins/n8n/skills/<name>/ | Default for n8n: team-shared, versioned, namespaced under n8n:. |
~/.claude/skills/<name>/ | Personal skill for Claude Code across all projects. |
~/.cursor/skills/<name>/ | Optional personal skill for Cursor only, global to your machine. |
Do not put custom skills in ~/.cursor/skills-cursor/—that is reserved for Cursor’s built-in skills.
Prefer plugin .claude/plugins/n8n/skills/ for anything that should match how the rest of the team works.
Ask (or infer) briefly:
.claude/plugins/n8n/skills/ if one fits.Ask the user in plain language when you need more detail.
skill-name/
├── SKILL.md # required
├── reference.md # optional — detail the agent reads only if needed
├── examples.md # optional
└── scripts/ # optional
---
name: skill-name # lowercase, hyphens, max 64 chars
description: >- # max 1024 chars, non-empty — see below
...
---
Description (discovery is everything — third person, WHAT + WHEN, trigger words):
Extracts tables from PDFs and fills forms. Use when the user works with PDFs, forms, or document extraction.Helps with documents or I can help you with PDFsSKILL.md; long reference in reference.md. Link one level deep from SKILL.md.scripts/foo.py).Rough size: aim for well under ~200 lines in SKILL.md; if it grows, split detail out.
SKILL.md; avoid pasting full child content into the parent.gh for PRs/issues, pnpm scripts from AGENTS.md.gh, or “ask the user to paste …”) when it is missing.n8n:create-issue) so the agent resolves the plugin skill. For human-readable links, give the path from the repo root (e.g. .claude/plugins/n8n/skills/create-issue/SKILL.md). From a sibling folder, a relative link works too: [create-issue](../create-issue/SKILL.md). Parent skills should delegate steps instead of duplicating long procedures.- [ ] steps for multi-step work.SKILL.md first; add reference.md / scripts/ only if they save tokens or reduce errors.helper, utils).---
name: my-workflow
description: Does X using project convention Y. Use when the user asks for X or mentions Z.
---
# My workflow
1. …
2. …
## Output format
Use a fenced code block for the exact shape reviewers should see.
## More detail
See [reference.md](reference.md) if edge cases matter.