Plugin Claude Code
Claude Code plugin that turns natural-language prompts into validated, deployed n8n workflows via the n8nac CLI.
Plugin Claude Code
Claude Code plugin that turns natural-language prompts into validated, deployed n8n workflows via the n8nac CLI.
Plugin Claude Code
Claude Code plugin for building, validating, and deploying n8n workflows. Wraps the n8nac CLI (reference 2.4.0) and delegates schema research to the companion plugin n8n-as-code by Etienne Lescot.
Instructions file
Instructions for neurawork-git/n8n-autopilot, covering n8n workflow development — n8n-autopilot plugin, knowledge skills — read before inventing cli surface, cheat-sheet — user asks x → run y, hook gates (enforced by pretooluse) and setup.
Agent
Maintainer-side triage of the open feedback-labelled issues on the public plugin repo (one issue per finding, created by the ingest webhook). Dedups issues that describe the same underlying problem (closes duplicates with a cross-reference), tightens titles, adds severity/priority context as a comment, and produces a…
Agent
Writes or edits an n8n Decorator-TS .workflow.ts file from verified node contracts, or fixes a file from validation/wiring errors. The only file-writing agent in the build-workflow-v2 pipeline. Never validates or pushes — the orchestrator gates that.
Agent
Pulls an existing n8n workflow from the instance (or reads the local file) and returns a structured summary of its current shape — trigger, nodes, links, credentials, workflow id, sync status — plus where a requested change should apply. Read-only. Used as the comprehension phase of the build-workflow-v2 EDIT flow…
Agent
Drift-aware deploy gate — checks remote sync status, then runs npx n8nac push --verify. Never bypasses the push-gate hook, never runs resolve. Reports pushed/verified/workflowId/driftStatus. Used as the hard Deploy gate in build-workflow-v2 (greenfield + edit).
Agent
Keeps the local repo a complete mirror of the instance's workflows. Discovers remote workflows missing locally (list --json, remote-only status) and pulls them (pull ). Read-only on files (the n8nac CLI writes the pulled .workflow.ts). Used by the mirror-sync workflow that enforces the local-first invariant the edit…
Agent
Produces the VERIFIED parameter contract for a single n8n node type by reading its real schema via npx n8nac skills node-info --json. Adversarial — omits any param key it is not certain exists, because n8n silently ignores wrong keys at runtime. Read-only. Used in the Research fan-out of build-workflow-v2 to kill the.
Agent
Plans an n8n workflow before authoring — resolves the active sync folder, does the mandatory community-template lookup, discovers exact node types, classifies the trigger, and proposes test data. Read-only (no file writes). Used as the Research phase of the JS-orchestrated build-workflow-v2 pipeline.
Agent
Decomposes a PRP-style end-to-end use case into a stack of sub-workflows along known decomposition rules, fixes the handover contracts between them, and (in EXTEND mode) plans the delta against an already-comprehended stack. Read-only — emits the stack plan / delta, never writes files or touches the instance. Used as…
Agent
Reconstructs the real call-graph (DAG) of an existing workflow stack from executeWorkflow references in the local mirror, reconciles it against the central architecture doc (or reverse-engineers one if absent), and reports the current stack shape so the architect can plan a delta. Read-only — assumes the local repo…
Agent
Run the test-phase n8nac commands the orchestrator asks for and map the real output to the requested schema. You do not edit files.
Agent
Runs the local n8n workflow validation gate — npx n8nac skills validate --strict --json — and maps the result to a pass/fail + error list. Read-only, never fixes. Used as the hard Validate gate in build-workflow-v2.
Agent
Code review and error diagnosis for n8nac Decorator-TS workflow files. Use after writing or modifying .workflow.ts files to catch issues before pushing. Run in background for non-blocking reviews.
Hook
Runs when a session starts, executing report-session-env.sh, setup-check.sh, check-schema-versions.sh, check-credential-freshness.sh, check-mirror-drift.sh, check-workspace-migration.sh, check-feedback-pending.sh and check-plugin-version.sh via bash with --quiet (8 commands). From neurawork-git/n8n-autopilot.
Hook
Runs when a session ends, executing capture-feedback.sh via bash. From neurawork-git/n8n-autopilot.
Hook
Runs when the agent finishes a response, executing suggest-feedback.sh via bash. From neurawork-git/n8n-autopilot.
Hook
Runs before the agent uses a tool for Bash tool calls, executing enforce-env.sh, push-gate.sh and ensure-mcp-trigger-setting.sh (4 commands). From neurawork-git/n8n-autopilot.
Skill Claude CodeCodex
EXPERIMENTAL deterministic builder for a whole n8n workflow STACK (multiple sub-workflows wired via Execute Workflow), JS-orchestrated. Takes a PRP-style end-to-end use case, decomposes it into sub-workflows along known rules, fixes the handover contracts between them, documents the architecture (mermaid) in one…
Skill Claude CodeCodex
EXPERIMENTAL deterministic variant of build-workflow + deploy, JS-orchestrated. Two modes: GREENFIELD (new workflow) and EDIT (change an existing one). Phase ordering, gate-checks (validate / drift-safe push --verify), and fix-loop limits are enforced by a Claude Code JS Workflow script instead of prose — gates become…
Skill Claude CodeCodex
Full 3-phase pipeline (Research → Write+Validate → Deploy+Test) for shipping an n8n workflow end-to-end. Wraps Etienne's n8n-as-code:n8n-architect skill for schema research + authoring, adds repo-scoped orchestration — community-template lookup, validate-push-test loop, mcpTrigger publish gate, execution inspection…
Skill Claude CodeCodex
Verify n8n-autopilot setup is functional — n8nac CLI present, workspace bound, n8n API reachable, companion plugin n8n-as-code@n8nac-marketplace enabled. Use after setup, after upgrading the plugin, or when commands behave unexpectedly.
Skill Claude CodeCodex
Manage n8n DataTables (CRUD on tables, columns, rows) via the n8n public REST API. Use when the user wants to create/seed/list/delete data-table resources outside of a workflow — n8nac CLI does not support this. Curl is explicitly allowed for /api/v1/data-tables (carve-out in PreToolUse hook).