npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@n8n-as-code/cli

v0.9.8

Published

CLI for n8n-as-code ecosystem

Readme

@n8n-as-code/cli

The main command-line interface for the n8n-as-code ecosystem. Manage, synchronize, and version-control your n8n workflows as TypeScript files.

This package also embeds the synchronization engine and exposes it as a library for the VS Code extension.

Installation

npm install -g @n8n-as-code/cli

Commands

init

Interactive wizard — configure the connection to an n8n instance and pick the active project.

n8nac init

Creates n8nac.json in the current folder and stores the API key outside the repo.


switch

Switch the active n8n project (updates projectId / projectName in n8nac.json).

n8nac switch

list

Display workflow status in a git-like model. By default shows combined local and remote workflows.

n8nac list                    # Combined view (default)
n8nac list --local            # Show only local workflows
n8nac list --remote           # Show only remote workflows (alias: --distant)

Output columns: Status · ID · Name · Local Path

Status values:

| Status | Meaning | Action | |---|---|---| | TRACKED | Workflow exists on both sides, no local changes detected | Nothing to do | | MODIFIED_LOCALLY | Local file changed since last sync | push --workflowsid | | CONFLICT | Both sides changed — detected at push/pull time | pull --workflowsid (keep remote) or push --workflowsid (keep local) | | EXIST_ONLY_LOCALLY | New local file not yet in n8n (or remote was deleted) | push --workflowsid to create in n8n | | EXIST_ONLY_REMOTELY | Remote workflow not yet local (or local was deleted) | pull --workflowsid to download |

Git-like sync: Status is a point-in-time observation. Use fetch to update remote state cache. For agents: always run n8nac list first to get workflow IDs and their current status before pulling or pushing.


fetch --workflowsid <workflowId>

Update remote state cache for a specific workflow (internal reference for comparison).

n8nac fetch --workflowsid <workflowId>          # Fetch specific workflow's remote state
  • Updates internal comparison cache for the specified workflow only
  • Use before list to ensure status reflects latest remote state for that workflow
  • Required for accurate conflict detection
  • For heavy instances, fetch individual workflows rather than all at once

pull --workflowsid <workflowId>

Download a single workflow from n8n and overwrite the local file.

n8nac pull --workflowsid <workflowId>

Recommended for agents and scripts. Targets exactly one workflow.


push --workflowsid <workflowId>

Upload a single local workflow file to n8n.

n8nac push --workflowsid <workflowId>

resolve --workflowsid <id> --mode <mode>

Explicitly resolve a conflict for a specific workflow.

n8nac resolve --workflowsid <id> --mode keep-current    # Force-push local version
n8nac resolve --workflowsid <id> --mode keep-incoming   # Force-pull remote version

update-ai

Generate or refresh AI context files in the project root. This command will create AGENTS.md and VS Code snippets (when possible).

Note: to run skills-related tooling locally you must have @n8n-as-code/skills available in your environment. Install it into your project or globally, or run via npx:

# Install locally as dev dependency
npm install --save-dev @n8n-as-code/skills

# Or install globally
npm install -g @n8n-as-code/skills

# Or run via npx
npx @n8n-as-code/skills update-ai

The CLI will not create local executable shims in the project root when invoked directly. Shims such as n8nac / n8nac.cmd and n8nac-skills are only generated when update-ai is executed by the VS Code extension (the extension provides its installation path to create safe, versioned shims). This avoids surprising file creation in projects where the skills CLI is installed independently.

n8nac update-ai

convert

Convert a single workflow between JSON and TypeScript formats.

n8nac convert <file>
n8nac convert my-workflow.json --format typescript
n8nac convert my-workflow.workflow.ts --format json

convert-batch

Batch-convert all workflows in a directory.

n8nac convert-batch workflows/ --format typescript

🤖 Agent workflow

The intended flow for an AI agent editing a workflow:

# 1. Fetch current state and get workflow IDs
n8nac list

# 2. Pull the target workflow
n8nac pull --workflowsid <workflowId>

# 3. Edit the local .workflow.ts file

# 4. Push it back
n8nac push --workflowsid <workflowId>

🏗 Part of the Ecosystem

  • @n8n-as-code/skills: AI-integration tools (node search, schemas, context generation).
  • vscode-extension: Visual editing in VS Code (uses this package as its sync library).

📄 License

MIT