Help us improve
Share bugs, ideas, or general feedback.
From n8n-skills
Guides n8n workflow lifecycle from planning through testing and publishing. Covers visual layout (sticky notes), node naming, validation, and production handoff.
npx claudepluginhub n8n-io/skills --plugin n8n-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/n8n-skills:n8n-workflow-lifecycleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. **PLAN.** Gather requirements, ask clarifying questions, search for existing workflows / sub-workflows that already do this.
Routes to the correct n8n skill, summarizes MCP tools, and enforces cross-cutting rules for building n8n workflows. Loaded every session.
Creates, edits n8n workflows as TypeScript files with node docs access and n8nac CLI for workspace init, preventing param errors.
Provides proven architectural patterns for n8n workflows including webhook processing, HTTP API integration, database operations, AI agents, and scheduled tasks. Useful for high-level workflow design before node-by-node building.
Share bugs, ideas, or general feedback.
validate_workflow + get_workflow_details for connections, then have the user verify per-node credentials and create anything you couldn't (missing credentials, folders, etc).test_workflow with prepare_test_pin_data; iterate until output matches intent.publish_workflow only after stages 3 and 4 are clean.Skipping a stage produces workflows that look done but break in production, or solve the wrong problem entirely. Three most common skips:
test_workflow before the user has verified credentials per node hits the wrong service or 401s. Get the user-side setup done as part of VALIDATE.validate_workflow on the SDK code, then get_workflow_details after every create/update to check the connections object. Validation alone misses silently dropped wires.test_workflow auto-pins triggers, credentialed nodes, and HTTP Request nodes. Everything else (Code, Edit Fields, If, Wait, Execute Command, file ops, sub-workflow calls, Data Tables) runs for real. Ask the user before running if any of those would fire user-visible side effects. See references/TESTING.md.test_workflow + prepare_test_pin_data. See references/TESTING.md for mocking by trigger type, pinning individual nodes, and the side-effect surface. Looser for internal one-off scripts you watch run.description on create_workflow_from_code. 1-2 sentences capturing what and why. See "Readability" below.validate_workflow runs schema and shape checks: missing parameters, type errors, references to non-existent nodes. It does not catch:
.to()-inside-.add() connection trap (silent dropped wires)onError: 'continueErrorOutput'Validation is necessary but not sufficient. The real gate is:
validate_workflow passes.get_workflow_details returns a connections object that matches your intent (see n8n-connections and its VERIFICATION.md).test_workflow produces the right output on representative pinned data.Only then call publish_workflow.
For the full pre-publish checklist, see references/VALIDATION_CHECKLIST.md.
Bad names compound: a workflow that's hard to find six months from now gets duplicated.
For full conventions (verb-noun patterns, capitalization, prefixes), read references/NAMING_CONVENTIONS.md. Short version:
Send weekly customer report not Customer report sender.Fetch active customers not Postgres1.Subworkflow: for stateless reusable ones. Subworkflow: Parse RFC2822 date. The prefix is what search_workflows({ query }) matches on. See n8n-subworkflows references/NAMING_AND_DISCOVERY.md.For any workflow over ~5 nodes, three levers carry the readability load:
description: capture the why, including AI-derived context. Two sentences: what it does and why it exists. Most importantly, capture context you had during conversation that won't otherwise survive into the file (the constraint that drove the design, why this approach over the alternative, the user's reason for asking). Otherwise it dies with the chat.n8n-nodes-base.stickyNote node with markdown content (### Title on the first line, 1-3 sentences of body) and an integer color 1-7. Title each with the purpose ("Validate input" not "If, Set, If"). Pick a small palette and stick to it (e.g. gray/yellow for processing, red for errors, pink for TODOs); random colors communicate nothing.notes for non-obvious config. Explain why a workaround exists or a Code node does what it does. Don't annotate obvious nodes.Plus two notes:
search_workflows + get_workflow_details and mirror the sticky palette, naming, and description style.position values for non-sticky nodes are ignored. Stickies and naming are your readability levers.The MCP can place a workflow into a folder that already exists. It cannot:
If the user asks for a folder that doesn't exist, say so before building. Don't silently create at the project root and report success. Surface options:
For the full protocol including detecting existing folders via search_folders, read references/FOLDER_LIMITATIONS.md.
Each workflow has an availableInMCP flag. The default depends on who created it:
create_workflow_from_code) default to MCP-accessible. No toggle step needed: you can find them via search_workflows and operate on them right away.The #1 case where this bites: the user built a workflow manually in the UI and now wants you to inspect or edit it, but you can't see it. Before assuming it doesn't exist or you're searching the wrong project, ask the user to confirm MCP access is enabled.
Sub-workflows called via MCP: the caller can use them as code-level sub-workflows without the toggle. To invoke as MCP-exposed tools, the toggle is required (and is on by default for MCP-created sub-workflows).
For the full case-by-case guide and user-facing message, read references/MCP_ACCESS_PER_WORKFLOW.md.
There are things the user has to do that you can't, and they need to be done before testing, otherwise the test fires against the wrong credential, hits a missing folder, or 401s. Surface these as a short list during VALIDATE, before TEST:
newCredential('Label') is cosmetic. n8n auto-assigns the most recently edited credential of the right type, which silently picks the wrong one when the user has multiples (prod vs staging Gmail, two API keys). Tell them: "open every node that uses a credential and confirm the right one is selected." See n8n-credentials-and-security non-negotiable #2.references/FOLDER_LIMITATIONS.md.references/MCP_ACCESS_PER_WORKFLOW.md.Don't proceed to TEST until these are confirmed done.
After publish_workflow and a clean test, the workflow is technically live, but the user still needs enough context to actually use it in production. Treat this like the freelancer-to-customer handoff: short, structured, and oriented toward how they'll operate it from here.
What to include:
customers table," "responds JSON to the caller," "fires the on-call Slack channel."curl -X POST <url> -d '{...}'," "trigger manually from the UI," "wait until 09:00 UTC for the first scheduled run."Keep it tight: half a dozen bullets, not a wall of text. The user shouldn't have to ask "ok, what now?"
| File | Read when |
|---|---|
references/NAMING_CONVENTIONS.md | Naming a new workflow, sub-workflow, or node |
references/FOLDER_LIMITATIONS.md | User mentions a folder, project structure, or wants workflows organized |
references/MCP_ACCESS_PER_WORKFLOW.md | Building a workflow that you or another agent will call via MCP |
references/VALIDATION_CHECKLIST.md | Just finished a workflow and about to call publish_workflow |
references/REVIEW_CHECKLIST.md | Reviewing or auditing an existing workflow (any age, any author). Severity-tiered findings, distinct from the pre-publish validation checklist |
references/TESTING.md | About to run test_workflow or execute_workflow, mocking trigger input, side-effect protocol |
| Anti-pattern | What goes wrong | Fix |
|---|---|---|
Calling publish_workflow without validating | Broken workflows reach production | Validate, verify connections, then test |
Skipping get_workflow_details after create | Silent connection bugs ship | Always pull the workflow back. See n8n-connections |
| Creating workflows at root because the requested folder doesn't exist | Workflows get lost, and the user has to drag them manually | Surface the limitation before building |
Generic node names (HTTP Request1, Set2) | Workflows are unreadable a month later | Rename to describe the action |
Missing description on create_workflow_from_code | Workflow invisible in search, no context for maintainers | Always include 1-2 sentences |
| Asking the user to flip the MCP access toggle on a workflow you created via the MCP | Wastes their time, agent-created workflows default to MCP-accessible | Only mention the toggle for UI-created workflows, or when the user wants to revoke MCP access on an agent-created one |
Running test_workflow on a workflow with side-effecty non-pinned downstreams without asking | Real Data Table write, real sub-workflow side effects, real Execute Command output, etc. Triggers + credentialed nodes + HTTP get pinned, nothing else does | Ask first. See references/TESTING.md. |
| No sticky notes on a 15-node workflow | Reader has to read every node to find what they want | Add stickies per logical section. See "Readability" above |
| Sticky titled "Set, If, Set" or sticky-of-every-color | Re-states what's visible / color becomes pure noise | Title with the purpose; one color per category |
description: "Sends Slack." | Adds nothing visible from the trigger and Slack node | Include why + AI-derived context: "Sends weekly summary to founders. Replaces manual report that kept getting skipped." |
| Designing fan-out branches as if they execute concurrently | n8n runs fan-out branches sequentially, top-to-bottom by Y-position. Total runtime is the sum of branches, not the max | For real concurrency, dispatch via Execute Workflow with mode: 'each' + waitForSubWorkflow: false. See n8n-subworkflows "Fire-and-forget parallelization" |