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-automation-kit

v1.3.0

Published

Comprehensive 4-tier skill kit for fully automated n8n workflow building. 22 skills, 13 domains. Agent-agnostic, portable, shareable.

Readme

n8n Automation Kit 🚀

Comprehensive 4-tier skill kit for fully automated n8n workflow building.

License: MIT npm n8n

Build, deploy, debug, and fix n8n workflows autonomously using AI agents. Supports Antigravity, Claude Code, Gemini CLI, and Cursor.

✨ Features

  • 4-Tier Skill Graph: Orchestrators → Hubs → Utilities → Domain Skills
  • Self-Healing Loop: Auto deploy → test → fix → retry (up to 3x)
  • MCP-First / JS-Fallback: Uses MCP tools when available, REST API fallback when not
  • 5 Domain Skills: Facebook Ads, Inventory, Content Gen, KPI, Google Sheets
  • Context Optimized: MOC navigation reduces token usage by 60-80%
  • Agent-Agnostic: Works with any AI agent that reads .md skill files

📋 Prerequisites

Required

  • n8n instance running (self-hosted or cloud)
  • AI agent: Antigravity, Claude Code, Gemini CLI, or Cursor

Recommended (for full automation)

  • n8n-custom-mcp server — enables 24 MCP tools including execute_workflow, get_execution_data, and the full Self-Healing Loop

⚠️ Without MCP server: Kit still works in JS-Fallback mode (agent writes code to call n8n REST API), but the Self-Healing Loop and execute_workflow are not available.

🔧 Setup

Step 1: Install the Kit

# Option A: npm
npm install n8n-automation-kit

# Option B: Git clone
git clone https://github.com/trngthnh369/n8n-automation-kit.git

Step 2: Copy skills to your project

# Windows (PowerShell)
.\setup\install.ps1 -Agent antigravity

# macOS/Linux
./setup/install.sh --agent antigravity

Supported agents: antigravity, claude-code, gemini-cli, cursor

Step 3: Setup MCP Server (Recommended)

This step enables the full Self-Healing Loop and all 24 MCP tools.

# Windows (PowerShell)
.\setup\setup-mcp.ps1

# macOS/Linux
./setup/setup-mcp.sh

The script will:

  1. Clone and build n8n-custom-mcp
  2. Ask for your n8n URL and API key
  3. Generate the MCP config for your agent

Manual setup: See MCP Setup Guide for details.

🏗️ Architecture

_moc.md (Entry Point)
    │
    ├── Tier 1: Orchestrator (auto-loaded)
    │   └── Routes requests → detects intent → manages pipeline
    │
    ├── Tier 2: Workflow Hubs (on demand)
    │   ├── Architect — design SSOT
    │   ├── Builder — construct JSON
    │   ├── Debugger — execute & fix (Self-Healing Loop)
    │   └── Deployer — deploy & verify
    │
    ├── Tier 3: Utilities (on demand)
    │   ├── n8n-mcp — 24 MCP tools reference
    │   ├── Google Workspace — Sheets/Drive/Gmail
    │   ├── Credential Manager
    │   └── Template Library
    │
    └── Tier 4: Domains (by project type)
        ├── Facebook Ads
        ├── Inventory
        ├── Content Gen
        ├── KPI Automation
        └── Google Sheets

Hybrid Mode (MCP-First / JS-Fallback)

IF MCP tools available → Full automation (Self-Healing Loop)
ELSE → JS-Fallback (deploy-only, no auto-test)

🎯 Usage

Just tell your AI agent what you need:

  • "Build a workflow that scrapes Shopee products and saves to Google Sheets"
  • "Create a Facebook Ads campaign optimizer with daily scheduling"
  • "Debug workflow ID abc123 — it's failing at the HTTP node"

The kit's orchestrator will automatically route to the right skills.

📝 License

MIT License — see LICENSE file.

👤 Author

Turti (Nguyễn Trường Thịnh) — GitHub