Skip to main content

Welcome to n8n-as-code

n8n-as-code is an ecosystem for managing n8n workflows with the same discipline you expect from software projects: local files, Git history, explicit sync operations, and tooling that works well for both humans and AI agents.

TypeScript Workflows (New!)

Transform your workflows into type-safe, readable TypeScript with decorators! Learn more →

🚀 What is n8n-as-code?

n8n-as-code bridges the gap between visual workflow automation and software engineering best practices. It provides:

  • Version Control: Leverage the ability for you to version your workflows with Git
  • TypeScript Support: Transform workflows into type-safe, readable TypeScript (optional)
  • AI Agent Support: Empower AI coding assistants with complete n8n node documentation and schemas
  • Git-like Sync: Explicit list, pull, push, and resolve commands make state changes visible and predictable
  • VS Code Integration: Edit workflows directly in your favorite code editor with status indicators, validation, and canvas preview
  • Smart Conflict Resolution: Deterministic 3-way merge prevents false conflicts with persistent resolution UI

🎯 Key Features

🔄 Git-like Synchronization with 3-Way Merge

Move workflows between your local files and n8n instance using a robust git-like, explicit sync model:

  • Explicit operations: list, fetch, pull, push — you control when to sync
  • 3-way comparison (base vs local vs remote) detects true conflicts
  • Deterministic detection eliminates false positive conflicts
  • Point-in-time status: n8nac list shows current state on demand
  • Fetch before pull: update the remote state cache to see accurate status

🤖 AI Agent Empowerment

Empower your AI coding assistants with Skills (@n8n-as-code/skills) - a toolkit that provides complete documentation, schemas, and context for all 537 n8n nodes. This enables AI assistants to understand the n8n ecosystem and provide intelligent workflow development support.

Key capabilities:

  • Complete node documentation: Structured schemas and documentation for all n8n nodes
  • Context generation: Rich context files for AI assistants to understand your workflow structure
  • Snippet libraries: Pre-built code snippets for common automation scenarios
  • Schema validation: JSON schemas for workflow validation and error prevention

🛡️ Smart Conflict Resolution

Deterministic 3-way merge detection prevents false conflicts. When real conflicts occur:

  • Visual diff shows differences between local and remote versions
  • Persistent UI in VS Code tree view with expandable action buttons
  • Interactive CLI prompts for conflict resolution
  • Automatic backups before destructive operations

📁 Multi-Instance Support

Work with multiple n8n instances simultaneously. Your workflows are automatically organized by instance to avoid mixing files.

🎨 Visual Editing

Edit workflows in a split view: code on one side, n8n canvas on the other. This is for structural validation and review, not for a hidden live-sync experience.

🔧 Command Line Interface

Full-featured CLI for automation, scripting, and CI/CD integration. Manage workflows from your terminal.

🏗️ Architecture Overview

n8n-as-code is built as a monorepo with four main packages:

graph TD
A[CLI - incl. Sync Engine] --> B[Terminal Users]
A --> C[VS Code Extension]
A --> D[Skills]

B --> E[n8n Instance]
C --> F[VS Code Users]
D --> G[AI Assistants]

F --> E
G --> H[AI Context]

Packages

PackagePurposePrimary Users
CLICommand-line interface + embedded sync engine (API client, 3-way merge, state management)Terminal users, automation
VS Code ExtensionIntegrated development environment, uses CLI's sync engineVS Code users
SkillsAI context generation & node schemasAI assistants, developers

🏁 Quick Start

Ready to get started? Here is the shortest path into the V1 workflow:

  1. Install the CLI:

    npm install -g n8nac
  2. Initialize your project:

    n8nac init

    You'll be prompted to select which n8n project to sync.

  3. Check workflow status:

    n8nac list
  4. Pull the workflows you want to work on:

    n8nac pull <workflowId>
  5. Open in VS Code: Install the n8n-as-code extension, inspect the tree, edit locally, then push explicitly when ready.

For detailed instructions, check out our Getting Started guide.

📚 Documentation Structure

This documentation is organized into several sections:

  • Getting Started: Installation, configuration, and first steps
  • Usage: Detailed guides for each package (CLI, VS Code Extension, Skills)
  • Contribution: Architecture, development setup, and contribution guidelines
  • Troubleshooting: Common issues and solutions

🆕 What's New?

  • V1 Positioning: Docs and product messaging now match the current explicit workflow model instead of the older live-sync narrative
  • Rebranding: Renamed CLI to n8nac for a tighter developer-facing surface
  • Major Refactor: Git-like explicit sync architecture for full control and reliable conflict detection
    • Git-like CLI commands: list, fetch, pull, push, resolve — all user-triggered
    • Project-scoped sync: one selected project at a time (init / switch)
    • Persistent conflict resolution UI in VS Code with expandable action buttons
    • Visual status indicators (color-coded icons) in tree view
    • Enhanced synchronization reliability with atomic operations and backups
    • Sync engine embedded in CLI (packages/cli/src/core/) — no separate sync package
  • Version 0.2.0: Multi-instance support, improved conflict resolution, enhanced AI context
  • Version 0.1.0: Initial release with sync synchronization, VS Code extension, and CLI

For detailed release information, check the GitHub repository releases.

🤝 Get Involved

n8n-as-code is an open-source project. We welcome contributions!

📞 Need Help?

  • Documentation: Browse the sections below for detailed guides
  • GitHub: Check existing issues or start a discussion
  • Community: Join the n8n community for broader automation discussions

Last updated: March 2026