deploy
25Skill Claude CodeCodex
Push a local .workflow.ts to n8n, verify remote state, and live-test (test URL by default; --activate --prod runs production test). Side-effecting — only invoked explicitly via /deploy.
Skill Claude CodeCodex
Push a local .workflow.ts to n8n, verify remote state, and live-test (test URL by default; --activate --prod runs production test). Side-effecting — only invoked explicitly via /deploy.
Skill Claude CodeCodex
Review the current n8n-autopilot session for learnings (operational friction + workflow design anti-patterns), strip all PII, and push the redacted insights centrally via the plugin's ingest webhook (they land as batch comments on the public rollup issue). Side-effecting on sync/review-push — shows the redacted result…
Skill Claude CodeCodex
Search credentials on the active n8n instance by name pattern, scoped to a project. Use whenever the user asks "find credential X", "which credential is …", "list Dropbox/OpenAI/etc. credentials", or before referencing a credential ID in a workflow. Default scope = workspace-pinned project. Returns id, type, project…
Skill Claude CodeCodex
List all n8n projects visible on the active instance, showing which one the workspace is pinned to. Use whenever the user asks "which projects exist", "list n8n projects", "show projects on instance", or before pinning a workspace to a different project. Derives projects from credential list + workspace status — works…
Skill Claude CodeCodex
Bootstrap a new n8n workflow repo from scratch. Scaffolds directory structure, writes plugin-compatible CLAUDE.md/README/.gitignore/.env.example, runs the n8nac >= 2.3 setup flow (env add + env auth set + env use), pulls node schemas, and verifies setup. Use when starting a new customer/project n8n repo.
Skill Claude CodeCodex
Read-only inventory of local n8n workflows — aggregates node-type usage, LLM models, credentials, and trigger types into docs/INVENTORY.md. Use when planning new workflows, auditing instance consistency, or onboarding to an existing n8n project.
Skill Claude CodeCodex
Pull every remote-only n8n workflow into the local repo so it mirrors the instance, via a deterministic JS Workflow (discover remote-only → fan-out pull → verify). Establishes and refreshes the local-first invariant that /n8n-autopilot:build-workflow-v2's edit flow relies on. Auto-triggered by the SessionStart drift…
Skill Claude CodeCodex
Write JavaScript code in n8n Code nodes. Use when writing JavaScript in n8n, using $input/$json/$node syntax, making HTTP requests with $helpers, working with dates using DateTime, troubleshooting Code node errors, or choosing between Code node modes.
Skill Claude CodeCodex
Write Python code in n8n Code nodes. Use when writing Python in n8n, using input/json/node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.
Skill Claude CodeCodex
Fan-out / fan-in, parallel sub-workflow execution, and batch-orchestrator patterns in n8n. Use when a workflow processes a LIST in parallel, calls sub-workflows, needs faster wall-clock on many items, has a webhook that would otherwise block for minutes, or asks "how do I run sub-workflows in parallel / fan out / fan…
Skill Claude CodeCodex
Extract or classify structured data from text/documents with an LLM in n8n using a real JSON schema. Use when a workflow needs structured fields out of unstructured input (invoice/contract/email extraction, classification), when deciding between an AI Agent and a dedicated extractor node, or when LLM JSON output is…
Skill Claude CodeCodex
Curated "user intent → exact command" mapping for the n8nac CLI. Use this BEFORE reading n8nac-reference or running --help. Covers the 60+ common workflows — lookup, deploy, test, debug, migrate, credentials, projects, environments. If your task matches a row here, run the linked command verbatim — no flag fishing.
Skill Claude CodeCodex
Authoritative reference for every n8nac CLI command, subcommand, and flag (n8nac 2.4.0). Use this BEFORE running --help interactively, BEFORE guessing flags, and BEFORE inventing a subcommand. If a command does not appear in this file, it does not exist — research stops, do not invent CLI surface. Covers workspace…
Skill Claude CodeCodex
The ONLY supported way to test changes to the n8n-autopilot plugin itself: commit → push to the private repo → install FROM that repo → restart → verify registration. Use whenever a plugin change (agent, skill, hook, script) must be exercised in a real session. Hard rule: no cache hand-copying, no directory-pointer…
Skill Claude CodeCodex
Pull/update n8n node schemas for offline validation. Discovers node types from local workflows, fetches each via npx n8nac skills node-info, falls back to direct npm-package extraction for nodes n8nac does not index, then rebuilds schemas/index.json. Run when schemas are stale, when validation reports "unknown node…
Skill Claude CodeCodex
Explain and verify how a Claude session pins itself (and all its n8nac workflow/instance commands) to exactly ONE n8n environment without clobbering other sessions' global active env. Use when the user asks "which env am I on", "how does session env pinning work", "pin this session to env X", "why was my env command…
Skill Claude CodeCodex
Guided interview that turns a rough idea into a PRP-style use-case description ready for /n8n-autopilot:build-stack-v2. Classic question-by-question format aimed at people NOT yet experienced with n8n — it asks about overall inputs, outputs, a concrete worked example, expected behavior, external systems, volume, and…
Skill Claude CodeCodex
Sync credential IDs from the live n8n instance. Two modes — list (default) reports IDs + TypeScript snippets, fix-workflows rewrites stale credential IDs in local .workflow.ts files by joining on credential name. Use after n8n migration, when setting up a new instance, or in response to a credential-freshness…
Skill Claude CodeCodex
Test a non-HTTP-trigger workflow (schedule, manual, errorTrigger) that n8nac cannot fire from the CLI. Resolves the n8n UI URL, waits for you to run it and report the execution-id, then inspects the run. Read-only against the instance.